

body {
    font-family:'Lucida Console", "Courier New, monospace,serif';
    color:081C1F;
    overflow-x: hidden;
    background-color:CEF5EE;
}

/* Top Bar Styles */
.top-bar {
    background-image:linear-gradient(to right,blue,blue);
    color: blue;
    padding:10px;
    font-size: 0.9rem;
	margin-bottom:5px;

}

.top-bar a {
    color:orange;
    text-decoration:bold;
    transition: color 0.3s ease;
	font-weight: 600;
}

.top-bar a:hover {
    color: white;
}

.top-bar i {
    margin-right:5px;
}


/* Navigation */
.navbar {
    background-image: linear-gradient(to right, blue, orange);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	padding:20px;
}

.navbar-brand img {
    height:70px;
}

.nav-link {
    color: white;
    font-weight:800;
    padding: 10px 15px;
}

.nav-link:hover {
    color:orange;
}

.btn-apply {
    background-color: var(--primary-color);
    color: white;
}

.btn-apply:hover {
    background-color: #5e0bb9;
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to left,white,orange);
    background-size: cover;
    background-position: center;
    color: blue;
    padding:40px 0;
    text-align: center;
	margin-top:15px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 10px;
}

/* Content + Carousel Section */
.content-carousel-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.content-text {
    padding-right: 40px;
}

.content-text h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.carousel-item img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

/* Curriculum Cards */
.curriculum-section {
    padding: 80px 0;
    background-color:CEF5EE;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.curriculum-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.curriculum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 30px;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-curriculum {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s;
}

.btn-curriculum:hover {
    background-color: #5e0bb9;
    color: white;
}

.btn-cambridge {
    background-color: #A51C30;
}

.btn-cambridge:hover {
    background-color:green;
}

.btn-pearson {
    background-color:#8b008b;
}

.btn-pearson:hover {
    background-color:blue;
}

/* Partners Section */
.partners-section {
  padding: 40px 0;
    background-color:#BBF4FC;
	margin-bottom:25px;
}
.partner-logo {
    height: 50px;
    margin-bottom: 30px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 75;
}

/* Footer */
.footer {
    background: linear-gradient(to right, #060270, #060270);
    color: white;
    padding: 60px 0 20px;
	font-weight: 600;
	
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer h5 {
    color: orange;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color:white;
    text-decoration: none;
    transition: color 0.3s;
	font-weight: 600;
}

.footer-links a:hover {
    color:yellow;
}

.contact-info li {
    margin-bottom:10px;
	font-weight: 600;
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .content-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .hero-btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
    
    .top-bar .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar a {
        display: block;
        margin: 5px 0;
    }
}