:root {
    /* Color Palette */
    --primary-color: #0f233a;
    /* Deep Navy */
    --secondary-color: #1e3a5f;
    /* Lighter Navy */
    --accent-color: #ff5e14;
    /* Orange */
    --accent-hover: #e04d0b;
    --text-dark: #222222;
    --text-gray: #555555;
    --text-light: #ffffff;
    --bg-light: #f4f7f9;
    --bg-white: #ffffff;

    /* Typography */
    --font-main: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
    --border-radius: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 4px;
    /* Squared style like reference */
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 6px rgba(255, 94, 20, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary-light {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--bg-white);
}

.btn-secondary-light:hover {
    background-color: transparent;
    color: var(--bg-white);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--secondary-color);
    border: 2px solid var(--bg-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--bg-white);
}


/* --- Header --- */
.header {
    background-color: #000000;
    /* Black background */
    color: var(--text-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    /* White logo text */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--accent-color);
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 85vh;
    /* Taller hero */
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/background.webp') no-repeat center center/cover;
    color: var(--text-light);
    padding: 0;
    margin-top: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 2px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* --- Section Global --- */
.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    padding-top: 60px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 60px;
}

/* --- Services Section --- */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--accent-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--secondary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--accent-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* --- Why Choose Us --- */
.why-choose-us {
    background-color: var(--bg-white);
    margin-top: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.placeholder-img {
    background-color: #ddd;
    height: 400px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../images/placeholder.jpg');
    background-size: cover;
    background-position: center;
}

.placeholder-img i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.why-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 40px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- Stats Banner --- */
.stats-banner {
    background-color: var(--secondary-color);
    /* The blue banner */
    color: white;
    text-align: center;
    padding: 60px 20px;
    /* Slight gradient overlay */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-top: 60px;
}

.stats-content i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stats-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stats-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Recent Work --- */
.badge-center {
    display: block;
    text-align: center;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.work-item {
    aspect-ratio: 4/3;
    background-color: #ddd;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover img {
    transform: scale(1.1);
}

.center-btn {
    text-align: center;
}

/* --- CTA Footer --- */
.cta-footer {
    padding: 0;
    margin-top: 80px;
    position: relative;
    background-color: var(--primary-color);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(15, 35, 58, 0.9), rgba(15, 35, 58, 0.9)), url('https://placehold.co/1920x600?text=Blueprint') center/cover;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* --- Footer --- */
.main-footer {
    background-color: #111;
    color: #ccc;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 50px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background-color: var(--accent-color);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .why-grid-alt {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .why-grid-alt .why-image-alt {
        order: -1;
    }
}

/* --- Services Page Specifics --- */
.page-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(15, 35, 58, 0.85), rgba(15, 35, 58, 0.85)), url('../images/services-background.jpg') center/cover;
    color: white;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.back-link {
    color: #bbb;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.back-link:hover {
    color: var(--accent-color);
}

.page-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    color: #ddd;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-item i {
    color: #ffd700;
    /* Gold icon */
}

/* Services Page Body */
.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Why Choose Alt (Text Left, Image Right) */
.why-choose-alt {
    padding: 80px 0;
    background-color: #f0f4f8;
    /* Very light blue/gray */
}

.why-grid-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Text left, Image right */
    gap: 60px;
    align-items: center;
}

.why-content-alt h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-content-alt p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.feature-list-alt li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feat-icon-alt {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    background-color: var(--primary-color);
    /* Darker icon bg */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Specific colors for icons to match image variety if needed,
   using a generic class for now but could target nth-child */
.feature-list-alt li:nth-child(2) .feat-icon-alt {
    background-color: var(--accent-color);
}

.feature-list-alt li:nth-child(3) .feat-icon-alt {
    background-color: #4CAF50;
}

/* Green */
.feature-list-alt li:nth-child(4) .feat-icon-alt {
    background-color: #FFC107;
    color: #333;
}

/* Yellow */

.why-image-alt img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- About Page Specifics --- */
.about-hero {
    background: linear-gradient(rgba(15, 35, 58, 0.85), rgba(15, 35, 58, 0.85)), url('../images/aboutus-background.webp') center/cover;
}

.about-story-section {
    padding-bottom: 40px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.text-left {
    text-align: left;
}

/* Value Icons Row */
.value-icons-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.value-item {
    padding: 20px;
    /* Simplified card */
}

.val-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Individual colors based on reference (blue, orange, teal, gold) */
.value-item:nth-child(1) .val-icon {
    background-color: #0d2c4d;
    color: white;
}

.value-item:nth-child(2) .val-icon {
    background-color: #ff6633;
    color: white;
}

.value-item:nth-child(3) .val-icon {
    background-color: #4da6bd;
    color: white;
}

.value-item:nth-child(4) .val-icon {
    background-color: #ffb800;
    color: white;
}

.value-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 0.9rem;
    color: #777;
}

/* Extended Why Choose Us */
.why-choose-extended {
    background-color: #f0f6fa;
    /* Light blue tint */
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.reason-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reason-icon {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    /* Default blueish */
}

/* Specific colors for reason icons */
.reason-card:nth-child(1) .reason-icon {
    color: #0d2c4d;
}

.reason-card:nth-child(2) .reason-icon {
    color: #ff6633;
}

.reason-card:nth-child(3) .reason-icon {
    color: #4da6bd;
}

.reason-card:nth-child(4) .reason-icon {
    color: #ffb800;
}


.reason-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.reason-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive for About */
@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .value-icons-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .value-icons-row {
        grid-template-columns: 1fr;
    }
}

/* CTA Blue Banner */
.cta-banner-blue {
    background-color: #1e6091;
    /* Specific shade of blue */
    background: linear-gradient(135deg, #164e78, #206fa8);
    color: white;
    padding: 80px 20px;
}

.cta-banner-blue h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner-blue p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-btns-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary-solid {
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.btn-primary-solid:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-white-outline {
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-white-outline:hover {
    background-color: #f0f0f0;
}

/* --- Contact Page Specifics --- */
.bg-light-blue {
    background-color: #eef4f9;
    /* Light background for the whole page */
}

.contact-header {
    background-color: #eef4f9;
    padding: 60px 20px 40px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.contact-section {
    padding-top: 0;
    padding-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    /* Form wider than sidebar */
    gap: 40px;
    align-items: start;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.sidebar-contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-contact-list li {
    display: flex;
    gap: 15px;
}

.sb-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    /* Squared icon bg like reference */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Specific colors for sidebar icons */
.sidebar-contact-list li:nth-child(1) .sb-icon {
    background-color: #0d2c4d;
}

/* Phone - Navy */
.sidebar-contact-list li:nth-child(2) .sb-icon {
    background-color: #4da6bd;
}

/* Email - Teal */
.sidebar-contact-list li:nth-child(3) .sb-icon {
    background-color: #ff6633;
}

/* Hours - Orange */
.sidebar-contact-list li:nth-child(4) .sb-icon {
    background-color: #ffb800;
}

/* Loc - Gold */

.sb-text strong {
    display: block;
    color: #333;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.sb-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Trust Card (Blue) */
.trust-card {
    background-color: #2a6f97;
    /* Blue background */
    color: white;
    text-align: left;
    background: linear-gradient(135deg, #2a6f97, #1e5577);
}

.trust-card i.fa-shield-check {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.trust-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Responsive for Contact */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 300px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        flex-direction: column;
    }
}

/* --- Projects Page Specifics --- */
.projects-hero {
    background: linear-gradient(rgba(15, 35, 58, 0.85), rgba(15, 35, 58, 0.85)), url('https://placehold.co/1920x600/0f233a/ffffff?text=Our+Projects') center/cover;
}

.projects-section {
    padding: 60px 0 100px;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.project-item-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.project-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item-card:hover img {
    transform: scale(1.05);
    /* Zoom effect */
}

/* Hover Overlay */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.project-item-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.project-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Bottom CTA */
.project-bottom-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.project-bottom-cta p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Responsive for Projects */
@media (max-width: 992px) {
    .project-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }
}