:root {
    --primary-color: #0f4c71;
    --secondary-color: #f9aa33;
    --dark-color: #0a2e42;
    --light-color: #f5f5f5;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #0A1F44;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo .italic {
    font-style: italic;
    color: #f9aa33;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 8px 15px;
}

.navbar-nav .nav-link:hover {
    color: #f9aa33;
}

/* Hero Section */
.hero {
    background: #0A1F44;
    color: white;
    padding: 80px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h4 {
    color: #f9aa33;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.about h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0f4c71;
}

.about img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.who-we-button {
    background-color: #0A1F44;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    margin-right: 15px;
}

.outline {
    background-color: transparent;
    border: 1px solid #0A1F44;
    color: #0A1F44;
    padding: 8px 20px;
    border-radius: 20px;
}

/* Stats Section */
.stats {
    background: #0A1F44;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.stats div {
    padding: 15px;
}

.stats span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Objective Section */
.objective {
    padding: 80px 0;
    text-align: center;
}

.objective h2 {
    font-size: 2.5rem;
    color: #0f4c71;
    margin-bottom: 30px;
}

.excellence-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.excellence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.excellence-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.excellence-card h3 {
    color: #0f4c71;
    margin-bottom: 15px;
}

.value-class-edit {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Approach Section */
.approach {
    padding: 80px 0;
}

.approach img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}

.competencies {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.competencies p {
    font-weight: bold;
    margin-bottom: 20px;
    color: #0A1F44;
}

.competencies ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Differentiators Section */
.differentiators-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.differentiators {
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.differentiators ul {
    columns: 2;
    column-gap: 40px;
}

.differentiators li {
    margin-bottom: 15px;
    break-inside: avoid;
}

.differentiators strong {
    color: #0A1F44;
}

/* Training Domains Section */
.domains-section {
    padding: 80px 0;
}

.domains-left,
.domains-right {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}

.offering-button {
    background-color: #0A1F44;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.offering-list-design {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.offering-list-design:before {
    content: "•";
    color: #0A1F44;
    position: absolute;
    left: 0;
}

.domain-category {
    margin-bottom: 20px;
}

.domain-category strong {
    color: #0A1F44;
}

/* Highlights Section */
.highlights-section {
    padding: 80px 0;
}

.highlights-section img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.highlights-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.highlights-section li {
    margin-bottom: 15px;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.project {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project h3 {
    color: #0A1F44;
    margin-bottom: 10px;
}

.project h4 {
    color: #0A1F44;
    margin-bottom: 15px;
}

.project img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Clientele Section */
.clientele-section {
    padding: 80px 0;
}

.client-logo {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Contact Section 
.contact-section {
    padding: 80px 0;
    background: #0A1F44;
    color: white;
}

.contact-section h2 {
    color: #f9aa33;
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
*/
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #0A1F44;
    font-weight: 500;
}

.submit-btn {
    background-color: #f9aa33;
    color: #0A1F44;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

/* Footer */
footer {
    background: #0A1F44;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Enroll button*/
.enroll-btn {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.enroll-btn:hover {
    background-color: #45a049;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .differentiators ul {
        columns: 1;
    }

    .hero,
    .about {
        text-align: center;
    }

    .who-we-button,
    .outline {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .about h3 {
        font-size: 1.8rem;
    }

    .objective h2,
    .section-title {
        font-size: 2rem;
    }

    .stats span {
        font-size: 2rem;
    }
}