/* Training Methodology Section */
.training-methodology {
    padding: 40px 20px;
    background-color: transparent;
    text-align: center;
}

.methodology-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #e74c3c;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.tab-link {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tab-link.active {
    background-color: #c0392b;
}

.tab-link:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    text-align: left;
    color: #333;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-content h3,
.tab-content h4 {
    color: #e74c3c;
    margin-top: 20px;
    font-size: 24px;
}

.tab-content p {
    margin: 10px 0;
    line-height: 1.6;
}

.tab-content ul {
    list-style: disc;
    padding-left: 20px;
}

.tab-content ul li {
    margin: 5px 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.alliances-section {
    padding: 40px 20px;
    background-color: transparent;
}

.alliance-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    color: #e74c3c;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.toggle-button {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.toggle-button.active {
    background-color: #c0392b;
}

.partners-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.alliance-card {
    background-color: #fff;
    border: 1px solid #e74c3c;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alliance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.alliance-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.alliance-card h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.alliance-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.alliance-link {
    font-size: 1rem;
    color: #e74c3c;
    text-decoration: none;
    border: 2px solid #e74c3c;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.alliance-link:hover {
    background-color: #e74c3c;
    color: white;
}

.partner-form {
    max-width: 1300px;
    margin: 0 auto;
    text-align: left;
}

.partner-content {
    display: flex;
    gap: 20px;
}

.partner-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.partner-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.partner-content form {
    width: 50%;
    flex: 1;
}

.partner-form h3 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 1rem;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    resize: none;
}

button[type="submit"] {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #c0392b;
}

button[type="button"] {
    margin-left: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="button"]:hover {
    background-color: #555;
}

/* Scholarships Section */
.scholarships-section {
    padding: 40px 20px;
    background-color: transparent;
}

.scholarship-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
}

.scholarships-content {
    text-align: left;
    color: white;
}

.scholarships-content p {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

.call-to-action {
    background-color: white;
    border: 1px solid #e74c3c;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.call-to-action h3 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.call-to-action p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.call-to-action ul {
    list-style: disc;
    padding-left: 20px;
    color: #666;
}

.call-to-action ul li {
    margin-bottom: 10px;
}

.call-to-action a,
#retail-methodology a,
#corporate-methodology a {
    color: #e74c3c;
    text-decoration: none;
}

.call-to-action a:hover {
    text-decoration: underline;
}

/* Study in Malaysia Section */
.study-malaysia-section {
    padding: 40px 20px;
    background-color: transparent;
}

.study-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.universities-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.universities-list ul li {
    background-color: #e74c3c;
    border: 1px solid white;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 10px;
    font-size: 1.1rem;
    color: white;
    flex: 0 0 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.universities-list ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .tab-link {
        font-size: 14px;
        padding: 8px 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .tab-content p,
    .tab-content ul {
        font-size: 14px;
    }

    .universities-list ul li {
        flex: 0 0 45%;
    }

    .partner-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .universities-list ul li {
        flex: 0 0 100%;
    }

    .section-header {
        flex-direction: column;
    }

    .partner-content {
        flex-direction: column;
        width: 100%;
    }

    .partner-content form {
        width: 100%;
    }

    .partner-image img {
        width: 100%;
    }
}
