body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F7F4;
    /* Light background similar to the image */
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.navbar-brand img {
    width: 180px;
}


/* Custom Orange Button Style */
.btn-orange {
    background-color: #E66A00;
    /* Custom orange from the image */
    border-radius: 10px;
    color: #fff !important;
    transition: all 0.3s ease-in-out;
    /* Smooth transition for hover effects */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.btn-orange:hover {
    background-color: #FF7A00;
    /* Slightly darker orange on hover */
    border-color: #E66A00;
    color: white;
    transform: translateY(-2px);
    /* Slight lift on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    /* Enhanced shadow on hover */
}

/* Custom Hover effect for Navbar links */
.nav-link.hover-orange:hover {
    color: #FF7A00 !important;
    /* Ensure custom orange color applies on hover */
    transition: color 0.2s ease-in-out;
}

/* Custom highlight for "on Track" */
.bg-orange-light-highlight {
    background-color: #FFDDAA;
    /* Lighter orange for the highlight under "on Track" */
    opacity: 0.5;
    height: 8px;
    /* Height of the highlight line */
    border-radius: 1rem;
}

/* Custom rounded corners for the image in the hero section */
.img-rounded-3xl {
    border-radius: 1.5rem;
    /* Equivalent to Tailwind's rounded-3xl */
}

/* Custom shadow for the image in the hero section */
.shadow-2xl-custom {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Equivalent to Tailwind's shadow-2xl */
}

/* Responsive spacing for hero section title and paragraph */
@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
        /* Larger font size for desktop */
    }

    .hero-text {
        font-size: 1.25rem;
        /* Larger font size for desktop */
    }
}

/* Hero Background Section */
.hero-background {
    background-image: url('assets/banner.png');
    /* Placeholder background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    display: flex;
    /* Use flexbox to center content */
    align-items: center;
    /* Vertically center content */
    position: relative;
    /* For the overlay */
    color: #000;
}

.hero-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background .container-fluid {
    position: relative;
    z-index: 2;
    /* Ensure content is above the overlay */
}

.hero-background .hero-title,
.hero-background .hero-text {
    color: #000 !important;
}

.hero-background .bg-orange-light-highlight {
    background-color: #FF7A00 !important;
    /* Adjust highlight color for dark background */
    opacity: 0.7;
}

/* Course Cards Section */
.course-card {
    border: none;
    min-height: 200px;
    /* Ensure cards have a decent height */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.course-card h5 {
    font-size: 1.25rem;
    /* Adjust font size for card titles */
    line-height: 1.4;
    /* Improve readability for multi-line titles */
}

/* Custom background gradient colors for the cards matching the image */
.bg-card-purple {
    background: linear-gradient(135deg, #6A5ACD, #483D8B);
    /* Deep purple to darker purple */
    color: white;
}

.bg-card-yellow {
    background: linear-gradient(135deg, #FFC107, #FFA000);
    /* Vibrant yellow to amber */
    color: #fff;
    /* Darker text for readability on yellow */
}

.bg-card-light-blue {
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    /* Light blue to slightly darker blue */
    color: #fff;
    /* Darker text for readability on blue */
}

.bg-card-green {
    background: linear-gradient(135deg, #66BB6A, #4CAF50);
    /* Light green to slightly darker green */
    color: #fff;
    /* Darker text for readability on green */
}


/* Yellow Arrow Button */
.btn-yellow-arrow {
    background-color: #FFDDAA;
    /* Lighter yellow/orange from the image */
    border-color: #FFDDAA;
    color: #FF7A00;
    /* Orange arrow color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 50px;
    /* Fixed width for circular button */
    height: 50px;
    /* Fixed height for circular button */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.btn-yellow-arrow:hover {
    background-color: #FFCC88;
    border-color: #FFCC88;
    color: #E66A00;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Styling for the decorative background shapes in the course section */
.course-bg-shape-top {
    background-color: rgba(255, 221, 170, 0.25);
    /* Lighter orange/yellow with opacity */
    border-radius: 50%;
    transform: rotate(20deg) translate(-20%, -50%);
    filter: blur(40px);
    z-index: -1;
    /* Ensure it stays behind content */
}

.course-bg-shape-bottom {
    background-color: rgba(255, 221, 170, 0.25);
    /* Lighter orange/yellow with opacity */
    border-radius: 50%;
    transform: rotate(-30deg) translate(50%, -50%);
    filter: blur(40px);
    z-index: -1;
    /* Ensure it stays behind content */
}

/* Style for Font Awesome icons in course cards */
.course-card i {
    font-size: 3rem;
    /* Adjust icon size */
    margin-bottom: 1rem;
    line-height: 1;
    /* Ensure proper vertical alignment */
}

.bg-card-yellow i,
.bg-card-light-blue i,
.bg-card-green i,
.bg-card-purple i {
    color: #fff;
    /* Darker color for lighter backgrounds */
}

/* About Us Section specific styles */
.about-us-section {
    background-color: #F8F7F4;
    /* Light background */
}

.about-us-content-box {
    background-color: #ffffff;
    /* White background for the content box */
    border-radius: 1.5rem;
    /* Rounded corners */
    padding: 2.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.about-us-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.about-us-feature i {
    font-size: 1.8rem;
    /* Icon size */
    color: #FF7A00;
    /* Orange color for icons */
    margin-right: 1rem;
    width: 40px;
    /* Fixed width for icon container */
    text-align: center;
}

.about-us-feature h6 {
    font-weight: 600;
    /* Semi-bold for feature titles */
    color: #343a40;
    /* Dark text */
    margin-bottom: 0.2rem;
}

.about-us-feature p {
    color: #6c757d;
    /* Grey text */
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-us-image-grid {
    border-radius: 1.5rem;
    overflow: hidden;
    /* Ensures images stay within rounded corners */
    position: relative;
    background-color: #E6E6FA;
    /* Light purple background behind images */
    padding: 1rem;
    /* Padding inside the grid container */
}

.about-us-image-grid img {
    border-radius: 0.75rem;
    /* Slightly rounded corners for individual images */
    object-fit: cover;
    /* Ensure images cover their area */
    height: 100%;
    width: 100%;
}

/* Specific colors for the circles as per the Benefits From Our Online Learning image */
.about-us-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.about-us-icon-circle i {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0;
    /* Reset margin from general icon style */
}

.circle-purple {
    background-color: #6A5ACD;
}

.circle-orange {
    background-color: #FF7A00;
}

.circle-pink {
    background-color: #FF69B4;
}

/* Hot Pink */
.circle-light-blue {
    background-color: #4FC3F7;
}

/* Why Choose Us Section Specific Styles */
.why-choose-us-section {
    background-color: #F8F7F4;
    /* Light background, consistent */
}

.why-choose-us-feature {
    background-color: #ffffff;
    /* White background for each feature box */
    border-radius: 1rem;
    /* Rounded corners */
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    min-height: 220px;
    /* Ensure consistent height for cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-choose-us-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-us-feature .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-us-feature .icon-box i {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0;
    /* Override general icon margin */
}

/* Specific colors for the icon boxes */
.icon-box-purple {
    background-color: #6A5ACD;
}

.icon-box-orange {
    background-color: #FF7A00;
}

.icon-box-green {
    background-color: #66BB6A;
}

.icon-box-blue {
    background-color: #4FC3F7;
}

.why-choose-us-feature h5 {
    font-weight: 700;
    /* Bold for titles */
    color: #343a40;
    /* Dark text */
    margin-bottom: 0.5rem;
}

.why-choose-us-feature p {
    color: #6c757d;
    /* Grey text */
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Student Testimonials Section Specific Styles */
.testimonials-section {
    background: linear-gradient(135deg, #FFA07A, #FF7F50);
    /* Orange gradient background */
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    /* Ensure title is white on gradient background */
}

.testimonials-section p.lead {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: rgba(255, 255, 255, 0.85);
    /* Slightly transparent white for text */
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.9);
    /* Semi-transparent white card background */
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #343a40;
    /* Dark text for readability */
    text-align: left;
    min-height: 250px;
    /* Ensure consistent card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .student-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-card .student-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #FF7A00;
    /* Orange border for avatars */
}

.testimonial-card .student-info h6 {
    font-weight: 700;
    color: #FF7A00;
    /* Orange color for student names */
    margin-bottom: 0;
    font-size: 1.1rem;
}

.testimonial-card .student-info span {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
}

.testimonial-card p.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    /* Allow text to take up available space */
}

.testimonials-navigation {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Custom Testimonial Controller Styles */
.testimonial-controls-wrapper {
    margin-top: 3rem;
    /* Spacing from cards */
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    /* Slightly visible background for the controller */
    border-radius: 2rem;
    /* Rounded pill shape */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-arrow-btn {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white for arrows */
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.testimonial-arrow-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.testimonial-arrow-btn i {
    font-size: 1.2rem;
    margin: 0;
    /* Override default margin */
}

/* Blog Section Styles */
.blog-section {
    background-color: #F8F7F4;
    /* Light background, consistent */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    /* Ensures image corners are rounded with the card */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
    height: 100%;
    /* Make cards same height */
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    /* Fixed height for blog images */
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    /* Allows content to push footer down */
    display: flex;
    flex-direction: column;
}

.blog-card-body h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 0.75rem;
}

.blog-card-body p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    flex-grow: 1;
    /* Allow description to take up available space */
}

.blog-card-body .read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #FF7A00;
    /* Orange color for read more link */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.blog-card-body .read-more:hover {
    color: #E66A00;
    /* Darker orange on hover */
    text-decoration: underline;
}

/* Footer Styles */
.footer-section {
    background-color: #343a40;
    /* Dark background for footer */
    color: rgba(255, 255, 255, 0.7);
    /* Light grey text */
    padding: 4rem 0;
    font-size: 0.9rem;
}

.footer-section h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section .footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: color 0.2s ease-in-out;
}

.footer-section .footer-link:hover {
    color: #FF7A00;
    /* Orange on hover */
}

.footer-section .social-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.2s ease-in-out;
}

.footer-section .social-icon:hover {
    color: #FF7A00;
    /* Orange on hover */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: -2rem;
    text-align: center;
}

/* Breadcrumb Section Styles */
.breadcrumb-section {
    background-image: url('assets/bg.jpg');
    /* Placeholder background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 0;
    position: relative;
    color: #E66A00;
    text-align: center;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay for better text contrast */
    z-index: 1;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb-section .breadcrumb {
    justify-content: center;
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-section .breadcrumb-item {
    font-size: 1.1rem;
}

.breadcrumb-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: #FF7A00;
    /* Orange on hover */
}

.breadcrumb-section .breadcrumb-item.active {
    color: #FF7A00;
    font-weight: 600;
}

/* Contact Section Specific Styles */
.contact-section {
    background-color: #F8F7F4;
    /* Light background */
    padding: 5rem 0;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
    background: linear-gradient(135deg, #FF7A00, #E66A00);
    /* Orange gradient */
    color: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-card p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info-card p i {
    font-size: 1.2rem;
    margin-right: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-card .social-icons-contact {
    margin-top: 2rem;
}

.contact-info-card .social-icons-contact a {
    color: white;
    font-size: 1.8rem;
    margin-right: 1.5rem;
    transition: color 0.2s ease-in-out;
}

.contact-info-card .social-icons-contact a:hover {
    color: #FFDDAA;
    /* Lighter orange on hover */
}

/* Custom Message Box (Modal-like) */
.custom-message-box {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1050;
    /* Above other content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dim background */
    justify-content: center;
    align-items: center;
}

.custom-message-content {
    background-color: #fefefe;
    margin: auto;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    text-align: center;
    position: relative;
}

.custom-message-content .close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #aaa;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.custom-message-content .close-btn:hover,
.custom-message-content .close-btn:focus {
    color: #FF7A00;
    text-decoration: none;
}

.custom-message-content h5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 1rem;
}

.custom-message-content p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Appointment Section Specific Styles */
.appointment-section {
    background-color: #F8F7F4;
    /* Light background */
    padding: 5rem 0;
}

.appointment-form-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    /* Limit width for better form aesthetics */
    margin: auto;
    /* Center the card */
}

.appointment-form-card .form-control,
.appointment-form-card .form-select {
    border-radius: 2rem;
    /* Rounded pills for inputs and selects */
    padding: 0.75rem 1.25rem;
}

.appointment-form-card textarea.form-control {
    border-radius: 1rem;
    /* Slightly less rounded for textarea */
}

/* FAQ Section Styles */
.faq-section {
    background-color: #F8F7F4;
    padding: 5rem 0;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 3rem;
    text-align: center;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: #ffffff;
    color: #343a40;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s ease-in-out;
}

.accordion-button:not(.collapsed) {
    color: #FF7A00;
    /* Orange for active question */
    background-color: #FFF3E0;
    /* Light orange background */
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    background-color: #ffffff;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

/* Newsletter Section Specific Styles */
.newsletter-section {
    background-color: #F8F7F4;
    /* Light background */
    padding: 5rem 0;
}

.newsletter-form-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    /* Limit width for better form aesthetics */
    margin: auto;
    /* Center the card */
    text-align: left;
}

.newsletter-form-card .form-control {
    border-radius: 2rem;
    /* Rounded pills for inputs */
    padding: 0.75rem 1.25rem;
}

.newsletter-form-card .form-check-input {
    border-radius: 0.5rem;
    /* Slightly rounded checkbox */
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
}

.newsletter-form-card .form-check-label {
    font-size: 0.95rem;
    color: #6c757d;
}