:root {
    --primary-color: #1a2d62;
    --secondary-color: #1e3c72;
    --accent-color: #4ecdc4;
    --text-color: #2d3748;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --success: #38b2ac;
    --warning: #f6ad55;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

/* Main Container */
.course-page-container {
    background-color: var(--light-bg);
    max-width: 1200px;
    margin: 3rem auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.course-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3.5rem 2rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.course-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: none;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.course-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.course-subtitle {
    /* max-width: 800px; */
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: justify;
}

/* Content Section */
.course-content-othm {
    padding: 3rem 2rem;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    background-color: rgba(58, 95, 207, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
}

.feature-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Section Styling */
.content-section {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.section-titles {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
}

.section-titles i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.section-titles::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #e2e8f0;
    margin-left: 1rem;
}

/* Module Table */
.module-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.module-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.module-table th:first-child {
    border-top-left-radius: var(--radius-sm);
}

.module-table th:last-child {
    border-top-right-radius: var(--radius-sm);
}

.module-table tr:nth-child(even) {
    background-color: rgba(58, 95, 207, 0.05);
}

.module-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.module-table tr:last-child td {
    border-bottom: none;
}

.module-table tr:hover {
    background-color: rgba(58, 95, 207, 0.1);
}

/* Career Path */
.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.career-card {
    background-color: rgba(58, 95, 207, 0.05);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.career-card h4 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.career-card p {
    margin: 0;
    color: var(--text-color);
}

/* Payment Plans */
.payment-plan-section {
    background: linear-gradient(to right, #f6f9ff, #f0f4ff);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.payment-plan-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 95, 207, 0.1) 0%, rgba(58, 95, 207, 0) 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
}

.payment-plan-section h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.plan-card {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.plan-type {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.price-original {
    text-decoration: line-through;
    color: #a0aec0;
    font-size: 1.25rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

.plan-detail {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 1rem;
}

/* .cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block !important;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(30, 60, 114, 0.4);
    background: linear-gradient(135deg, #4a6ed6, #2b4985);
}

.cta-button i {
    margin-left: 0.5rem;
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
    .course-title {
        font-size: 2.25rem;
    }
    
    .course-content-othm {
        padding: 2rem 1.5rem;
    }
    
    .feature-grid, .career-grid, .plan-cards {
        grid-template-columns: 1fr;
    }
}
.university-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                    gap: 1.25rem;
                    margin-top: 1.5rem;
                }
                
                .university-card {
                    background-color: var(--white);
                    border-radius: var(--radius-sm);
                    box-shadow: var(--shadow-sm);
                    transition: all 0.3s ease;
                    overflow: hidden;
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                    position: relative;
                }
                
                .university-card:hover {
                    transform: translateY(-5px);
                    box-shadow: var(--shadow-md);
                }
                
                .university-flag {
                    height: 5px;
                    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
                }
                
                .university-content {
                    padding: 1.25rem;
                    flex-grow: 1;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }
                
                .university-name {
                    font-weight: 600;
                    color: var(--text-color);
                    margin: 0;
                    font-size: 1rem;
                    text-align: center;
                }
                
                .university-location {
                    margin-top: 0.5rem;
                    color: #718096;
                    font-size: 0.85rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                
                .university-location i {
                    margin-right: 0.25rem;
                    font-size: 0.8rem;
                }
                
                .view-all-universities {
                    text-align: center;
                    margin-top: 2rem;
                }
                
                .view-all-button {
                    display: inline-flex;
                    align-items: center;
                    color: var(--primary-color);
                    font-weight: 600;
                    padding: 0.75rem 1.5rem;
                    border: 2px solid var(--primary-color);
                    border-radius: 50px;
                    transition: all 0.3s ease;
                    text-decoration: none;
                }
                
                .view-all-button:hover {
                    background-color: var(--primary-color);
                    color: var(--white);
                }
                
                .view-all-button i {
                    margin-left: 0.5rem;
                }
                .payment-mode-title {
                    font-size: 1.5rem;
                    font-weight: 700;
                    color: var(--primary-color);
                    margin: 1.5rem 0 1rem;
                    padding-bottom: 0.5rem;
                    border-bottom: 2px solid rgba(58, 95, 207, 0.2);
                }
                
                .payment-option-label {
                    font-size: 1.2rem;
                    font-weight: 600;
                    color: var(--text-color);
                    margin: 1rem 0 0.75rem;
                }
                
                .payment-option-title {
                    display: inline-block;
                    background-color: rgba(58, 95, 207, 0.1);
                    padding: 0.35rem 0.75rem;
                    border-radius: 4px;
                    margin-bottom: 0.75rem;
                    font-weight: 600;
                }

                .modal-overlay {
                    display: none;
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.5);
                    z-index: 1000;
                    justify-content: center;
                    align-items: center;
                }
                
                .modal-container {
                    background-color: white;
                    width: 90%;
                    max-width: 700px;
                    border-radius: 10px;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                    overflow: hidden;
                    animation: modalFadeIn 0.3s ease-out;
                }
                
                @keyframes modalFadeIn {
                    from {
                        opacity: 0;
                        transform: translateY(-20px);
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
                
                .modal-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 1.25rem 1.5rem !important;
                    background: linear-gradient(135deg, var(--primary-color, #3a5fcf), var(--secondary-color, #1e3c72));
                    color: white;
                }
                
                .modal-header h2 {
                    margin: 0;
                    font-size: 1.5rem;
                    font-weight: 600;
                }
                
                .modal-close {
                    background: none;
                    border: none;
                    color: white;
                    font-size: 1.75rem;
                    cursor: pointer;
                    line-height: 1;
                    padding: 0;
                    margin: 0;
                }
                
                .modal-body {
                    padding: 1.5rem !important;
                }
                
                /* Form Styles */
                .form-group {
                    margin-bottom: 1.25rem;
                }
                
                .form-group label {
                    display: block;
                    margin-bottom: 0.5rem;
                    font-weight: 500;
                    color: #2d3748;
                }
                
                .form-control {
                    width: 100%;
                    padding: 0.75rem;
                    border: 1px solid #e2e8f0;
                    border-radius: 0.375rem;
                    font-size: 1rem;
                    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
                }
                
                .form-control:focus {
                    border-color: var(--primary-color, #3a5fcf);
                    outline: none;
                    box-shadow: 0 0 0 3px rgba(58, 95, 207, 0.1);
                }
                
                textarea.form-control {
                    resize: vertical;
                }
                
                .checkbox-group {
                    display: flex;
                    align-items: center;
                }
                
                .checkbox-group input {
                    margin-right: 0.5rem;
                }
                
                .checkbox-group label {
                    margin-bottom: 0;
                }
                
                .submit-button {
                    background: linear-gradient(135deg, var(--primary-color, #3a5fcf), var(--secondary-color, #1e3c72));
                    color: white;
                    padding: 0.75rem 1.5rem;
                    border: none;
                    border-radius: 50px;
                    font-size: 1rem;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    display: block;
                    width: 100%;
                }
                
                .submit-button:hover {
                    background: linear-gradient(135deg, #4a6ed6, #2b4985);
                    transform: translateY(-2px);
                    box-shadow: 0 4px 10px rgba(30, 60, 114, 0.2);
                }
                
                .error-message {
                    color: #e53e3e;
                    font-size: 0.875rem;
                    margin-top: 0.25rem;
                }
                
                .success-message {
                    background-color: #ebf7f1;
                    color: #276749;
                    padding: 1rem;
                    border-radius: 0.375rem;
                    margin-bottom: 1.5rem;
                    display: flex;
                    align-items: center;
                }
                
                .success-message i {
                    margin-right: 0.5rem;
                    font-size: 1.25rem;
                }
                
                /* Mobile Responsiveness */
                @media (max-width: 640px) {
                    .modal-container {
                        width: 95%;
                    }
                    
                    .modal-header {
                        padding: 1rem;
                    }
                    
                    .modal-body {
                        padding: 1.25rem;
                    }
                }
             
                .othm-tabs-container {
                    margin-bottom: 30px;
                  }
                
                  .othm-tabs {
                    display: flex;
                    justify-content: center;
                    /* border-bottom: 1px solid #e0e0e0; */
                    margin-bottom: 40px;
                    flex-wrap: wrap;
                  }
                
                  .othm-tab {
                    padding: 12px 25px;
                    font-size: 16px;
                    font-weight: 600;
                    color: #666;
                    cursor: pointer;
                    position: relative;
                    transition: all 0.3s ease;
                    margin: 0 5px;
                    border-bottom: 3px solid transparent;
                  }
                
                  .othm-tab.active {
                    color: #3367d6;
                    border-bottom: 3px solid #3367d6;
                  }
                
                  .othm-tab:hover {
                    color: #3367d6;
                  }
                
                  .othm-tab-content {
                    display: none;
                  }
                
                  .othm-tab-content.active {
                    display: block;
                  }
                
                  .othm-category-title {
                    text-align: center;
                    margin-bottom: 30px;
                    position: relative;
                  }
                
                  .othm-category-title h2 {
                    display: inline-block;
                    background-color: #3367d6;
                    color: white;
                    font-size: 18px;
                    font-weight: 600;
                    padding: 10px 30px;
                    border-radius: 30px;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    box-shadow: 0 4px 10px rgba(51, 103, 214, 0.2);
                  }
                
                  .othm-course-grid {
                    display: flex;
                    flex-wrap: wrap;
                    margin: 0 -15px;
                    justify-content: center;
                  }
                
                  .othm-grid-item {
                    width: 100%;
                    padding: 0 15px;
                    margin-bottom: 30px;
                  }
                
                  .othm-course-card {
                    background-color: white;
                    border-radius: 12px;
                    overflow: hidden;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                    height: 100%;
                  }
                
                  .othm-course-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
                  }
                
                  .othm-course-image {
                    position: relative;
                    overflow: hidden;
                    height: 220px;
                  }
                
                  .othm-course-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                  }
                
                  .othm-course-card:hover .othm-course-image img {
                    transform: scale(1.05);
                  }
                
                  .othm-course-content {
                    padding: 25px 20px;
                  }
                
                  .othm-course-category {
                    display: inline-block;
                    background-color: #3367d6;
                    color: white;
                    font-size: 13px;
                    font-weight: 600;
                    padding: 6px 16px;
                    border-radius: 30px;
                    margin-bottom: 15px;
                    text-decoration: none;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    transition: background-color 0.3s ease;
                  }
                
                  .othm-course-category:hover {
                    background-color: #254aa8;
                  }
                
                  .othm-course-title {
                    font-size: 18px;
                    font-weight: 700;
                    line-height: 1.4;
                    color: #333;
                    margin-bottom: 15px;
                  }
                
                  .othm-course-title a {
                    /* color: inherit; */
                    text-decoration: none;
                    transition: color 0.2s ease;
                  }
                
                  .othm-course-title a:hover {
                    color: #00BFA5;
                  }
                
                  .othm-course-details {
                    display: flex;
                    align-items: center;
                    color: #757575;
                    font-size: 14px;
                    margin-top: 20px;
                  }
                
                  .othm-course-details i {
                    margin-right: 8px;
                    color: #00BFA5;
                  }
                
                  /* Adding animation */
                  @keyframes othmFadeIn {
                    from {
                      opacity: 0;
                      transform: translateY(20px);
                    }
                
                    to {
                      opacity: 1;
                      transform: translateY(0);
                    }
                  }
                
                  .othm-animate-fade {
                    animation: othmFadeIn 0.6s ease forwards;
                  }
                
                  /* Responsive adjustments */
                  /* @media (max-width: 768px) {
                    .othm-grid-item {
                      width: 50%;
                    }
                  }
                
                  @media (max-width: 992px) {
                    .othm-grid-item {
                      width: 33.333%;
                    }
                  } */
                
                  @media (min-width: 1200px) {
                    .othm-grid-item {
                      width: 25%;
                    }
                  }
                