/* General Body & Typography */
:root {
    --primary-blue: #0A2240; /* Darker blue for headings, background elements */
    --secondary-blue: #007BFF; /* A brighter blue for accents, buttons */
    --light-blue: #ADD8E6; /* Lighter blue for subtle highlights */
    --white: #FFFFFF;
    --black: #000000;
    --text-color: #333333;
    --light-grey: #f4f4f4;
    --dark-grey: #555555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

p {
    margin-bottom: 10px;
}

a {
    color: var(--secondary-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header & Navigation */
header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Adjust logo size as needed */
    margin-right: 10px;
     
     filter: none !important;
	 padding: 2px;
    border-radius: 0;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.3));
    
   /*  filter: brightness(0) invert(1); Makes a blue logo white on dark background */
}

.logo span {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--white);
}


        
header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: var(--white);
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 0;
    transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--light-blue);
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--secondary-blue);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

.btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
    text-decoration: none;
}

.secondary-btn {
    background-color: var(--primary-blue);
    border: 2px solid var(--secondary-blue);
}

.secondary-btn:hover {
    background-color: var(--secondary-blue);
    border-color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background: url('images/hero_background.jpeg') no-repeat center center/cover; /* Placeholder background image */
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden; /* To contain images */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Overlay for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 50px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5em;
    margin-bottom: 10px;
}

.hero-content h2 {
    color: var(--light-blue);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-image-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-image-item {
    width: 250px; /* Fixed width for each image item */
    height: 180px; /* Fixed height for each image item */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-image-item:hover {
    transform: translateY(-5px);
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-item:hover img {
    transform: scale(1.05);
}

.hero-image-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px 0;
    margin: 0;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Overview Summary Section */
.overview-summary {
    padding: 60px 0;
    background-color: var(--light-grey);
    text-align: center;
}

.overview-summary h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.overview-summary p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.vision-mission-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.vision-mission-grid .card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    text-align: left;
}

.vision-mission-grid .card h3 {
    color: var(--secondary-blue);
    font-size: 1.5em;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 10px;
}

/* Call to Action Section */
.call-to-action {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.call-to-action h2 {
    color: var(--white);
    font-size: 2.8em;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px 20px;
    font-size: 0.9em;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: var(--light-grey);
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: var(--secondary-blue);
    text-decoration: none;
}

.footer-contact p {
    color: var(--light-grey);
    margin-bottom: 5px;
}

.footer-contact a {
    color: var(--secondary-blue);
}

.footer-bottom {
    border-top: 1px solid var(--dark-grey);
    padding-top: 20px;
    text-align: center;
    color: var(--light-grey);
}

.footer-bottom a {
    color: var(--light-grey);
}

.footer-bottom a:hover {
    color: var(--secondary-blue);
}


/* --- About Us Page Specific Styles --- */
.page-title {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 20px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.page-title h1 {
    font-size: 3em;
    color: var(--white);
}

.about-section {
    padding: 40px 0;
    text-align: justify;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    color: var(--secondary-blue);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.about-text, .about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.lifecycle-section {
    background-color: var(--light-grey);
    padding: 60px 0;
    text-align: center;
}

.lifecycle-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.lifecycle-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.lifecycle-step {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.1em;
}

img { max-width: 100%; height: auto; }
.hero { background: var(--primary-blue); } /* Fallback till images uploaded */

.lifecycle-step img {
    height: 30px; /* Icon size */
    margin-right: 10px;
}

.lifecycle-details {
    text-align: left;
    margin-top: 30px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lifecycle-details ul {
    list-style: none;
}

.lifecycle-details ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.lifecycle-details ul li::before {
    content: '➢'; /* Custom bullet point */
    color: var(--secondary-blue);
    position: absolute;
    left: 0;
}

/* --- Products Page Specific Styles --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 25px;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 1.8em;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.product-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.product-content ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.product-content ul li::before {
    content: '•';
    color: var(--secondary-blue);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.product-content p {
    font-size: 0.95em;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.product-content .btn {
    margin-top: 15px;
    width: auto; /* Ensure button width is content-based */
}

.product-detail-section {
    background-color: var(--light-grey);
    padding: 60px 0;
}

.product-detail-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.detail-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.detail-card h3 {
    color: var(--primary-blue);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.detail-card ul {
    list-style: none;
}

.detail-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95em;
}

.detail-card ul li::before {
    content: '✔'; /* Checkmark bullet */
    color: var(--secondary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.detail-card .image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.detail-card .image-gallery img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid var(--light-blue);
}


/* --- Industries Page Specific Styles --- */
.industries-section {
    padding: 60px 0;
}

.industries-section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 50px;
}

.industry-category {
    background-color: var(--light-grey);
    margin-bottom: 50px;
    padding: 40px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.industry-category:nth-child(even) {
    background-color: var(--white);
}

.industry-category h3 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
    color: var(--secondary-blue);
}

.industry-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.industry-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.industry-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.industry-description {
    flex: 2;
    min-width: 400px;
    text-align: left;
}

.industry-description ul {
    list-style: none;
    margin-top: 20px;
}

.industry-description ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.industry-description ul li::before {
    content: '▶'; /* Right arrow bullet */
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- Contact Page Specific Styles --- */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
}

.contact-card h3 {
    color: var(--secondary-blue);
    font-size: 1.6em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-card h3::before {
    content: '📞'; /* Icon for phone */
    margin-right: 10px;
    font-size: 1.2em;
}

.contact-card.email h3::before {
    content: '✉️'; /* Icon for email */
}

.contact-card.location h3::before {
    content: '📍'; /* Icon for location */
}

.contact-card p, .contact-card a {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1.05em;
}

.contact-card a:hover {
    text-decoration: underline;
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}


 /* Curriculum Grid */
        #curriculum {
        
            max-width: 1100px;
            margin: 2rem auto;
            padding: 0 20px;
        }

        h2 {
            text-align: center;
            color: var(--text-light);
            border-bottom: 2px solid var(--accent-blue);
            display: inline-block;
            margin-bottom: 2rem;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        .week-grid {
        
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        /* Weekly Boxes (Cards) */
        article {
          
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #233554;
            transition: transform 0.3s, border-color 0.3s;
            display: flex;
            flex-direction: column;
        }

        article:hover {
            transform: translateY(-5px);
            border-color: var(--accent-blue);
        }

 /* Other Sections */
        section#projects, section#outcomes {
        
            max-width: 1100px;
            margin: 4rem auto;
            padding: 20px;
            background: var(--card-blue);
            border-radius: 12px;
        }


    
/* Responsive Design */
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav ul li {
        margin: 0 10px 10px 10px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content h2 {
        font-size: 1.4em;
    }

    .hero-image-grid {
        flex-direction: column;
        align-items: center;
    }

    .vision-mission-grid .card {
        max-width: 90%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links a {
        margin-bottom: 10px;
    }

    .about-content, .industry-content-wrapper, .product-detail-grid, .contact-info {
        flex-direction: column;
    }

    .about-text, .about-image, .industry-image, .industry-description, .detail-card, .contact-card {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content h2 {
        font-size: 1.2em;
    }

    .page-title h1 {
        font-size: 2.2em;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .detail-card .image-gallery img {
        width: 120px;
        height: 80px;
    }
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    filter: none !important;
    background: none !important;
}

.vision-story {
    padding: 60px 0;
    background-color: var(--light-grey);
}

.vision-story h2 {
    font-size: 2.2em;
    color: var(--secondary-blue);
    text-align: center;
    margin-bottom: 40px;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.7;
}

.vision-content p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: var(--text-color);
}

.vision-content ul {
    list-style: none;
    margin: 30px 0;
}

.vision-content ul li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.vision-content ul li:before {
    content: "→";
    color: var(--secondary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}
.vision-with-image {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.vision-image-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-text {
    flex: 2;
}

.vision-image {
    flex: 1;
    text-align: center;
}

.team-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.vision-text h2 {
    font-size: 2.4em;
    color: var(--secondary-blue);
    margin-bottom: 30px;
}

.vision-text p {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.7;
}

.vision-text ul li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
}

.vision-text ul li:before {
    
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3em;
}

@media (max-width: 768px) {
    .vision-image-content {
        flex-direction: column;
        gap: 30px;
    }
}




.vision-image {
    flex: 1;
    text-align: center;
    margin-top: 90px;  /* Pushes image down */
}

.team-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(70px);  /* Additional downward shift */
}
