* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy:      #1C2951;
    --navy-dark: #111B38;
    --orange:    #D4521A;
    --orange-lt: #E8663A;
    --green:     #2D4A35;
    --white:     #FFFFFF;
    --grey-bg:   #F5F6F8;
    --grey-text: #666;
    --text:      #1C2951;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Navigation ── */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(28,41,81,0.10);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--orange);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.05em;
}

.logo-name span {
    color: var(--orange);
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

.quote-btn {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.3rem !important;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background 0.25s !important;
}

.quote-btn::after { display: none !important; }

.quote-btn:hover {
    background: var(--orange) !important;
    color: var(--white) !important;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
}

/* ── Hero ── */
.hero {
    background:
        linear-gradient(rgba(17,27,56,0.72), rgba(17,27,56,0.72)),
        url('assets/banner.png');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
    position: relative;
    overflow: hidden;
}

/* diagonal orange accent bar echoing the logo bars */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--orange), var(--green));
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; right: 14px;
    width: 3px;
    height: 100%;
    background: var(--navy-dark);
    opacity: 0.5;
}

.hero-content {
    color: var(--white);
    max-width: 820px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    display: inline-block;
    background: var(--orange);
    padding: 0.4rem 1.1rem;
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.88;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── CTA Buttons ── */
.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: background 0.25s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--orange-lt);
    transform: translateY(-2px);
}

.cta-button-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white) !important;
}

.cta-button-outline:hover {
    background: var(--white);
    color: var(--navy) !important;
    transform: translateY(-2px);
}

.cta-button-light {
    background: var(--white);
    color: var(--navy);
}

.cta-button-light:hover {
    background: var(--grey-bg);
    transform: translateY(-2px);
}

/* ── Stats ── */
.stats-section {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--orange);
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.75;
    margin-top: 0.25rem;
}

/* ── Sections ── */
.section { padding: 5rem 0; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(to right, var(--orange), var(--green));
    margin: 0.6rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--grey-text);
    margin-top: 0.75rem;
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* ── Services ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background: var(--white);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(28,41,81,0.08);
    border-top: 4px solid transparent;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(28,41,81,0.14);
}

.service-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.07);
}

.service-body {
    padding: 1.5rem;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 0.6rem;
}

.service-card h3 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

/* ── Partners ── */
.partners-section { background: var(--grey-bg); }

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.partner-card {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(28,41,81,0.09);
    border-bottom: 3px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 110px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(28,41,81,0.14);
}

.partner-card img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.25s;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* ── Projects ── */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.8rem;
}

.project-card {
    position: relative;
    height: 240px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.35);
    transition: transform 0.4s;
}

.project-card:hover .project-image-placeholder {
    transform: scale(1.05);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}

.project-card:hover .project-img {
    transform: scale(1.06);
}

.project-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(17,27,56,0.92));
    color: var(--white);
    padding: 1.2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.project-overlay h3 { font-size: 1rem; font-weight: 700; }
.project-overlay p  { font-size: 0.8rem; color: var(--orange); margin-top: 2px; }

.project-card:hover .project-overlay { transform: translateY(0); }

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.8rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(28,41,81,0.08);
    border-left: 4px solid var(--orange);
}

.testimonial-quote {
    color: var(--orange);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 46px; height: 46px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author strong { color: var(--navy); }
.testimonial-author p { font-size: 0.82rem; color: var(--grey-text); }

/* ── CTA Band ── */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    color: var(--white);
    text-align: center;
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 5px; height: 100%;
    background: var(--orange);
}

.cta-section h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-section p {
    margin-bottom: 1.8rem;
    opacity: 0.85;
}

/* ── About Intro Section (Homepage) ── */
.about-intro-section { padding: 5rem 0; }

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Footer ── */
.footer-logo {
    max-width: 65px;
    height: auto;
    margin-bottom: 0.75rem;
    display: block;
}

.footer {
    background: var(--navy-dark);
    color: #aab;
    padding: 3.5rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.footer-column .footer-brand-tag {
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.5rem; }

.footer-column a {
    color: #aab;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-column a:hover { color: var(--orange); }

.footer-column p {
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.footer-column p i {
    margin-right: 8px;
    color: var(--orange);
    width: 14px;
}

.social-icons { display: flex; gap: 0.8rem; margin-top: 0.5rem; }

.social-icons a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: background 0.2s;
}

.social-icons a:hover { background: var(--orange); }

.footer-bottom {
    text-align: center;
    padding: 1.2rem 20px;
    font-size: 0.82rem;
    color: rgba(170,170,187,0.6);
}

/* ── Page Header (inner pages) ── */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0 3rem;
    margin-top: 75px;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
}

/* ── Service Page Blocks (services.html) ── */
.service-page-block { padding: 4.5rem 0; }

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.service-page-grid-reverse { direction: rtl; }
.service-page-grid-reverse > * { direction: ltr; }

.service-page-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(28,41,81,0.12);
}

.service-page-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}

.service-page-img:hover img { transform: scale(1.04); }

.service-finance-icon {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255,255,255,0.25);
}

.service-page-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0.5rem 0 1rem;
}

.service-page-content p { color: #444; line-height: 1.75; margin-bottom: 0.5rem; }

.service-features li { margin-bottom: 0.6rem; font-size: 0.93rem; color: #333; }
.service-features i { color: var(--green); margin-right: 8px; }

/* ── About Page Mini Stats ── */
.stats-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.stats-mini-item {
    background: var(--white);
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    border-bottom: 3px solid var(--orange);
    box-shadow: 0 2px 8px rgba(28,41,81,0.07);
}

.stats-mini-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.stats-mini-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-text);
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .service-page-grid { grid-template-columns: 1fr; gap: 2rem; }
    .service-page-grid-reverse { direction: ltr; }
    .service-page-img img,
    .service-finance-icon { height: 220px; }
    .stats-mini-grid { grid-template-columns: 1fr 1fr; }
}

/* ── About Page ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-card {
    background: var(--grey-bg);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    border-bottom: 4px solid var(--orange);
}

.about-icon-large {
    font-size: 7rem;
    color: var(--navy);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.8rem;
}

.choose-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(28,41,81,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choose-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.choose-card-img-wrap {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.choose-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.mission-card {
    background: var(--grey-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.mission-card i {
    font-size: 2rem;
    color: var(--orange);
    margin-right: 10px;
}

/* ── Services Detail ── */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(28,41,81,0.08);
    border-top: 4px solid var(--navy);
}

.service-icon-large {
    font-size: 2.8rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.service-features { list-style: none; margin-top: 1rem; }
.service-features li { margin-bottom: 0.5rem; font-size: 0.92rem; }
.service-features i { color: var(--green); margin-right: 8px; }

/* ── Projects Page ── */
.projects-complete-grid { display: grid; gap: 2rem; }

.project-category {
    background: var(--grey-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--navy);
}

.project-category h3 {
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 700;
}

.project-list { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.project-tag {
    background: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.88rem;
    box-shadow: 0 2px 6px rgba(28,41,81,0.07);
    color: var(--navy);
}

.ongoing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ongoing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(28,41,81,0.08);
}

.ongoing-icon { font-size: 3rem; color: var(--orange); margin-bottom: 1rem; }

.project-status {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    margin: 0.5rem;
    font-weight: 600;
}

.status-ongoing  { background: var(--orange); color: var(--white); }
.status-upcoming { background: var(--green);  color: var(--white); }

.project-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.partners-showcase {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.partner-logo {
    background: var(--grey-bg);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    border-bottom: 3px solid var(--green);
}

.channel-note {
    background: var(--navy);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

/* ── Contact Page ── */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-item i {
    font-size: 1.4rem;
    color: var(--orange);
    margin-top: 0.2rem;
}

.contact-form-container {
    background: var(--grey-bg);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1.5px solid #dde;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--navy);
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--orange);
}

.contact-form button {
    width: 100%;
    padding: 0.85rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.25s;
}

.contact-form button:hover { background: var(--orange); }

.text-center { text-align: center; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .mobile-menu { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 75px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 8px 16px rgba(28,41,81,0.12);
        border-top: 2px solid var(--orange);
    }

    .nav-links.active { display: flex; }

    .hero-content h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .about-grid,
    .contact-page-grid { grid-template-columns: 1fr; }

    .section-title { font-size: 1.8rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; }
}