* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f8f8f8;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.logo {
    height: 60px;
    width: auto;
    margin-left: 30px;
}

.logo-right {
    height: 60px;
    width: auto;
    margin-right: 20px;
}

.hero {
    position: relative;
    background-image: url('https://newinti.edu.my/wp-content/uploads/2018/01/mbals.jpg'); /* Add your hero background image */
    background-size: cover;
    background-position: center;
    height: 500px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark transparent overlay */
}

.hero-content {
    position: relative;
    top: 250px;
    /* bottom: 60px; */
    left: 87px;
    color: white;
}

.hero-content h1 {
    font-size: 2.3em;
    margin-bottom: 0;
    font-weight: 500;
}

.admin-title h2 {
    font-size: 2.3em;
    margin: 0;
    font-weight: 500;
}

.red-line {
    width: 70px;
    height: 4px;
    background-color: #ff0000; 
    margin-top: 5px;
}

.hero-content p {
    font-size: 1em;
    margin-top: 15px;
    width: 80%;
}

.button-container {
    display: flex;
    justify-content: flex-end; /* Aligns the button to the right */
    margin-top: -190px; /* Adds some space above the button */
    margin-right: 200px;
}

.apply-button {
    background-color: #ff0000; /* Change to desired color */
    color: #ffffff; /* Text color */
    padding: 10px 20px; /* Padding around the button */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.apply-button:hover {
    background-color: #cc0000; /* Darker shade on hover */
}

/* .main-content {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.left-content {
    width: 60%; 
    padding-right: 20px; 
    box-sizing: border-box;
}

.details {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.program-details {
    font-size: 12px;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 5px;
    
}

.program-details p {
    font-size: 1.2em;
    text-align: center;
    margin-left: -250px;
} */

/* .download-section {
    text-align: center;
    margin-top: 40px;
    margin-left: 550px;
    margin-right: -150px;
}

.download-btn {
    padding: 10px 20px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.download-btn:hover {
    background-color: #cc0000;
} */

/* .buttons {
    display: flex;
    justify-content: flex-start;
    gap: 10px; 
    margin-bottom: 20px;
}

.btn-compare,
.btn-download {
    background-color: #d52b1e;
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    border-radius: 4px;
    cursor: pointer;
}


.benefits {
    display: flex;
    justify-content: space-between;
}

.benefit-column {
    width: 48%; 
}

.benefit-column p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

.benefit-column i {
    color: #4CAF50; /
    margin-right: 10px;
} */


/* Style for the right-side form */
/* .right-form {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
    width: 35%;
    position: relative;
    top: -120px; 
    margin-right: -45px;
}

input[type="text"],
input[type="email"],
select {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 300px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

button {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: #d52b1e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;

}

.form-container {
    background-color: #fff;
    padding: 30px;
    width: 75%; 
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.form-container h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.form-container form {
    display: flex;
    flex-direction: column;
}

.form-container label {
    margin-bottom: 10px;
    font-weight: bold;
}

.form-container input,
.form-container select {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-container button {
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #0056b3;
} */


.container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
}

.left-content {
    width: 58%;
    padding-right: 20px;
}

.program-details {
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    margin-left: -135px;
    margin-top: -35px;
    
}

.program-details i {
    color: #555;
    align-items: flex-start;
    
}

.buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    
}

.btn-compare, .btn-download {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 10px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    
}

.btn-compare {
    background-color: #e0e0e0;
    color: #333;
    margin-left: 290px;
}

.btn-download {
    background-color: #d32f2f;
    color: #fff;
    
}

.buttons i {
    margin-right: 8px;
}

/* .separator {
    border: 1px solid #e0e0e0;
    margin: 5px 0;
    width: 780px;
} */

hr.separator {
    width: 116%; /* Adjust width as needed */
    border: none; /* Removes the default border */
    border-top: 1px solid #e0e0e0; /* Increase the thickness and change the color */
    margin-top: 1px; 
    margin-bottom: 10px; /* Adjust spacing below */
    margin-left: -100px;
}

.benefits {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 50px;
}

.benefit-column {
    width: 45%;
    margin-right: 20px;

}

.benefit-column p {
    font-family: "Europa";
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.benefit-column i {
    color: #4caf50;
    margin-right: 10px;
}

#benefit1 {
    font-family: "Europa", ;
    margin-left: -90px;
    margin-bottom: 50px;
}

#benefit2 {
    font-family: "Europa", ;
    margin-left: -90px;
    margin-bottom: 50px;
}

#benefit3 {
    font-family: "Europa", ;
    margin-top: -90px;
    margin-right: -90px;
    margin-bottom: 50px;
}


/* Form section */
.right-section {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
    width: 55%;
    position: relative;
    top: -120px; 
    margin-right: -200px;
}

.form-section {
    background-color: #fff;
    padding: 30px;
    width: 75%; 
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

form {
    display: flex;
    flex-direction: column;
}

form h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

form p {
    font-size: 14px;
    margin-bottom: 20px;
}

label {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

input, select {
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    font-size: 14px;
}

.submit-btn {
    background-color: #d32f2f;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #c1271b;
}

.container2 {
    max-width: 900px;
    margin: 20px;
    padding: 20px;
    /* position: absolute; */
    /* top: 1150px; */
    margin-top: -150px;
}

.section {
    margin-bottom: 15px;
}

.section-header {
    display: flex;
    align-items: center;
    
    padding: 15px;
    cursor: pointer;
    border-left: 5px solid red;
    border-bottom: 2px solid transparent;
    transition: background-color 0.3s ease, border-left 0.3s ease;
}

.red-icon {
    width: 5px;
    height: 100%;
    background-color: red;
    /* margin-bottom: 30px;
    margin-right: 10px; */
    margin-right: 10px;
}

.section-header h2 {
    font-size: 18px; /* Adjusted font size */
    font-weight: 500;
    color: #333;
    margin-right: 10px;

    /* margin: 0; */
}

.arrow {
    font-size: 18px; /* Adjusted size to match image */
    color: #333;
    margin-left: 20px;
}

.section-header .arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.section-description {
    font-size: 16px; /* Same font size as the visible text */
    color: #333;
    /* margin-left: 55px;
    margin-top: 5px; */
    /* margin: 0 0 10px; */
    /* margin-left: 30px; */
    /* background-color: #f2f2f2;  */
    /* margin-bottom: 10px; */
    display: flex;
    align-items: center;
    font-family: "Europa";
    font-size: 15px;
    /* padding: 15px; */
    padding-left: 35px;
    transition: background-color 0.3s ease;
}

.section-header {
    font-family: "Europa";
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    border-left: 5px solid red;
    border-bottom: 2px solid transparent;
    transition: background-color 0.3s ease, border-left 0.3s ease;
}

 .section-content ul, .section-content p, .section-content table {
    margin: 0;
}


.section.active .section-header{
    background-color: #f2f2f2; 
    border-left: 5px solid red; 
}

.section.active .arrow {
    transform: rotate(180deg); 
}

.section.active .section-description {
    display: block;
    margin-top: 0;
    
    background-color: #f2f2f2;
    border-left: 5px solid red;
}

.section.active .section-content {
    display: block;
    margin-top: 0;
    border-left: 5px solid red; /* Add the red border here */
}

.section-content {
    font-family: "Europa";
    display: none;
    font-size: 13px;
    padding: 15px;
    margin-top: 10px;
    background-color: #f2f2f2;
    border-left: 5px solid red;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    overflow: hidden;
    max-height: 0;
}
.section.active .section-content {
    display: block;
    max-height: 1000px; 
}

.section-content ul {
    list-style-type: disc;
    margin-top: 10px;
}

.section-content li {
    margin-left: 70px;
    margin-bottom: 5px;
}

.section-content ul li {
    /* margin-bottom: 5px; */
    margin-left: 60px;
}

/* .section.active .section-header,
.section.active .section-description,
.section.active .section-content {
    background-color: #f2f2f2;  Light cyan background 
} */

.fees-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.fees-table th, .fees-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.fees-table th {
    background-color: #060606; /* Red background */
    color: #fff;
    margin-right: 80px;
}

.campus-info img {
    height: 170px;
}

/* .fees-section {
    background-color: #F2F2F2;
    padding: 20px;
    border-left: 5px solid #E60012;
} */

/* footer */

.footer {
    
    font-size: 12px;
    font-family: "verdana";
    position: relative;
    /* top: 0; */
    background-color: #0b0b0b75;
    color: #fff;
    padding: 40px 0;
    margin-top: 150px;
}

.container3 {
    color: #060606;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col   
 {
    width: 25%;
    margin-bottom: 20px;
    list-style: none;
}

.footer-col h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f00;
}

.social-icons {
    display: flex;
    margin-top: 10px;
}

.social-icons a {
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #f00;
} */

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.footer-left, .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 40%;
    
}

.footer-logo {
    width: 150px; /* Adjust width as needed */
    margin-bottom: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    
    margin-bottom: 8px;
}

.copyright {
    text-align: center;
    margin-top: 20px;
}

.copyright p {
    margin-bottom: 10px;
}

.copyright ul {
    
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.copyright ul li {
    margin-right: 10px;
    
}

.copyright ul li a {
    color: #0e0b0b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright ul li a:hover {
    color: #f00;
}

@media screen and (max-width: 768px) {
    /* Adjust the header */
    header {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .logo-container {
        justify-content: center;
        margin-bottom: 10px;
    }

    .logo, .logo-right {
        margin: 0;
        height: 50px; /* Adjust logo size */
    }

    /* Hero section adjustments */
    .hero {
        height: 300px; /* Reduce hero height */
    }

    .hero-content {
        bottom: 20px;
        left: 10px; /* Adjust content position */
    }

    .hero-content h1 {
        font-size: 1.8em; /* Reduce font size */
    }

    .hero-content p {
        font-size: 0.9em; /* Reduce font size */
        width: 90%; /* Make paragraph width responsive */
    }

    /* Main content adjustments */
    .container {
        flex-direction: column; /* Stack content vertically */
        padding: 10px;
    }

    .left-content, .right-section {
        width: 100%; /* Full width for both sections */
        padding-right: 0;
        padding-left: 0; /* Remove side padding */
    }

    .program-details {
        margin-left: 0; /* Reset margins */
        margin-top: 0; 
    }

    /* Button adjustments */
    .btn-compare, .btn-download {
        width: 100%; /* Full-width buttons */
        padding: 10px; /* Adjust button padding */
        font-size: 14px; /* Adjust button font size */
        margin-left: 0; /* Remove left margin */
        margin-right: 0; /* Remove right margin */
    }

    .benefits {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .benefit-column {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
      }

    

    /* Form section adjustments */
    .right-section {
        width: 100%; /* Full width */
        margin-right: 0; /* Reset margin */
        top: 0; /* Reset position */
    }

    .form-section {
        width: 90%; /* Make form section responsive */
    }

    .container2 {
        margin-top: 30px;
    }

    /* Footer adjustments */
    .footer {
        padding: 20px 0; /* Reduce footer padding */
    }

    .footer-col {
        width: 100%; /* Stack footer columns */
        margin-bottom: 10px; /* Add spacing */
    }

    /* Adjust font sizes for better readability */
    body {
        font-size: 14px; /* Slightly larger base font */
    }

    /* Any additional styles can be added here */
}


/* https://newinti.edu.my/wp-content/uploads/2018/01/mbals.jpg */
