/* Modern Reset & Variables */
:root {
    --primary-color: #002b55;
    /* Deep Navy */
    --accent-color: #c5a059;
    /* Elegant Gold */
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --white: #ffffff;
    --off-white: #f9f9f9;
    /* Cleaner light gray */
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    /* More side padding */
}

/* Header & Nav */
header {
    background: var(--white);
    /* Solid White */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav a {
    color: var(--primary-color);
    /* Dark Navy for visibility on white */
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav a:hover,
nav a:hover::after {
    color: var(--accent-color);
    width: 100%;
}

/* Hero Section */
.hero {
    /* Removed blue overlay, effectively pure image now */
    background: url('../assets/images/index_ap2.jpg');
    background-size: cover;
    background-position: center bottom;
    /* Focus on lower part if sky is top */
    background-attachment: scroll;
    /* Fixed can cause mobile issues, scroll is safer */
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Optional soft gradient only at the very bottom or top if text needs it, 
   but we are using a text-box approach instead */

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    /* White box */
    padding: 60px;
    max-width: 600px;
    margin-left: 10%;
    /* Left aligned like corporate sites */
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
    text-align: left;
    /* Reset alignment */
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--primary-color);
    /* Navy for primary button */
    color: var(--white);
    border-radius: 4px;
    /* Slightly rounded square - more corporate */
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Sections Common */
section {
    padding: 120px 0;
    /* More vertical breathing room */
}

.bg-light {
    background-color: var(--off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* Wider gap for balance */
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2rem;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    /* Ensure responsiveness */
    display: block;
}

/* Cards (Services & Investors) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--accent-color);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
    padding: 15px;
    background: var(--off-white);
    border-radius: 50%;
    color: var(--primary-color);
}

.resource-list li {
    margin-bottom: 12px;
    list-style: none;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--off-white);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.resource-link:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #0b1118;
    color: #889097;
    padding: 80px 0 30px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-info li a {
    color: var(--white);
    opacity: 0.8;
}

.contact-info li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* PDF Viewer Overlay */
.pdf-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.pdf-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.pdf-header {
    height: 60px;
    background: #1a1a1a;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 30px;
}

.btn-close {
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.pdf-container {
    flex: 1;
    width: 100%;
    height: calc(100% - 60px);
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   SUBPAGE STYLES
   ========================================= */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2547 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: white !important;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Sub Navigation */
.sub-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.sub-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    overflow-x: auto;
    padding: 15px 0;
    margin: 0;
}

.sub-nav a {
    white-space: nowrap;
    padding: 8px 16px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sub-nav a:hover {
    background: var(--primary-color);
    color: white;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section.bg-light {
    background: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.subsection-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

/* Content Text */
.content-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1em;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-text li {
    margin-bottom: 10px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 20px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
}

/* CTA Box */
.cta-box {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.cta-box p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.cta-box a {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 5px;
    box-shadow: var(--shadow-sm);
}

.cta-box a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Vision Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vision-box,
.mission-box {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.vision-box h3,
.mission-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid white;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-card .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.cert-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary-color);
}

.cert-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Awards List */
.awards-list {
    max-width: 800px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.award-year {
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.award-title {
    flex: 1;
    font-weight: 600;
}

.award-org {
    color: #666;
    font-size: 0.9rem;
}

/* Business Segments */
.business-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.segment-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2547 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.segment-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: white !important;
}

.segment-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0;
}

.segment-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* Services Grid */
.services-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-color);
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 5px solid var(--secondary-color);
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Sustainability Grid */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.sustainability-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.sustainability-item .icon {
    font-size: 2rem;
}

/* Project List */
.project-list {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 40px;
}

.project-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    break-inside: avoid;
}

/* Customers Grid */
.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.customer-logo {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.office-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.office-card h3 {
    margin-bottom: 15px;
}

/* Strengths Grid */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.strength-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.strength-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* News List */
.news-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.news-date {
    background: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-title {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 500;
}

.news-title:hover {
    color: var(--secondary-color);
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.document-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.doc-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.document-card h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Results Table */
.results-table {
    overflow-x: auto;
}

.results-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.results-table th,
.results-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.results-table th {
    background: var(--primary-color);
    color: white;
}

.results-table tr:hover {
    background: #f8f9fa;
}

/* Documents List */
.documents-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* IR Contact */
.ir-contact-info {
    max-width: 500px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Training Courses */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.course-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2547 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.course-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Programs List */
.programs-list {
    max-width: 800px;
    margin: 0 auto;
}

.program-item {
    background: white;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.program-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Fees Table */
.fees-table {
    overflow-x: auto;
    margin: 30px 0;
}

.fees-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.fees-table th,
.fees-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.fees-table th {
    background: var(--primary-color);
    color: white;
}

/* Learning Outcomes */
.learning-outcomes {
    display: grid;
    gap: 15px;
    max-width: 800px;
    margin: 30px auto;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.outcome-number {
    background: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Price Box */
.price-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
}

.price-box .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-box .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

/* Contact Box */
.contact-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

/* Career Values */
.career-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

/* Job Listings */
.job-listings {
    max-width: 800px;
    margin: 0 auto;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.job-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.job-card .department {
    color: #666;
    margin-bottom: 5px;
}

.job-card .location {
    font-size: 0.9rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-details {
    display: grid;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Departments Grid */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.department-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.department-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Quick Contact Buttons */
.quick-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-email {
    background: var(--primary-color);
    color: white;
}

.btn-phone {
    background: var(--secondary-color);
    color: white;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #0f2547;
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #c9a227;
}

/* Notes */
.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Lead Text */
.lead-text {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* Tagline Box */
.tagline-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2547 100%);
    color: white;
    border-radius: 12px;
    margin-top: 40px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 10px;
}

/* Application CTA */
.application-cta {
    text-align: center;
    margin: 30px 0;
}

.general-application {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-hr {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

/* General Enquiry Note */
.general-enquiry-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

/* Video Placeholder */
.video-placeholder {
    background: #f0f0f0;
    padding: 60px;
    text-align: center;
    border-radius: 12px;
    color: #666;
}

/* Structure Image */
.structure-image {
    text-align: center;
}

.structure-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.structure-note {
    margin-top: 20px;
    color: #666;
}

/* =========================================
   RESPONSIVE STYLES
   ========================================= */

@media (max-width: 992px) {
    .project-list {
        columns: 1;
    }

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

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        padding-bottom: 10px;
    }

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

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .page-hero h1 {
        font-size: 2rem;
    }

    .sub-nav ul {
        gap: 5px;
    }

    .sub-nav a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .job-card {
        flex-direction: column;
        text-align: center;
    }

    .award-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .timeline-item::before {
        left: -24px;
    }
}