:root {
    --primary-color: #1A1A1A;
    /* Charcoal / Black */
    --secondary-color: #288E48;
    /* Brand Green */
    --accent-color: #D0202F;
    /* Brand Red */
    --text-color: #334155;
    --text-light: #64748b;
    --bg-color: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;
}

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

/* Global Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 55px;
    /* Larger, more visible logo */
    width: auto;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.btn-nav {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
}

.btn-nav:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px auto;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    /* Top padding for fixed nav */
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    /* Light Green Tint */
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust-line {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    flex-wrap: wrap;
}

.hero-trust-line i {
    color: var(--secondary-color);
    margin-right: 0.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(40, 142, 72, 0.39);
}

.btn-primary:hover {
    background-color: #1f7a3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(40, 142, 72, 0.23);
}

.btn-secondary {
    background-color: var(--primary-color);
    /* Charcoal */
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(26, 26, 26, 0.39);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    /* Red on hover */
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.1;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.profile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover .profile-img {
    transform: scale(1.02);
}

/* Problem-Solution Section */
/* Problem-Solution Section */
.problem-solution {
    padding: 8rem 0;
    background-color: var(--white);
}

.ps-container {
    max-width: 1200px;
    /* Use full width for cards */
    margin: 0 auto;
}

.ps-header {
    text-align: center;
    margin-bottom: 5rem;
}

.ps-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Two Main Columns Structure */
.ps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    /* Space between Problem Zone and Solution Zone */
}

.ps-zone-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* Grid for the Individual Cards within each Zone */
.ps-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Single column on mobile per side, maybe 2 if wide enough */
    gap: 1.5rem;
}

/* Base Card Style */
.ps-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Problem Cards Styling */
.problem-card {
    background: #fffafa;
    /* Very subtle warm tint */
    border-left: 4px solid #ef4444;
    /* Red accent line */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.1);
}

.problem-card i {
    color: #ef4444;
    font-size: 1.25rem;
    margin-top: 0.2rem;
    background: rgba(239, 68, 68, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Solution Cards Styling */
.solution-card {
    background: #fcfefe;
    /* Very subtle cool tint */
    border-left: 4px solid #22c55e;
    /* Green accent line */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.1);
}

.solution-card i {
    color: #22c55e;
    font-size: 1.25rem;
    margin-top: 0.2rem;
    background: rgba(34, 197, 94, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.ps-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.ps-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* CTA Area under Solution */
.solution-cta {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #f0fdf4;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px dashed #22c55e;
}

.solution-cta p {
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.ps-buttons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .ps-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: #f8fafc;
    /* Use light background for contrast */
}

.about-container {
    max-width: 1200px !important;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.about-image-col {
    position: relative;
}

.about-img-wrapper {
    position: sticky;
    top: 8rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-exp-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 4px solid var(--white);
}

.about-exp-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-exp-badge small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-text {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-story {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.7;
}

.about-features {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    background: #f1f5f9;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.about-feature-item i {
    color: var(--secondary-color);
}

.trust-quote {
    padding: 2rem;
    background: #f0fdf4;
    border-left: 4px solid var(--secondary-color);
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-col {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-img-wrapper {
        position: static;
    }

    .about-exp-badge {
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 768px) {
    .about-text {
        padding: 2rem;
    }
}

.about-philosophy {
    font-size: 1.25rem;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section - Architectural Grid Update */
.services {
    padding: 6rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    /* Creates the grid lines */
    background: #e2e8f0;
    /* Color of the grid lines */
    border: 1px solid #e2e8f0;
    counter-reset: service-counter;
    /* Init counter */
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.3s ease;
    position: relative;
    border: none;
    /* Handled by grid gap */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    /* Let them stretch */
}

/* Service numbering - Editorial Touch */
.service-card::before {
    counter-increment: service-counter;
    content: "0" counter(service-counter);
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 700;
    color: #f1f5f9;
    /* Very subtle watermark number */
    z-index: 0;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

/* Integrated CTA Card Styling */
.services-cta-card {
    grid-column: span 2;
    /* Span 2 columns if space allows */
    background: linear-gradient(145deg, #1A1A1A 0%, #0f172a 100%);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.services-cta-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.services-benefits-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.services-benefits-cols div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #e2e8f0;
}

.services-benefits-cols i {
    color: var(--secondary-color);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

@media (max-width: 900px) {
    .services-cta-card {
        grid-column: span 1;
    }
}

/* Hover Accent Line */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.service-card:hover {
    background: #fcfcfc;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.service-card:hover::after {
    width: 100%;
}

/* Premium Icon Styling */
.icon-box {
    width: auto;
    height: auto;
    background: transparent;
    color: var(--secondary-color);
    display: block;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 0;
    font-size: 2.25rem;
    /* Large, clean icon */
    margin-bottom: 1.5rem;
    border: none;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    background: transparent;
    color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: none;
    /* Remove old shadow */
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Services CTA - Premium Dark Theme */
.services-cta {
    max-width: 1000px;
    margin: 5rem auto 0;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(145deg, #1A1A1A 0%, #0f172a 100%);
    /* Dark Gradient */
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: none;
}

/* Subtle decorative accent */
.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.services-cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.services-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0 3rem;
}

.sb-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #e2e8f0;
    /* Light text */
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 1.1rem;
}

.sb-item i {
    color: var(--secondary-color);
    background: rgba(40, 142, 72, 0.15);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.services-cta-text {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-cta-text strong {
    color: var(--white);
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 0;
    background-color: var(--bg-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    /* Larger image cards */
    gap: 2rem;
    margin: 4rem 0;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    /* Taller for better view */
    box-shadow: var(--shadow-md);
    cursor: pointer;
    background: #000;
    /* Loading placeholder */
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.portfolio-item:hover img {
    transform: scale(1.08);
    /* Slower, smoother zoom */
    opacity: 1;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    padding: 2.5rem 1.5rem 1.5rem;
    transform: translateY(0);
    /* Always show title but subtle */
    transition: var(--transition);
    opacity: 1;
}

.overlay h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    transform: translateY(5px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .overlay h4 {
    transform: translateY(0);
}

.portfolio-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.portfolio-cta h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.portfolio-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
    background: #0f172a;
    /* Dark background */
    color: var(--white);
    position: relative;
}

.why-choose .section-title {
    color: var(--white);
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(40, 142, 72, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-item span {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.feature-item p.feature-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    /* text-light for dark bg */
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* Why Choose Closure CTA */
.why-choose-closure {
    max-width: 600px;
    margin: 5rem auto 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-closure h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.closure-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.closure-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: #cbd5e1;
}

.closure-item i {
    color: var(--secondary-color);
}

.testimonials {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-color), #fff);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.testimonials .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    z-index: 1;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    align-items: flex-start;
}

.testimonials-track .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.testimonials-track .testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 10px;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    /* Softer, spread shadow */
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.12);
    border-color: rgba(40, 142, 72, 0.2);
    /* Green tint border */
}

/* Big Quote Watermark */
.testimonial-card::after {
    content: '\f10d';
    /* FontAwesome Quote Left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.08;
    pointer-events: none;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-color);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.client-details h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.1rem;
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* FAQ */
.faq {
    padding: 8rem 0;
    background-color: #f8fafc;
}

.faq-container {
    max-width: 1000px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(40, 142, 72, 0.2);
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px -5px rgba(40, 142, 72, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-item.active .faq-question {
    color: var(--secondary-color);
    background: rgba(40, 142, 72, 0.03);
    padding-bottom: 1rem;
    font-weight: 700;
}

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

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent-color);
    background: rgba(208, 32, 47, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--secondary-color);
    color: var(--white);
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    text-align: center;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-box h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.contact-link:hover .icon-circle {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #0f172a;
    /* Slightly lighter than pure black */
    color: #94a3b8;
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.tagline {
    font-weight: 500;
    color: var(--secondary-color);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

@media(min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        justify-content: flex-end;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        width: 70%;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-subtext {
        margin: 0 auto 2rem;
    }

    .about-stats {
        margin-top: 2rem;
    }
}

/* Project Detail Page Styles */
.project-story {
    max-width: 900px;
    margin: 0 auto;
}

.project-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--secondary-color);
}

.project-story h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* New Signature Portfolio Refinement */
.portfolio {
    padding: 8rem 0;
    background: #f8fafc;
}

/* Portfolio Category Sticky Nav */
.category-nav {
    position: sticky;
    top: 80px;
    /* Adjust based on your main navbar height */
    z-index: 900;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category-nav.scrolled {
    padding: 1rem 0;
}

.category-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover {
    color: var(--secondary-color);
}

.category-btn.active {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.portfolio-cta {
    text-align: center;
    margin-top: 5rem;
}

.portfolio-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.card-image::after {
    content: "View Project Details";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.portfolio-card:hover .card-image::after {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.portfolio-card:hover .card-image img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.card-content {
    padding: 2.5rem;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: 0.3s ease;
}

.portfolio-card:hover .card-content h3 {
    color: var(--secondary-color);
}

.card-content p {
    color: #64748b;
    line-height: 1.6;
}

.view-details {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: 0.3s ease;
}

.portfolio-card:hover .view-details {
    color: var(--secondary-color);
}

.view-details i {
    font-size: 0.8rem;
    transition: 0.3s ease;
}

.portfolio-card:hover .view-details i {
    transform: translateX(5px);
}

.quality-stamp {
    margin-top: 6rem;
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quality-stamp::after {
    content: '\f091';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    opacity: 0.05;
}

.stamp-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stamp-content i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.stamp-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stamp-content p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
}

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

/* Timeline Case Study Styles */
.timeline-stage {
    position: relative;
    padding-left: 3rem;
    border-left: 2px solid #e2e8f0;
    margin-bottom: 5rem;
}

.timeline-stage::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #f1f5f9;
}

.timeline-stage h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-stage h3 i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    background: #f1f5f9;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.project-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

/* Showcase Page Styles */
.signature-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('modern-minimalism.png');
    background-size: cover;
    background-position: center;
    padding: 12rem 0 8rem;
    color: var(--white);
    text-align: center;
}

.showcase-section {
    padding: 8rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.showcase-section:nth-child(even) {
    background: #f8fafc;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.showcase-text h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.showcase-text p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-list i {
    color: var(--secondary-color);
}

.showcase-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.showcase-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 968px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .showcase-section:nth-child(even) .showcase-image {
        order: -1;
    }

    .feature-list li {
        justify-content: center;
    }

    .showcase-text h2 {
        font-size: 2.2rem;
    }
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-box {
    background: #f8fafc;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    min-width: 180px;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--secondary-color);
    background: #f0fdf4;
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Portfolio Filtering Styles */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid #e2e8f0;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.filter-btn.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

/* Item Animation */
.portfolio-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-hide {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
}

/* --- Hire Mawuli Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    width: 90%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    position: relative;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f1f5f9;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-family: 'Outfit', sans-serif;
}

.modal-header p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.modal-btn.whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

.modal-btn.call {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(40, 142, 72, 0.3);
}

.modal-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    color: white;
}

.modal-btn i {
    font-size: 1.4rem;
}

.phone-number {
    display: block;
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
    letter-spacing: 1px;
}