/* style.css */

:root {
    --color-maroon: #921414;
    /* primary heading/text red, matches the logo wordmark */
    --color-maroon-dark: #7a1010;
    --color-red-accent: #e4212c;
    /* vivid red from the logo swirl */
    --color-orange-accent: #f0982e;
    /* orange from the logo swirl */
    --color-gray: #808184;
    /* matches "builders & developers" gray in the logo */
    --color-gray-dark: #58595b;
}

body {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #000000;
    background-color: #F4F4F4;
}

body.page-home {
    /* Same photo used in the hero, now as the backdrop for the ENTIRE home
       page (mission + managing partner sections included), with a dark tint
       so text stays readable over it all the way down. Scrolls with the
       page (not fixed), sized to the full page height, so the whole photo
       — top to bottom — is revealed as you scroll instead of staying
       pinned on one crop. This is the ONLY place the image is drawn on the
       home page — sections below (.hero, .company-intro, .ceo-profile) stay
       transparent so there's just one continuous photo, not several
       overlapping copies. */
    background: linear-gradient(rgba(20, 12, 12, 0.55), rgba(20, 12, 12, 0.55)), url("../images/home_bg.jpeg") center top/cover no-repeat;
}

/* Header and footer go transparent on the home page only, so the same photo
   shows through them too. Other pages (About/Services/Contact) keep the
   normal white header/footer since they don't have the photo background. */
body.page-home .main-header {
    background-color: transparent;
    box-shadow: none;
}

body.page-home .main-nav a {
    color: #ffffff;
}

body.page-home .main-nav a:hover {
    color: var(--color-red-accent);
}

body.page-home .nav-toggle {
    color: #ffffff;
}

body.page-home .logo img {
    height: 170px;
}

@media (max-width: 768px) {
    body.page-home .logo img {
        height: 90px;
    }
}

body.page-home footer {
    background-color: transparent;
    color: #ffffff;
}

body.page-home .company-quote {
    color: #ffffff;
}

body.page-home .socials-container a {
    color: #ffffff;
}

body.page-home .socials-container a:hover {
    color: var(--color-red-accent);
}

/* Header and Navigation Styling */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #FFFFFF;
    /* White background for header */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.main-nav a {
    color: var(--color-maroon);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--color-maroon-dark);
}

/* Generic Styling for Pages */
h1,
h2,
h3 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    color: var(--color-maroon);
    /* Use the dark red for headings */
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.7rem;
}

main {
    padding: 20px;
}

/* Flash Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.whatsapp-cta {
    text-align: center;
    margin: 1.5rem 0;
}

.whatsapp-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 0.8rem 1.4rem;
    border-radius: 4px;
}

.whatsapp-cta a:hover {
    background-color: #1da851;
}

/* Contact page — two-column layout */
.contact-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    align-items: flex-start;
}

.contact-info-col {
    flex: 1;
    min-width: 300px;
}

.contact-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: var(--color-maroon);
    margin: 0 0 1rem;
}

.contact-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.contact-heading-accent {
    color: var(--color-red-accent);
}

.contact-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #555;
    max-width: 420px;
    margin: 0 0 2rem;
}

.whatsapp-direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 0.9rem 1.6rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
    transition: background-color 0.15s ease;
}

.whatsapp-direct-btn:hover {
    background-color: #1da851;
}

.contact-info-list {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #333;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
}

.contact-info-item i {
    color: var(--color-maroon);
    width: 18px;
    text-align: center;
}

.contact-info-item:hover {
    color: var(--color-maroon);
}

.contact-info-address {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #333;
    margin: 0.3rem 0 0 26px;
    line-height: 1.5;
}

.contact-form-col {
    flex: 1;
    min-width: 320px;
    background-color: #f4f1ee;
    border-radius: 12px;
    padding: 2.5rem;
    box-sizing: border-box;
}

.modern-form-group {
    margin-bottom: 1.8rem;
}

.modern-form-group label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #777;
    margin-bottom: 0.6rem;
}

.modern-form-group input,
.modern-form-group select,
.modern-form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #bbb;
    background: transparent;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #222;
    outline: none;
}

.modern-form-group input:focus,
.modern-form-group select:focus,
.modern-form-group textarea:focus {
    border-bottom-color: var(--color-maroon);
}

.modern-form-group textarea {
    resize: vertical;
}

.modern-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-maroon);
    color: #ffffff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 1rem 1.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.modern-form-submit:hover {
    background-color: var(--color-maroon-dark);
}

@media (max-width: 900px) {
    .contact-page-grid {
        flex-direction: column;
    }

    .contact-heading {
        font-size: 2.6rem;
    }
}

/* Contact Form and Login Form Styling */
.contact-container,
.login-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: #921414;
    /* Use the dark red for buttons */
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button[type="submit"]:hover {
    background-color: #7a1010;
}

/* Project Item Styling */
.project-item {
    display: flex;
    gap: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.project-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

footer {
    background-color: #fff;
    color: #7a1010;
    padding: 2rem 5%;
    text-align: center;
    margin-top: 40px;
    font-size: 1.25rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: left;
    flex: 1;
    min-width: 240px;
}

.footer-heading {
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.footer-address {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.footer-address:hover {
    text-decoration: underline;
}

.footer-map {
    width: 100%;
    max-width: 280px;
    height: 160px;
    border: 0;
    border-radius: 8px;
    display: block;
}

.footer-areas-served {
    max-width: 280px;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.footer-contact-links {
    margin: 0.4rem 0;
    font-weight: 600;
}

.footer-contact-links a {
    color: inherit;
    text-decoration: none;
}

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

.footer-logo {
    height: 100px;
    /* Adjust size as needed */
    margin-bottom: 10px;
}

.company-quote {
    font-style: italic;
    margin: 0;
    font-size: 1.1rem;
    color: #7a1010;
    /* Your accent color */
}

.footer-right {
    text-align: right;
}

.footer-phones {
    margin: 0.4rem 0;
    font-weight: 600;
}

.footer-phones a {
    color: inherit;
    text-decoration: none;
}

.footer-phones a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        width: 100%;
    }

    .footer-map {
        max-width: 100%;
        margin: 0 auto;
    }
}

.socials-container a {
    color: #7a1010;
    text-decoration: none;
    margin-left: 15px;
    font-size: 1.9rem;
}

.socials-container a:hover {
    color: #ccc;
    /* Hover effect */
}

/* Chatbot Icon Styling */
#chat-icon-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: var(--color-maroon);
    color: white;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#chat-icon-button:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.chatbot-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-container {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 330px;
    height: 460px;
    border: none;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.97);
    transform-origin: bottom right;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.chatbot-container.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chatbot-header {
    background-color: var(--color-maroon);
    background-image: linear-gradient(135deg, var(--color-maroon), var(--color-maroon-dark));
    color: white;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    flex-shrink: 0;
}

.chatbot-header-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    object-fit: contain;
    padding: 3px;
    flex-shrink: 0;
}

.chatbot-header-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.chatbot-header-title {
    font-weight: 700;
    font-size: 1rem;
}

.chatbot-header-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.chatbot-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #4ade80;
    display: inline-block;
}

.chatbot-messages {
    flex-grow: 1;
    padding: 14px;
    overflow-y: auto;
    background-color: #f7f5f3;
    display: flex;
    flex-direction: column;
}

.chatbot-input {
    border-top: 1px solid #eee;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    flex-shrink: 0;
    box-sizing: border-box;
}

.chatbot-input input {
    flex: 1;
    min-width: 0;
    width: auto;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    box-sizing: border-box;
    outline: none;
}

.chatbot-input input:focus {
    border-color: var(--color-maroon);
}

#chat-send-button {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-maroon);
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
}

#chat-send-button:hover {
    background-color: var(--color-maroon-dark);
}

.message {
    margin-bottom: 10px;
    padding: 9px 13px;
    border-radius: 16px;
    max-width: 82%;
    font-size: 0.9rem;
    line-height: 1.45;
    animation: chat-message-in 0.18s ease;
}

@keyframes chat-message-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

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

.message.user {
    background-color: var(--color-maroon);
    color: #ffffff;
    text-align: left;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message.bot {
    background-color: #ffffff;
    color: #333333;
    text-align: left;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.message.bot.typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 14px;
}

.message.bot.typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #b3aeae;
    display: inline-block;
    animation: chat-typing-bounce 1.1s infinite ease-in-out;
}

.message.bot.typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.message.bot.typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes chat-typing-bounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

.chatbot-quick-replies {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 10px;
    align-self: stretch;
}

.chatbot-option-btn {
    background-color: #ffffff;
    border: 1px solid var(--color-maroon);
    color: var(--color-maroon);
    border-radius: 20px;
    padding: 9px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.chatbot-option-btn:hover {
    background-color: var(--color-maroon);
    color: #ffffff;
    transform: translateX(2px);
}

.chatbot-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

#close-chatbot-button {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    position: absolute;
    right: 12px;
    top: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#close-chatbot-button:hover {
    background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 480px) {
    .chatbot-container {
        width: calc(100vw - 24px);
        right: 12px;
        bottom: 12px;
        height: 65vh;
    }

    .chatbot-wrapper {
        right: 12px;
        bottom: 12px;
    }
}

.projects-landing {
    text-align: center;
    padding: 3rem 0;
}

.projects-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.project-category {
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease;
}

.project-category:hover {
    transform: translateY(-5px);
}

.ongoing-projects-card {
    background-color: lightgray;
    border-left: 5px solid #7a1010;
}

.past-projects-card {
    background-color: lightgray;
    border-left: 5px solid #7a1010;
}

/* Services / Projects page — hero + current & past project rows */
.projects-hero {
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    border-bottom: 1px solid #ddd;
}

.projects-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-maroon);
    margin: 0 0 1rem;
    flex-basis: 100%;
}

.projects-heading {
    font-size: 4.5rem;
    line-height: 1.05;
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.projects-heading-accent {
    color: var(--color-red-accent);
}

.projects-hero-desc {
    max-width: 320px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    color: #555;
    text-align: left;
    margin: 0;
}

.projects-list-section {
    padding: 3rem 2rem;
}

.projects-section-title {
    margin-bottom: 1.5rem;
}

.projects-rows {
    display: flex;
    flex-direction: column;
}

.project-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 0;
    border-top: 1px solid #ddd;
}

.projects-rows .project-row:last-child {
    border-bottom: 1px solid #ddd;
}

.project-row-number {
    font-weight: 700;
    color: var(--color-maroon);
    font-size: 1rem;
    flex-shrink: 0;
    width: 30px;
}

.project-row-main {
    flex: 1;
    min-width: 180px;
}

.project-row-main h3 {
    margin: 0 0 0.3rem;
    font-size: 1.5rem;
}

.project-row-location {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    color: #888;
    margin: 0;
}

.project-row-status {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
}

.project-row-status-ongoing {
    background-color: #fdecea;
    color: var(--color-maroon);
}

.project-row-status-past {
    background-color: #eaf5ec;
    color: #2f7d43;
}

.project-row-link {
    flex-shrink: 0;
    color: var(--color-maroon);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-row-link:hover {
    text-decoration: underline;
}

.projects-empty {
    color: #777;
    font-style: italic;
}

@media (max-width: 768px) {
    .projects-heading {
        font-size: 2.6rem;
    }

    .project-row {
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
    }

    .project-row-main {
        flex-basis: 100%;
        order: 1;
    }

    .project-row-number {
        order: 0;
    }

    .project-row-status {
        order: 2;
    }

    .project-row-link {
        order: 3;
        margin-left: auto;
    }
}

/* Project detail page */
.project-detail-page {
    padding: 2.5rem 2rem 4rem;
    max-width: 900px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-maroon);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: gap 0.2s ease, color 0.2s ease;
}

.back-link:hover {
    gap: 0.7rem;
    color: var(--color-maroon-dark);
    text-decoration: underline;
}

.project-detail-title {
    margin-bottom: 2.8rem;
}

.project-detail-name {
    font-size: 3.8rem;
    margin: 0.9rem 0 0.7rem;
    color: var(--color-maroon);
    letter-spacing: -0.5px;
}

.project-detail-address {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 1.15rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.project-detail-address:hover {
    color: var(--color-maroon);
    border-bottom-color: var(--color-maroon);
    transform: translateX(3px);
}

.project-detail-address i {
    color: var(--color-maroon);
}

.project-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
    margin-bottom: 2.8rem;
}

.project-photo-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-photo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.project-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 420px;
    display: block;
    transition: transform 0.5s ease;
}

.project-photo-item:hover img {
    transform: scale(1.06);
}

.project-photo-expand-hint {
    position: absolute;
    bottom: 0.7rem;
    right: 0.7rem;
    background-color: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    padding: 0.45rem 0.8rem;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.project-photo-item:hover .project-photo-expand-hint {
    opacity: 1;
    transform: translateY(0);
}

.project-spec-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    margin-bottom: 2.8rem;
}

.project-spec-item {
    flex: 1;
    min-width: 140px;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 1.4rem 1.5rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.project-spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.project-spec-number {
    display: block;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 2.3rem;
    color: var(--color-maroon);
}

.project-spec-label {
    display: block;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.35rem;
}

.project-progress-bar {
    margin-top: 0.8rem;
    height: 7px;
    border-radius: 4px;
    background-color: #e2d9d9;
    overflow: hidden;
}

.project-progress-bar-fill {
    height: 100%;
    background-color: var(--color-maroon);
    border-radius: 4px;
    transition: width 1.2s ease;
}

.project-detail-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 2.8rem;
}

.project-highlights-section {
    margin-bottom: 2.8rem;
}

.project-highlights-heading {
    font-size: 1.9rem;
    color: var(--color-maroon);
    margin-bottom: 1.3rem;
}

.project-highlights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
}

.project-highlight-card {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ece5e5;
    border-radius: 12px;
    padding: 1.7rem 1.3rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
    border-color: var(--color-orange-accent);
}

.project-highlight-card i {
    font-size: 1.8rem;
    color: var(--color-orange-accent);
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.project-highlight-card:hover i {
    transform: scale(1.15) rotate(-4deg);
}

.project-highlight-value {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 1.45rem;
    color: #222;
}

.project-highlight-label {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.35rem;
}

.key-highlights-section {
    margin-bottom: 2.8rem;
}

.key-highlights-subtext {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 1rem;
    margin: -0.6rem 0 1.3rem;
}

.key-highlights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.key-highlight-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #fff;
    border: 1px solid #ece5e5;
    border-radius: 30px;
    padding: 0.8rem 1.3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: #333;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.key-highlight-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(228, 33, 44, 0.18), transparent);
    transition: left 0.6s ease;
}

.key-highlight-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
    border-color: var(--color-red-accent);
    color: var(--color-maroon);
}

.key-highlight-badge:hover::before {
    left: 120%;
}

.key-highlight-badge i {
    color: var(--color-red-accent);
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}

.key-highlight-badge:hover i {
    transform: scale(1.2) rotate(-6deg);
}

.photo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.photo-lightbox.open {
    display: flex;
    opacity: 1;
}

.photo-lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    transform: scale(0.92);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.photo-lightbox.open img {
    transform: scale(1);
}

.photo-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.photo-lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--color-orange-accent);
}

.project-detail-cta {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 3.4rem 2rem;
}

.project-detail-cta h2 {
    margin-top: 0;
    font-size: 2.1rem;
}

.project-detail-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.6rem;
}

.project-detail-cta .hero-cta {
    margin: 0 0.6rem 0.6rem 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.project-detail-cta .hero-cta:hover {
    transform: translateY(-3px);
}

.project-detail-cta .whatsapp-direct-btn {
    margin: 0 0.6rem 0.6rem 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-detail-cta .whatsapp-direct-btn:hover {
    transform: translateY(-3px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 5% 4rem;
    box-sizing: border-box;
    text-align: left;
    color: #ffffff;
    overflow: hidden;
    /* No background here on purpose — body.page-home already draws the photo
       and dark tint behind the whole page, including this section. */
    background: transparent;
}

.hero-inner {
    max-width: 800px;
}

.hero-location {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-orange-accent);
    margin: 0 0 1.5rem;
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 1.5rem;
    color: #ffffff;
}

.hero-heading .hero-accent {
    color: #ffffff;
}

.hero-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 520px;
    margin: 0 0 2.5rem;
    color: #f0f0f0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-maroon);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 1.1rem 1.8rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hero-cta:hover {
    background-color: var(--color-maroon-dark);
}

.hero-scroll-cue {
    position: absolute;
    right: 5%;
    bottom: 2rem;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 4rem 6% 3rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.05rem;
    }

    .hero-scroll-cue {
        display: none;
    }

    .logo img {
        height: 60px;
    }
}

.company-intro,
.ceo-profile {
    padding: 4rem 2rem;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.profile-card {
    font-size: large;
    display: block;
    /* Change from flex to block for text-only */
    text-align: center;
    /* Center the content */
    padding: 4rem;
}

.profile-details h3 {
    font-size: 3.2rem;
    color: #ffffff;
}

.ceo-position {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.35rem;
    margin-top: 5px;
}

.company-intro p,
.ceo-description {
    color: #ffffff;
    font-size: 1.35rem;
}

.co-partner-name {
    font-size: 0.75em;
    opacity: 0.85;
}

.company-intro h2 {
    font-size: 3rem;
    color: #ffffff;
}

.company-intro p {
    font-size: 1.55rem;
}

.section-cta-link {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--color-maroon);
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.section-cta-link:hover {
    background-color: var(--color-maroon);
    color: #ffffff;
}

.areas-served-section {
    padding: 3.5rem 2rem 4.5rem;
    text-align: center;
}

.areas-served-section h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.areas-served-subtext {
    font-family: 'Inter', sans-serif;
    color: #f0f0f0;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.areas-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
}

.area-chip {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.area-chip:hover {
    transform: translateY(-4px);
    background-color: var(--color-maroon);
    border-color: var(--color-maroon);
}

/* About Us Page Specific Styling */

/* Hero Section */
.about-us-hero {
    /* Temporary brand-color background until a real project photo is supplied.
       To switch to a photo later: save it as static/images/about-hero-bg.jpg
       and replace the line below with:
       background-image: url("../images/about-hero-bg.jpg"); */
    background: linear-gradient(135deg, #921414 0%, #3a0505 100%);
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    /* Shorter than homepage hero — min-height so it grows if the quote wraps to more lines */
    padding: 3rem 1.5rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    /* overflow intentionally not hidden — clipped text on narrow screens otherwise */
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay for text readability */
    padding: 2rem 4rem;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about-us-hero {
        padding: 2.5rem 1rem;
    }

    .hero-overlay {
        padding: 1.5rem 1.25rem;
    }
}

.about-us-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.about-us-hero p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* General Section Styling */
.about-section,
.mission-vision-values,
.leadership-section,
.quality-commitment {
    padding: 5rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.about-section h2,
.mission-vision-values h3,
.leadership-section h2,
.quality-commitment h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Mission, Vision, Values */
.mission-vision-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    background-color: #f9f9f9;
    border-bottom: none;
    /* No border for this one */
}

.m-v-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.m-v-item h3 {
    color: #921414;
    /* Your brand color */
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.m-v-item p,
.m-v-item ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.m-v-item ul {
    list-style-type: disc;
    padding-left: 20px;
}

.m-v-item li {
    margin-bottom: 10px;
}

/* Leadership Section */
.leadership-section {
    background-color: #ffffff;
}


.leader-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}


.leader-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

/* Quality Commitment Section */
.quality-commitment {
    background-color: #f9f9f9;
    border-bottom: none;
}

.quality-commitment h2 {
    color: #921414;
    /* Your brand color */
}

.quality-commitment p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #444;
}

/* Our Story quote, stats, values, testimonials, CTA — About page */
.about-hero-quote {
    font-style: italic;
}

.about-stats {
    text-align: center;
    padding: 3rem 2rem;
}

.stats-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    border: 2px solid var(--color-maroon);
    border-radius: 12px;
    padding: 1.5rem 3rem;
}

.stat-number {
    font-weight: bold;
    font-size: 3rem;
    color: var(--color-maroon);
    line-height: 1;
}

.stat-label {
    margin-top: 0.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.values-intro {
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.values-list {
    list-style: none;
    padding: 0;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.values-list li {
    background-color: #ffffff;
    border-left: 4px solid var(--color-maroon);
    border-radius: 6px;
    padding: 1.1rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.values-list li strong {
    color: var(--color-maroon);
}

.testimonials-section {
    padding: 5rem 2rem;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.3rem;
    max-width: 1100px;
    margin: 2rem auto 0;
    text-align: left;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #ece5e5;
    border-radius: 14px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
    color: var(--color-orange-accent);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: block;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin: 0 0 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-card.expanded .testimonial-text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.testimonial-toggle {
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--color-maroon);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1.1rem;
}

.testimonial-toggle:hover {
    text-decoration: underline;
}

.testimonial-footer {
    margin-top: auto;
    border-top: 1px solid #f0eae9;
    padding-top: 0.9rem;
}

.testimonial-author {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-maroon);
    margin: 0;
}

.testimonial-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin: 0.2rem 0 0;
}

.about-cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #ffffff;
}

.about-cta-button {
    margin-bottom: 2rem;
}

.about-cta-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.05rem;
}

.about-cta-links a {
    color: var(--color-maroon);
    text-decoration: none;
    font-weight: 600;
}

.about-cta-links a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us-hero h1 {
        font-size: 2.5rem;
    }

    .about-us-hero p {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem 1.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .about-section h2,
    .mission-vision-values h3,
    .leadership-section h2,
    .quality-commitment h2 {
        font-size: 2rem;
    }

    .m-v-item {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* Leadership Section (No Image Layout) */
.leader-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    /* Ensures all text is centered */
}

.leader-card .leader-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #921414;
    margin-bottom: 1.5rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #921414;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-header {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 0.75rem 0;
        border-top: 1px solid #eee;
    }
}

/* Footer copyright bar */
.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 2rem 0 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* FAQ page */
.faq-page {
    padding: 2.5rem 2rem 4rem;
    max-width: 800px;
}

.faq-heading {
    font-size: 3rem;
    color: var(--color-maroon);
    margin: 0 0 1rem;
}

.faq-subtext {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 3.5rem;
}

.faq-item {
    border: 1px solid #ece5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
    border-color: var(--color-red-accent);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #222;
    padding: 1.2rem 1.4rem;
    cursor: pointer;
}

.faq-item.open .faq-question {
    color: var(--color-maroon);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-red-accent);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    padding: 0 1.4rem 1.3rem;
}

.faq-cta {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 3rem 2rem;
}

.faq-cta h2 {
    margin-top: 0;
    font-size: 2rem;
}

.faq-cta .whatsapp-direct-btn {
    margin: 0 0.6rem 0.6rem 0;
}

.faq-cta .hero-cta {
    margin: 0 0.6rem 0.6rem 0;
}

/* Mobile sizing for headings added later that were missing it */
@media (max-width: 768px) {
    .profile-details h3 {
        font-size: 2.2rem;
    }

    .company-intro h2 {
        font-size: 2.2rem;
    }

    .company-intro p {
        font-size: 1.15rem;
    }

    .areas-served-section h2 {
        font-size: 2.2rem;
    }

    .areas-served-section {
        padding: 2.5rem 1.5rem 3rem;
    }

    .project-detail-name {
        font-size: 2.3rem;
    }

    .project-detail-page {
        padding: 2rem 1.25rem 3rem;
    }

    .faq-heading {
        font-size: 2.2rem;
    }

    .faq-page {
        padding: 2rem 1.25rem 3rem;
    }

    .key-highlights-heading,
    .project-highlights-heading {
        font-size: 1.5rem;
    }

    .testimonials-section h2 {
        font-size: 2rem;
    }
}

/* No other changes needed! */