/* General Styles */
body {
    font-family: Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(225, 230, 230);
    color: #183C5F;
}

.notification-bar {
    background-color: #ffcc00; /* Bright yellow for attention */
    color: #333;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Ensures it appears above other elements */
}

.notification-bar a {
    color: #d10000; /* Highlight link */
    text-decoration: underline;
    font-weight: bold;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
}


/* Adjusting navbar to avoid overlap */
nav {
    margin-top: 50px; /* Push nav down so it's not hidden */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .notification-bar {
        font-size: 14px;
        padding: 8px;
    }
}


/* Basic styling for the header */
.sticky-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    padding-bottom:10px;
    transition: all 0.3s ease;
    margin-top: 50px;
}

/* Flex container for logo and navigation */
.header-container {
    display: flex;
    justify-content: space-between; /* Logo on the left, nav on the right */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo styles */
.logo img {
    width: 250px;
    height: 80px;
    display: block;
}

.hero {
    position: relative;
    height: 100vh; /* Adjust this to your preferred height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/background.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;    
    z-index: -1;
}

.herocontent {
    z-index: 1;
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.300); /* Optional: Add a semi-transparent background for better readability */
    border-radius: 10px;
}

.hero h1, .hero p, .hero button {
    margin: 20px 0;
}

.btn-cta {
    display: inline-block;
    background: #183C5F;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.btn-cta:hover {
    background: #F8B144;
}

/* Navigation styles 
nav {
    
}*/

nav {
    position: relative;
    display: flex; 
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Ensures menu items appear in a row */
    gap: 20px; /* Space between menu items */
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #183C5F;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #F8B144;
}

/* Optional: style for the sticky state */
.sticky-header.sticky {
    background-color: #f1f1f1;  /* Change background when sticky */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);  /* Add stronger shadow when sticky */
}




/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/background.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;   
}

.hero h1 {
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Style for the "Apply / Enroll" button */
.apply-btn {
    background-color: #183C5F; /* Blue background for the button */
    color: white; /* White text */
    font-size: 1rem; /* Font size */
    padding: 10px 20px; /* Padding inside the button */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease; /* Smooth background color transition */
    display: inline-block; /* Ensure it behaves like a button */
}

.apply-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}


/* Intro Section */
.intro {
    padding: 30px;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 5px solid #F8B144;
    background-color: #f9f9f9;
    max-width: 100%;
    margin: 30px;
}

/* Courses Overview */
.courses-overview {
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 5px solid #F8B144;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin:30px;
}

/* Course Box */
.course-box {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    border: 2px solid #183C5F;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 1000px;
    margin-bottom:60px;
    transition: transform 0.3s ease-in-out;
}

.course-box:hover {
    transform: scale(1.05);
}

/* Course Titles */
.course-box h3 {
    font-size: 1.3rem;
    color: #183C5F;
    border-bottom: 3px solid #F8B144;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

/* Course Descriptions */
.course-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.course-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    color: #333;
}

.course-box li {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #123657;
}

.seq-number {
    color: #F8B144;
    font-weight: bold;
    margin-right: 5px;
}

/* Portfolio Section */
.portfolio {
    padding: 40px;
    text-align: center;
}

.portfolio img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-top: 20px;
}

/* About Section */
.about {
    padding: 40px;
    text-align: center;
    background-color: #f9f9f9;
}

/* Contact Section */
.contact {
    padding: 40px;
    text-align: center;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #183C5F;
    border-radius: 5px;
}

.contact button {
    background: #183C5F;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.contact button:hover {
    background: #F8B144;
}

.footer-section {
    background-color: #183C5F;
    color: #ffffff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo h2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.footer-logo p {
    font-size: 14px;
    color: #ddd;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: #f4a261;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

/* Container for the "Why Choose Us" section */
.whyus {
    background-color: #fff; /* White background for the entire section */
    padding: 40px 20px; /* Add padding around the section */
    border-radius: 10px; /* Rounded corners for modern look */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Heading style */
.whyus h2 {
    font-size: 2.5rem; /* Larger text for the main title */
    font-weight: 600; /* Make it bold */
    color: #333; /* Dark color for good contrast */
    text-align: center; /* Center the heading */
    margin-bottom: 20px; /* Space below the heading */
}

/* Paragraph below the heading */
.whyus p {
    font-size: 1.1rem; /* Slightly larger text */
    color: #555; /* Soft dark grey for readability */
    line-height: 1.8; /* Increased line height for better readability */
    text-align: center; /* Center the introductory paragraph */
    margin-bottom: 40px; /* Space below the paragraph */
}

/* Style for the unordered list */
.whyus ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns layout */
    gap: 30px; /* Space between items */
    max-width: 1200px; /* Increase max width to allow for larger list items */
    margin: 0 auto; /* Center the list */
}

/* Style for each list item */
.whyus li {
    background-color: #f0f4f8; /* Light grey-blue background for each list item */
    padding: 30px; /* Add padding inside list items */
    border-radius: 8px; /* Rounded corners for each item */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Soft shadow for each item */
    line-height: 1.5; /* Increased line height for better readability */
    transition: all 0.3s ease; /* Smooth transition on hover */
    width: 80%; /* Make each item take full width within the grid */
}

/* On hover effect for each list item */
.whyus li:hover {
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
}

/* Strong emphasis on list item titles */
.whyus li strong {
    font-size: 1.2rem; /* Make the title text slightly larger */
    color: #183C5F; /* Blue color for emphasis */
    font-weight: bold; /* Make the title bold */
    display: block; /* Make it stand out as a block element */
    margin-bottom: 10px; /* Add space below the title */
}

.company-overview-section {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
    margin:0;
    margin-bottom: 30px;
}

.company-overview-section .section-title {
    color: #183C5F;
    font-size: 2rem;
    margin-bottom: 20px;
}

.company-overview-section .section-description {
    color: #747474;
    font-size: 1.3rem;
    line-height: 2rem;
    margin: 0 auto;
    max-width: 800px;
    margin-bottom: 30px;
}

.leadership-section {
    background-color: #f5f5f5; /* Light grey background */
    padding: 20px 20px;
    text-align: center;
    margin: 20px 0;
    margin-bottom: 50px;
}

.leadership-section .section-title {
    color: #183C5F; /* Primary color */
    font-size: 2rem;
    margin-bottom: 20px;
}

.leadership-single-container {
    display: flex;
    justify-content: center;
}

.leader-block {
    background-color: #ffffff; /* White background for the block */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 8px 10px 6px 7px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 400px;
    text-align: center;
    margin-bottom:30px;
}

.leader-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Circular photo */
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for the image */
}

.leader-block h3 {
    color: #183C5F; /* Primary color */
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.leader-block p {
    color: #747474; /* Secondary color */
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.icon-image {
    max-width: 60px; /* Set size of the icon */
    height: auto;
}
.testimonials-section {
    padding:20px;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #183C5F;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 8px;    
    box-shadow: 8px 10px 6px 7px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    flex: 1;
    margin-bottom: 30px;
    transition: background-color 0.3s ease-in-out;

}

.testimonial:hover {
    background-color: #f0f4f8;
    color: #747474;
}

.testimonial-content {
    font-size: 16px;
    color: #747474;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 18px;
    color: #183C5F;
}

.testimonial-author span {
    font-size: 14px;
    color: #747474;
}
.profilebadge-container {    
    background: linear-gradient(45deg, rgba(24, 60, 95, 0.7), rgba(255, 255, 255, 0.5), rgba(0, 150, 136, 0.7)); /* Gradient background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow for depth */
    max-width: 165px;
    height: auto;  
    align-items: center;
    margin-bottom: 10px;      
}

/* For larger screens, adjust the grid layout */
@media (min-width: 768px) {
    .whyus ul {
        grid-template-columns: 1fr 1fr 1fr; /* 3 columns on larger screens */
    }
}

/* Optional: To ensure wider boxes on larger screens */
@media (min-width: 1200px) {
    .whyus li {
        padding: 40px; /* Increase padding for larger boxes */
    }
}

/* Ensure the layout adapts to different screen sizes */
@media screen and (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /*.logo img {
        width: 150px;
        height: auto;
    }*/

    /* Logo styles */
    .logo img {
        width: 250px;
        height: 80px;
        display: block;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .hero {
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .herocontent {
        width: 90%;
    }

    .whyus ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive Grid */
        gap: 20px;
        padding: 0;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        width: 90%;
        max-width: 500px;
    }
}

/* Mobile Devices (Small Screens) */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .apply-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .whyus ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .whyus li {
        width: 90%;
        padding: 20px;
    }

    .course-box {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact input, .contact textarea {
        width: 100%;
    }

    .testimonial {
        width: 100%;
        padding: 20px;
    }
}

 
/* Mobile Menu - Hidden by default */
@media (max-width: 768px) {
     /* Menu toggle styles 
    #menu-toggle {
        display: block; 
        font-size: 1.5em; 
        color: #183C5F;
        cursor: pointer; 
    }*/

    /* Hide the standard navigation menu on small screens */
    #nav-menu.ul {
        display: none; /* Hide by default */
        position: absolute;
        top: 60px; /* Adjust based on your header height */
        left: 0;
        background-color: white;
        width: 100%;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        padding: 0; /* Remove default padding */
        margin: 0; /* Remove default margin */
    }

    /* Show the navigation menu when the menu toggle is active */
    #nav-menu.active {
        display: flex;
    }

    /* Ensure the links in the menu are displayed in a column layout */
    #nav-menu.ul li {
        margin: 0;
        text-align: center;
    }

    #nav-menu.ul li a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #ddd;
        text-decoration: none;
        color: #183C5F; /* Adjust color to match your theme */
    }
        /* Logo styles */
    .logo img {
        width: 250px;
        height: 80px;  
    }

    .logo {
        padding-top:5px;
    }
    
    nav{
        margin-top:10px;
    }
}