/* General Styles */
<style>
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #3498db;
    margin: 15px 0;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #FE9900;
    padding: 80px 0;
    margin-top: 20px;
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-media {
    text-align: center;
}

.hero-animation {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* SNE Description Section */
.sne-description-section {
    
	padding: 5px 0;
    background-color: #f8f9fa;
	
}

.sne-description {
    background: #F0FDFC;
    padding:5px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}

.read-more-btn {
    transition: all 0.3s ease;
}

.read-more-btn.collapsed img {
    transform: rotate(0deg);
}

.read-more-btn img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Alternating Sections */
.alternating-section {
    padding: 60px 0;
}

.alternating-section:nth-child(even) {
    background-color: #f8f9fa;
}

.banner-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-img:hover {
    transform: scale(1.02);
}

/* Feature Cards */
.feature-card {
     background-image: linear-gradient(to left, #fd81fd, #b5b0ff, #7acfff, #80e2ff, #b2edf2);
    border-radius:8px;
    padding:30px;
    margin-bottom:20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.check-icon {
    width: 18px;
    margin-right: 8px;
}

/* Curriculum Cards */
.curriculum-card {
     background-image: linear-gradient(to right bottom, #e2fd81, #ffe582, #ffd096, #ffc2af, #f6bcc1);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 4px solid #3498db;
}

.icon-img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/* Testimonial Cards */
.testimonial-card {
    background: #FADBF1;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-quote {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 2rem;
    color: #3498db;
    opacity: 0.3;
    position: absolute;
}

.testimonial-quote::before {
    top: -15px;
    left: 0;
}

.testimonial-quote::after {
    bottom: -25px;
    right: 0;
}

/* Enquiry Form */
.enquiry-container {
    display: flex;
    gap:30px;
    background:#DDFBAD;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.enquiry-form {
    flex:1;
    padding:30px;
}

.form-banner {
    width: 40%;
    background-size: cover;
    background-position: center;
    display: none;
	margin:20px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.progress {
    height: 15px;
    margin-bottom:20px;
}

.progress-bar {
    transition: width 0.5s ease;
    background-color: #F60D0D;
}

/* Top Bar */
.top-bar {
    background-color: #EE0E82;
    color: white;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
    color: #FE9900;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.top-bar a:hover {
    color: white;
}

.icon-img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.btn-register {
    background-color: #7a0eee;
    color: white !important;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-register:hover {
    background-color: #eeea0e;
    color: white;
}

/* Footer */
footer {
    background-color:#060270;
    color: white;
    padding: 60px 0 20px;
}

footer h5 {
    color: #E56D03;
    margin-bottom: 20px;
    font-weight: 700;
}

footer a {
    color: #bdc3c7;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #3498db;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .form-banner {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 20px 0;
        text-align: center;
    }
    
    .top-bar .container > div {
        flex-direction: column;
    }
    
    .top-contact-info, .top-auth-links {
        margin-bottom: 5px;
    }
    
    .top-bar a {
        display: block;
        margin: 10px 0;
    }
    
    .btn-register {
        display: inline-block;
        margin-top: 5px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .enquiry-container {
        flex-direction: column;
    }
    
    .form-banner {
        width: 100%;
        height: 250px;
    }
}
</style>