/*  syllabus section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: black;
    line-height: 1.6;
}

.syllabus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.syllabus-header {
    text-align: center;
    margin-bottom: 40px;
}

.syllabus-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
}

.syllabus-subtitle {
    font-size: 1.1rem;
    color: gray;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.syllabus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.syllabus-item {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.syllabus-item.active {
    border-color: #FF0000;
    box-shadow: 0 4px 15px rgba(255,0,0,0.2);
    grid-column: 1 / -1;
}

.syllabus-header-item {
    padding: 20px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.syllabus-item.active .syllabus-header-item {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}

.syllabus-header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.syllabus-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF0000;
    margin-right: 15px;
}

.syllabus-item.active .syllabus-number {
    color: white;
}

.syllabus-icon {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syllabus-title-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.syllabus-dropdown-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.syllabus-item.active .syllabus-dropdown-icon {
    transform: rotate(180deg);
}

.syllabus-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f9f9f9;
}

.syllabus-content.active {
    max-height: 1000px;
    padding: 25px;
}

.topics-title {
    font-weight: bold;
    color: #FF0000;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.topics-list {
    list-style: none;
}

.topics-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #333;
    border-bottom: 1px solid #eee;
}

.topics-list li:last-child {
    border-bottom: none;
}

.topics-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF0000;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .syllabus-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .syllabus-item.active {
        grid-column: 1;
    }

    .syllabus-title {
        font-size: 2rem;
    }

    .syllabus-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .syllabus-header-item {
        padding: 15px;
    }

    .syllabus-title-text {
        font-size: 1rem;
    }

    .syllabus-number {
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .syllabus-content.active {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .syllabus-container {
        padding: 15px;
    }

    .syllabus-title {
        font-size: 1.8rem;
    }

    .syllabus-header-item {
        padding: 12px;
    }

    .syllabus-title-text {
        font-size: 0.9rem;
    }

    .syllabus-content.active {
        padding: 15px;
    }
}

/* end syllabus section */
/* Benefits & Enroll Section */
.Benefits_Enroll * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.Benefits_Enroll {
    background: white;
    color: black;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
}

.Benefits_Enroll_container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 40px;
    align-items: center;
}

.Benefits_Enroll_left {
    text-align: left;
}

.Benefits_Enroll_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Benefits_Enroll_right {
    text-align: left;
}

.Benefits_Enroll_main_title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #000000ff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.Benefits_Enroll_section_title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FF0000;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #FF0000;
    padding-bottom: 10px;
}

.Benefits_Enroll_item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(128, 128, 128, 0.05);
    border-radius: 10px;
    border-left: 4px solid #FF0000;
    transition: all 0.3s ease;
    border: 1px solid rgba(128, 128, 128, 0.2);
}

.Benefits_Enroll_item:hover {
    background: rgba(128, 128, 128, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
}

.Benefits_Enroll_item_title {
    font-size: 1.1rem;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.Benefits_Enroll_item_desc {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
}

.Benefits_Enroll_center_image {
    position: relative;
    width: 280px;
    height: 320px;
    background-image: url('../images/congu.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 3px solid #FF0000;
    padding-bottom: 30px;
}

.Benefits_Enroll_center_image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.Benefits_Enroll_congrats {
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
    font-style: italic;
}

.Benefits_Enroll_subtitle {
    font-size: 1rem;
    color: white;
    text-align: center;
    z-index: 2;
    position: relative;
    font-weight: 500;
}

.Benefits_Enroll_icon {
    font-size: 1.3rem;
    color: #FF0000;
    min-width: 20px;
    text-align: center;
}

@keyframes Benefits_Enroll_glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes Benefits_Enroll_fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Benefits_Enroll_item {
    animation: Benefits_Enroll_fadeIn 0.6s ease-out forwards;
}

.Benefits_Enroll_item:nth-child(1) { animation-delay: 0.1s; }
.Benefits_Enroll_item:nth-child(2) { animation-delay: 0.2s; }
.Benefits_Enroll_item:nth-child(3) { animation-delay: 0.3s; }
.Benefits_Enroll_item:nth-child(4) { animation-delay: 0.4s; }
.Benefits_Enroll_item:nth-child(5) { animation-delay: 0.5s; }
.Benefits_Enroll_item:nth-child(6) { animation-delay: 0.6s; }
.Benefits_Enroll_item:nth-child(7) { animation-delay: 0.7s; }
.Benefits_Enroll_item:nth-child(8) { animation-delay: 0.8s; }

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .Benefits_Enroll_container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .Benefits_Enroll_main_title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .Benefits_Enroll_center_image {
        width: 250px;
        height: 280px;
        margin: 0 auto;
    }

    .Benefits_Enroll_congrats {
        font-size: 1.8rem;
    }

    .Benefits_Enroll_section_title {
        font-size: 1.2rem;
        text-align: center;
    }

    .Benefits_Enroll_left,
    .Benefits_Enroll_right {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .Benefits_Enroll {
        padding: 40px 15px;
    }

    .Benefits_Enroll_main_title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .Benefits_Enroll_center_image {
        width: 220px;
        height: 250px;
    }

    .Benefits_Enroll_congrats {
        font-size: 1.6rem;
    }

    .Benefits_Enroll_item {
        padding: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .Benefits_Enroll_main_title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .Benefits_Enroll_center_image {
        width: 200px;
        height: 230px;
    }

    .Benefits_Enroll_congrats {
        font-size: 1.4rem;
    }

    .Benefits_Enroll_item_title {
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .Benefits_Enroll_item_desc {
        font-size: 0.9rem;
        text-align: center;
    }

    .Benefits_Enroll_icon {
        font-size: 1.5rem;
    }
}

@media (min-width: 1400px) {
    .Benefits_Enroll_container {
        max-width: 1400px;
        grid-template-columns: 1fr 350px 1fr;
    }

    .Benefits_Enroll_center_image {
        width: 320px;
        height: 360px;
    }

    .Benefits_Enroll_main_title {
        font-size: 3rem;
    }
}
/* end Benefits & Enroll Section */

/* Affordable Courses Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.DM_Affordable_container {
    background: black;
    padding: 80px 20px;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
}

.DM_Affordable_wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.DM_Affordable_header {
    text-align: center;
    margin-bottom: 60px;
}

.DM_Affordable_title {
    font-size: 2.8rem;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.DM_Affordable_subtitle {
    font-size: 1.1rem;
    color: gray;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.DM_Affordable_highlight {
    color: #FF0000;
    font-weight: bold;
}

.DM_Affordable_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.DM_Affordable_card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid gray;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.DM_Affordable_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
}

.DM_Affordable_info_card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: black;
    color: white;
}

.DM_Affordable_course_image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 30px;
    object-fit: cover;
    border: 4px solid #FF0000;
}

.DM_Affordable_card_title {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 15px;
    font-weight: 600;
}

.DM_Affordable_info_card .DM_Affordable_card_title {
    color: white;
}

.DM_Affordable_card_subtitle {
    font-size: 1rem;
    color: gray;
    margin-bottom: 30px;
    line-height: 1.5;
}

.DM_Affordable_info_card .DM_Affordable_card_subtitle {
    color: gray;
}

.DM_Affordable_features_list {
    list-style: none;
    margin-bottom: 30px;
}

.DM_Affordable_feature_item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: black;
    font-size: 0.95rem;
}

.DM_Affordable_check_icon {
    width: 20px;
    height: 20px;
    background: #FF0000;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
}

.DM_Affordable_btn {
    background: #FF0000;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.DM_Affordable_btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.DM_Affordable_btn_secondary {
    background: transparent;
    border: 2px solid #FF0000;
    color: #FF0000;
}

.DM_Affordable_btn_secondary:hover {
    background: #FF0000;
    color: white;
}

.DM_Affordable_course_type {
    background: #FF0000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .DM_Affordable_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .DM_Affordable_title {
        font-size: 2.2rem;
    }
    
    .DM_Affordable_card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .DM_Affordable_container {
        padding: 60px 15px;
    }
    
    .DM_Affordable_title {
        font-size: 1.8rem;
    }
    
    .DM_Affordable_subtitle {
        font-size: 1rem;
    }
    
    .DM_Affordable_course_image {
        width: 150px;
        height: 150px;
    }
    
    .DM_Affordable_card_title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .DM_Affordable_title {
        font-size: 1.5rem;
    }
    
    .DM_Affordable_subtitle {
        font-size: 0.9rem;
    }
    
    .DM_Affordable_card {
        padding: 25px 20px;
    }
    
    .DM_Affordable_course_image {
        width: 120px;
        height: 120px;
    }
    
    .DM_Affordable_card_title {
        font-size: 1.3rem;
    }
}

/* Animation Effects */
.DM_Affordable_card {
    animation: DM_Affordable_fadeInUp 0.8s ease forwards;
}

.DM_Affordable_card:nth-child(1) {
    animation-delay: 0.1s;
}

.DM_Affordable_card:nth-child(2) {
    animation-delay: 0.2s;
}

.DM_Affordable_card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes DM_Affordable_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.DM_Affordable_feature_item {
    animation: DM_Affordable_slideIn 0.5s ease forwards;
    opacity: 0;
}

.DM_Affordable_feature_item:nth-child(1) { animation-delay: 0.5s; }
.DM_Affordable_feature_item:nth-child(2) { animation-delay: 0.6s; }
.DM_Affordable_feature_item:nth-child(3) { animation-delay: 0.7s; }
.DM_Affordable_feature_item:nth-child(4) { animation-delay: 0.8s; }
.DM_Affordable_feature_item:nth-child(5) { animation-delay: 0.9s; }
.DM_Affordable_feature_item:nth-child(6) { animation-delay: 1.0s; }

@keyframes DM_Affordable_slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Icons */
.DM_Affordable_icon {
    margin-right: 8px;
    font-size: 14px;
}

.DM_Affordable_phone_icon::before {
    content: "📞";
    margin-right: 8px;
}

.DM_Affordable_play_icon::before {
    content: "▶";
    margin-right: 8px;
}
/* end Affordable Courses Section */

/* Certification Section */
.certification-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Arial', sans-serif;
}

.certification-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.certification-content {
    padding: 20px;
}

.certification-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF0000, #ff3333);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.certification-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.certification-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.certification-highlight {
    color: #FF0000;
    font-weight: 700;
}

.certification-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.certification-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.certificate-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    max-width: 680px;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.certificate-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-image {
    transform: scale(1.05);
}

.certificate-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}

.certification-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.feature-badge {
    background: linear-gradient(135deg, #FF0000, #ff3333);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-badge svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .certification-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .certification-title {
        font-size: 2rem;
    }
    
    .certification-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .certificate-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .certification-section {
        padding: 60px 15px;
    }
    
    .certification-title {
        font-size: 1.8rem;
    }
    
    .certification-description {
        font-size: 1rem;
    }
    
    .certification-images {
        flex-direction: column;
        gap: 25px;
    }
    
    .certificate-card {
        max-width: 100%;
    }
    
    .certification-container {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .certification-title {
        font-size: 1.6rem;
    }
    
    .certification-description {
        font-size: 0.95rem;
    }
    
    .certification-icon {
        width: 50px;
        height: 50px;
    }
    
    .certification-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Animation for certificates */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certificate-card {
    animation: fadeInUp 0.6s ease forwards;
}

.certificate-card:nth-child(2) {
    animation-delay: 0.2s;
}
/* end Certification Section */
    
/* Assignments Section */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffffff;
} */

.Assignments-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.Assignments-section {
    /* background: white; */
    /* border-radius: 10px; */
    padding: 40px;
    margin: 20px 0;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
}
.localities_scroll_container {
            max-height: 200px;
            overflow-y: auto;
            overflow-x: hidden;
        }

.Assignments-main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.Assignments-content-left h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.Assignments-content-left h1 span {
    color: #FF0000;
}

.Assignments-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.Assignments-item {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background: white;
}

.Assignments-item:hover {
    border-color: #FF0000;
    box-shadow: 0 3px 10px rgba(255,0,0,0.1);
}

.Assignments-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 6px 6px 0 0;
}

.Assignments-header:hover {
    background: #e9ecef;
}

.Assignments-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.Assignments-icon {
    color: #FF0000;
    font-size: 1.3rem;
}

.Assignments-toggle-icon {
    color: #666;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.Assignments-content {
    display: none;
    padding: 25px;
    border-top: 1px solid #e9ecef;
    background: white;
}

.Assignments-content.active {
    display: block;
}

.Assignments-item.active .Assignments-toggle-icon {
    transform: rotate(180deg);
}

.Assignments-duration {
    background: #FF0000;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.Assignments-promises-section h4 {
    color: #333;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.Assignments-promises-list {
    list-style: none;
    margin-bottom: 20px;
}

.Assignments-promises-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.Assignments-promises-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF0000;
    font-weight: bold;
}

.Assignments-tools-section h4 {
    color: #333;
    margin: 20px 0 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.Assignments-tools-list {
    list-style: none;
}

.Assignments-tools-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.Assignments-tools-list li:before {
    content: "🔧";
    position: absolute;
    left: 0;
}

.Assignments-special-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 12px;
    margin-top: 15px;
    font-style: italic;
    color: #856404;
}

.Assignments-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 5px 0;
    width: 100%;
    text-align: center;
    font-size: 1rem;
}

.Assignments-btn-primary {
    background: white;
    color: #FF0000;
}

.Assignments-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.Assignments-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.Assignments-btn-secondary:hover {
    background: white;
    color: #FF0000;
    transform: translateY(-2px);
}

.Assignments-btn i {
    margin-right: 8px;
}

/* New Enhanced Sidebar Styles */
.Assignments_sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.Assignments_sidebar_header {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    padding: 25px 20px;
    text-align: center;
    color: white;
}

.Assignments_sidebar_header h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.Assignments_sidebar_header p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: 20px;
}

.Assignments_btn {
    display: block;
    width: 100%;
    padding: 12px 0px;
    margin-bottom: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.Assignments_btn i {
    margin-right: 8px;
}

.Assignments_btn_primary {
    background: #ffffff;
    color: #FF0000;
}

.Assignments_btn_primary:hover {
    background: #f2f2f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.Assignments_btn_secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.Assignments_btn_secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.Assignments_sidebar_content {
    padding: 0;
}

.Assignments_course_section {
    border-bottom: 1px solid #eee;
}

.Assignments_course_item {
    display: block;
    position: relative;
    height: 60px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.Assignments_course_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.Assignments_course_item:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.Assignments_course_item_content {
    position: relative;
    z-index: 2;
    padding: 15px 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.Assignments_course_title {
    font-size: 14px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    /* margin: 0px 20px 22px 0px; */
}

/* Background images for each course */
.Assignments_course_item:nth-child(1) {
    background-image: url('../images/map.jpg');
}

.Assignments_course_item:nth-child(2) {
    background-image: url('../images/map.jpg');
}

.Assignments_course_item:nth-child(3) {
    background-image: url('../images/map.jpg');
}

.Assignments_course_item:nth-child(4) {
    background-image: url('../images/map.jpg');
}

.Assignments_course_item:nth-child(5) {
    background-image: url('../images/map.jpg');
}

.Assignments_course_item:nth-child(6) {
    background-image: url('../images/map.jpg');
}

.Assignments_course_item:nth-child(7) {
    background-image: url('../images/map.jpg');
}

.Assignments_course_item:nth-child(8) {
    background-image: url('../images/map.jpg');
}

.Assignments_localities_section {
    padding: 20px;
    background: #f8f9fa;
}

.Assignments_localities_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.Assignments_localities_title i {
    margin-right: 8px;
    color: #FF0000;
}

.Assignments_locality_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.Assignments_locality_item:last-child {
    border-bottom: none;
}

.Assignments_locality_item:hover {
    color: #FF0000;
}

.Assignments_locality_name {
    font-size: 14px;
    font-weight: 500;
}

.Assignments_locality_arrow {
    font-size: 12px;
    color: #999;
}

.Assignments_course_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .Assignments-container {
        padding: 15px;
    }

    .Assignments-section {
        padding: 25px;
    }

    .Assignments-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .Assignments-content-left h1 {
        font-size: 2rem;
    }

    .Assignments-header {
        padding: 15px;
    }

    .Assignments-title {
        font-size: 1rem;
    }

    .Assignments-content {
        padding: 20px;
    }

    .Assignments_sidebar {
        position: static;
        order: -1;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .Assignments-content-left h1 {
        font-size: 1.7rem;
    }

    .Assignments-title {
        font-size: 0.95rem;
    }

    .Assignments-header {
        padding: 12px;
    }

    .Assignments-content {
        padding: 15px;
    }
}
/* end Assignments Section */

/* Internships Section */
.internships * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.internships {
    background-color: #f8f9fa;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
}

.internships-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.internships-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.internships-header h1 .highlight {
    color: #FF0000;
}

.internships-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    /* max-width: 800px; */
    margin: 0 auto 60px auto;
}

.internships-slider {
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
}

.internships-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.internships-card {
    min-width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 20px 0;
}

.internships-card-content {
    flex: 1;
    text-align: left;
}

.internships-card-number {
    background: #FF0000;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.internships-card-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.internships-card-details {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.internships-card-details strong {
    color: #333;
    font-weight: 600;
}

.internships-card-image {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.internships-company-logo {
    width: 200px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
}

.internships-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.internships-slider-btn {
    background: #FF0000;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.internships-slider-btn:hover {
    background: #cc0000;
    transform: scale(1.1);
}

.internships-slider-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
}

.internships-slider-indicators {
    display: flex;
    gap: 10px;
}

.internships-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.internships-indicator.active {
    background: #FF0000;
    transform: scale(1.2);
}

.internships-download-btn {
    background: #FF0000;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.internships-download-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Icons */
.internships-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    /* background: #FF0000; */
    color: #FF0000;
    border-radius: 4px;
    font-size: 12px;
    flex-shrink: 0;
    vertical-align: middle;
    line-height: 1;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .internships {
        padding: 50px 15px;
    }

    .internships-header h1 {
        font-size: 2rem;
    }

    .internships-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .internships-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
        align-items: center;
    }

    .internships-card-content {
        text-align: center;
        width: 100%;
    }

    .internships-card-details {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .internships-card-details p {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .internships-card-image {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .internships-company-logo {
        width: 180px;
        height: 100px;
    }

    .internships-card-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .internships-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .internships-download-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .internships {
        padding: 40px 10px;
    }

    .internships-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .internships-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .internships-card {
        padding: 25px 15px;
        margin: 15px 0;
    }

    .internships-card-content {
        width: 100%;
    }

    .internships-card-details {
        max-width: 280px;
    }

    .internships-card-details p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .internships-card-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .internships-card-image {
        width: 100%;
    }

    .internships-company-logo {
        width: 150px;
        height: 85px;
    }

    .internships-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .internships-slider-controls {
        margin-top: 25px;
    }

    .internships-download-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        margin-top: 10px;
    }
}
/* end Internships Section */

/* Job Certification Section */
.Job_Certification {
    background: white;
    padding: 60px 20px;
    color: black;
    font-family: 'Arial', sans-serif;
}

.Job_Certification_container {
    max-width: 1200px;
    margin: 0 auto;
}

.Job_Certification_header {
    text-align: left;
    margin-bottom: 50px;
}

.Job_Certification_title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: black;
}

.Job_Certification_description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
}

.Job_Certification_description strong {
    color: #FF0000;
    font-weight: bold;
}

.Job_Certification_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.Job_Certification_card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.Job_Certification_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.15);
    border-color: #FF0000;
}

.Job_Certification_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.Job_Certification_card:hover .Job_Certification_icon {
    /* background: #FF0000; */
}

.Job_Certification_icon img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.Job_Certification_card:hover .Job_Certification_icon img {
    /* filter: brightness(0) invert(1); */
}

.Job_Certification_card_title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.Job_Certification_card:hover .Job_Certification_card_title {
    color: #FF0000;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .Job_Certification {
        padding: 40px 15px;
    }

    .Job_Certification_title {
        font-size: 2.2rem;
        text-align: center;
    }

    .Job_Certification_header {
        text-align: center;
        margin-bottom: 40px;
    }

    .Job_Certification_description {
        font-size: 1rem;
        max-width: 100%;
    }

    .Job_Certification_grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .Job_Certification_card {
        padding: 25px 15px;
    }

    .Job_Certification_icon {
        width: 70px;
        height: 70px;
    }

    .Job_Certification_icon img {
        max-width: 50px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .Job_Certification_title {
        font-size: 1.8rem;
    }

    .Job_Certification_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .Job_Certification_card {
        padding: 20px 10px;
    }

    .Job_Certification_card_title {
        font-size: 1rem;
    }
}
/* end Job Certification Section */

/* Batch Details Section */
.Batch_Details {
    background: white;
    padding: 60px 20px;
    color: black;
    font-family: 'Arial', sans-serif;
    border-radius: 20px;
    margin: 20px;
}

.Batch_Details_container {
    max-width: 1200px;
    margin: 0 auto;
}

.Batch_Details_header {
    text-align: center;
    margin-bottom: 50px;
}

.Batch_Details_title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
}

.Batch_Details_description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    /* max-width: 800px; */
    margin: 0 auto;
}

.Batch_Details_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.Batch_Details_column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.Batch_Details_card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.Batch_Details_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
}

.Batch_Details_card_left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.Batch_Details_weekday {
    background: #f8f9fa;
    color: black;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

.Batch_Details_time_container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.Batch_Details_clock_icon {
    width: 16px;
    height: 16px;
    color: #666;
}

.Batch_Details_time {
    color: #666;
    font-size: 0.95rem;
}

.Batch_Details_enroll_btn {
    background: #FF0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.Batch_Details_enroll_btn:hover {
    background: #cc0000;
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .Batch_Details {
        margin: 10px;
        padding: 40px 15px;
        border-radius: 15px;
    }

    .Batch_Details_title {
        font-size: 2rem;
    }

    .Batch_Details_description {
        font-size: 1rem;
    }

    .Batch_Details_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .Batch_Details_card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .Batch_Details_card_left {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .Batch_Details_enroll_btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .Batch_Details_title {
        font-size: 1.8rem;
    }

    .Batch_Details_card {
        padding: 15px;
    }

    .Batch_Details_weekday {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .Batch_Details_time {
        font-size: 0.9rem;
    }

    .Batch_Details_enroll_btn {
        font-size: 0.9rem;
    }
}

/* Clock Icon SVG */
.Batch_Details_clock_icon svg {
    width: 16px;
    height: 16px;
    fill: #666;
}
/* end Batch Details Section */

/* Digital Marketing Tools Section */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
} */

.DM_Tools_container {
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    padding: 60px 20px;
    /* background-color: #f8f9fa; */
    background-image: url('../images/bg.jpg');

}

.DM_Tools_header {
    text-align: center;
    margin-bottom: 50px;
}

.DM_Tools_title {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    line-height: 1.2;
}

.DM_Tools_description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

.DM_Tools_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 5px;
    margin-top: 40px;
}

.DM_Tools_card {
    /* background: white; */
    /* border-radius: 12px; */
    padding: 10px, 10px, 10px, 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    /* border: 2px solid #e9ecef; */
}

.DM_Tools_card:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
}

.DM_Tools_logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.DM_Tools_card:hover .DM_Tools_logo {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .DM_Tools_container {
        padding: 40px 15px;
    }

    .DM_Tools_title {
        font-size: 2rem;
    }

    .DM_Tools_description {
        font-size: 1rem;
    }

    .DM_Tools_grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .DM_Tools_card {
        padding: 20px;
        min-height: 100px;
    }

    .DM_Tools_logo {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .DM_Tools_title {
        font-size: 1.8rem;
    }

    .DM_Tools_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .DM_Tools_card {
        padding: 15px;
        min-height: 90px;
    }

    .DM_Tools_logo {
        max-height: 45px;
    }
}

/* Loading animation */
.DM_Tools_card {
    animation: DM_Tools_fadeInUp 0.6s ease forwards;
}

.DM_Tools_card:nth-child(1) { animation-delay: 0.1s; }
.DM_Tools_card:nth-child(2) { animation-delay: 0.2s; }
.DM_Tools_card:nth-child(3) { animation-delay: 0.3s; }
.DM_Tools_card:nth-child(4) { animation-delay: 0.4s; }
.DM_Tools_card:nth-child(5) { animation-delay: 0.5s; }
.DM_Tools_card:nth-child(6) { animation-delay: 0.6s; }
.DM_Tools_card:nth-child(7) { animation-delay: 0.7s; }
.DM_Tools_card:nth-child(8) { animation-delay: 0.8s; }
.DM_Tools_card:nth-child(9) { animation-delay: 0.9s; }
.DM_Tools_card:nth-child(10) { animation-delay: 1.0s; }
.DM_Tools_card:nth-child(11) { animation-delay: 1.1s; }
.DM_Tools_card:nth-child(12) { animation-delay: 1.2s; }
.DM_Tools_card:nth-child(13) { animation-delay: 1.3s; }
.DM_Tools_card:nth-child(14) { animation-delay: 1.4s; }
.DM_Tools_card:nth-child(15) { animation-delay: 1.5s; }
.DM_Tools_card:nth-child(16) { animation-delay: 1.6s; }
.DM_Tools_card:nth-child(17) { animation-delay: 1.7s; }
.DM_Tools_card:nth-child(18) { animation-delay: 1.8s; }
.DM_Tools_card:nth-child(19) { animation-delay: 1.9s; }
.DM_Tools_card:nth-child(20) { animation-delay: 2.0s; }
.DM_Tools_card:nth-child(21) { animation-delay: 2.1s; }
.DM_Tools_card:nth-child(22) { animation-delay: 2.2s; }
.DM_Tools_card:nth-child(23) { animation-delay: 2.3s; }
.DM_Tools_card:nth-child(24) { animation-delay: 2.4s; }

@keyframes DM_Tools_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* end Digital Marketing Tools Section */

/* Digital Marketing FAQ Section */
.DMFAQ-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
    font-family: 'Arial', sans-serif;
}

.DMFAQ-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.DMFAQ-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.DMFAQ-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.DMFAQ-left {
    padding-right: 20px;
}

.DMFAQ-right {
    /* padding: 20px; */
    text-align: center;
}

.DMFAQ-right-content {
    /* No special styling needed */
}

.DMFAQ-profile-image {
    width: 420px;
    /* height: 320px; */
    /* border-radius: 50%; */
    margin-left: 30px;
    position: relative;
    /* border: 4px solid white; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.2); */
    overflow: hidden;
}

.DMFAQ-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40%;
}

.DMFAQ-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #FF0000;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid white;
}

.DMFAQ-stats {
    margin-bottom: 20px;
}

.DMFAQ-stat {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #666;
}

.DMFAQ-right h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: black;
}

.DMFAQ-right p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.5;
}

.DMFAQ-btn {
    background: #FF0000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.DMFAQ-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.4);
}

.DMFAQ-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.DMFAQ-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.DMFAQ-question {
    background: white;
    border: none;
    width: 100%;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.DMFAQ-question:hover {
    background: #f8f8f8;
}

.DMFAQ-question.active {
    background: #f8f8f8;
    color: #FF0000;
}

.DMFAQ-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #FF0000;
}

.DMFAQ-question.active .DMFAQ-icon {
    transform: rotate(180deg);
}

.DMFAQ-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.DMFAQ-answer.active {
    max-height: 200px;
}

.DMFAQ-answer-content {
    padding: 20px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .DMFAQ-container {
        padding: 40px 15px;
    }

    .DMFAQ-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .DMFAQ-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .DMFAQ-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .DMFAQ-left {
        padding-right: 0;
        order: 2;
    }

    .DMFAQ-right {
        order: 1;
        padding: 20px;
    }

    .DMFAQ-profile-image {
        width: 100px;
        height: 100px;
    }

    .DMFAQ-profile-image i {
        font-size: 2.5rem;
    }

    .DMFAQ-right h3 {
        font-size: 1.5rem;
    }

    .DMFAQ-question {
        padding: 15px;
        font-size: 1rem;
    }

    .DMFAQ-answer-content {
        padding: 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .DMFAQ-title {
        font-size: 1.8rem;
    }

    .DMFAQ-subtitle {
        font-size: 0.95rem;
    }

    .DMFAQ-right {
        padding: 25px 15px;
    }

    .DMFAQ-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/* end Digital Marketing FAQ Section */

