:root {
    --primary-color: #FF5532;
    /* Vibrant Red */
    --secondary-color: #0E232D;
    /* Dark Navy/Gray */
    --bg-color: #0E232D;
    --text-color: #F8F8F8;
    --text-muted: #a0aab2;
    --light-bg: #152a35;
    /* Slightly lighter navy for cards */
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] {
    font-family: 'Cairo', sans-serif;
    /* Arabic font */
    text-align: right;
}

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 0;
    /* Sharp corners for premium look */
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    border: 1px solid var(--primary-color);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

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

.section-padding {
    padding: 100px 0;
}

.heading-xl {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Added shadow for readability */
}

.subheading {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 16px;
    display: inline-flex;
    /* Changed to inline-flex to hug content */
    align-items: center;
    gap: 10px;
    /* Keeps dot close to text */
}

.subheading::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    /* Removed absolute positioning */
}



/* Header */
header {
    background-color: rgba(14, 35, 45, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.top-bar {
    background-color: #0b1c24;
    color: var(--text-muted);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    /* Added horizontal padding */
}

.logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 60px;
    /* Reduced from 85px to fit better with text */
    width: auto;
    object-fit: contain;
    margin-inline-end: 15px;
    /* RTL-aware margin */
}

.logo-text {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-accent {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 400;
    color: var(--text-color);
    font-size: 14px;
    text-transform: uppercase;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0.8;
    padding: 0 15px 5px;
    /* Added bottom padding for underline spacing */
}

.nav-link:hover {
    color: var(--white);
    opacity: 1;
}

.nav-link.active {
    color: var(--white);
    opacity: 1;
    border-bottom: 2px solid var(--primary-color);
    /* Added bottom border */
}

.lang-switch {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    gap: 10px;
}

.lang-switch a {
    opacity: 0.6;
}

.lang-switch a.active {
    opacity: 1;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    padding: 200px 0 150px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(14, 35, 45, 0.95) 0%, rgba(14, 35, 45, 0.5) 50%, rgba(14, 35, 45, 0) 100%);
    backdrop-filter: blur(2px);
    /* Subtle blur for depth */
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Behind overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-text {
    color: var(--white);
    /* Solid white */
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Added shadow */
}

.hero-stat-card {
    position: absolute;
    right: 50px;
    bottom: -50px;
    background: var(--light-bg);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 3;
    max-width: 300px;
    border-top: 4px solid var(--primary-color);
}

[dir="rtl"] .hero-stat-card {
    right: auto;
    left: 50px;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Services Preview */
.services-section {
    padding-top: 100px;
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--light-bg);
    padding: 50px 40px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    background: #1a323f;
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 400;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Form */
.contact-form {
    background: var(--light-bg);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    font-family: inherit;
    color: var(--white);
    font-size: 15px;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Footer */
footer {
    background: #0b1c24;
    color: var(--text-muted);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Mobile */
@media (max-width: 768px) {
    .heading-xl {
        font-size: 2.5rem;
    }

    .hero-stat-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 30px;
        width: 100%;
    }

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

    /* .nav-menu { display: none; } Removed to allow JS toggle */

    /* Simplified mobile handling for now */
}

/* Portfolio Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-item {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    /* Clean, no shadow for minimal look */
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-thumb {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-item:hover .project-thumb img {
    transform: scale(1.05);
}

.project-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 35, 45, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay-content {
    opacity: 1;
}

.view-btn {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transform: scale(0.8);
    transition: var(--transition);
    opacity: 0;
}

.project-item:hover .view-btn {
    transform: scale(1);
    opacity: 1;
}

.project-info {
    padding: 10px 0;
}

.project-cat {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.project-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--white);
    font-weight: 400;
}

.project-loc {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Filter Buttons */
.filter-btn {
    border: none;
    background: none;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 10px 20px;
    transition: var(--transition);
    position: relative;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--primary-color);
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-color);
}

/* Process Steps */
.process-step {
    padding: 20px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Services Zig-Zag Layout */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 150px;
    position: relative;
    z-index: 10;
}

/* Ensure even rows swap visual order for zig-zag effect */
/* Ensure even rows swap visual order for zig-zag effect */
.service-row:nth-child(even) .service-content {
    order: 1;
}

.service-row:nth-child(even) .service-img {
    order: 2;
}

/* Watermark Number */
.service-number {
    position: absolute;
    top: -80px;
    left: -50px;
    font-size: 200px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    /* Faint watermark style */
    z-index: -1;
    line-height: 1;
}

/* Right-aligned watermark for alternating rows */
.service-row:nth-child(even) .service-number {
    left: auto;
    right: -50px;
}

/* Enhance Service Content Typography */
.service-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
}

/* Service Image Styling */
.service-img {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-row:hover .service-img img {
    transform: scale(1.05);
}

/* Mobile Responsiveness for Zig-Zag */
@media (max-width: 900px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 100px;
    }

    /* Reset order on mobile for standard stacking */
    .service-row:nth-child(even) .service-content {
        order: unset;
    }

    .service-row:nth-child(even) .service-img {
        order: unset;
    }

    .service-number {
        font-size: 100px;
        top: -40px;
        left: 0;
    }

    .service-row:nth-child(even) .service-number {
        left: auto;
        right: 0;
    }

    .service-content h2 {
        font-size: 2.2rem;
    }
}

/* Project Modal */
.project-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 35, 45, 0.95);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

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

.project-modal-content {
    background: var(--light-bg);
    max-width: 900px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
}

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

.modal-img-container {
    height: 100%;
    min-height: 400px;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-cat {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.1;
}

.modal-loc {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-desc {
    color: #ccc;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 768px) {
    .project-modal-content {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-img-container {
        height: 300px;
        min-height: auto;
    }

    .modal-info {
        padding: 30px;
    }

    .modal-title {
        font-size: 2rem;
    }
}

/* Process Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    /* Wider container for better breathing room */
    margin: 0 auto;
    padding: 40px 0;
}

/* The vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0.1) 90%, transparent);
    z-index: 1;
}

.timeline-item {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 0 60px;
    /* Increased padding */
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    float: left;
    text-align: right;
    clear: both;
}

.timeline-item:nth-child(even) {
    float: right;
    text-align: left;
    clear: both;
}

/* Timeline Number/Marker */
.timeline-item:nth-child(odd) .timeline-num {
    right: -30px;
    left: auto;
}

.timeline-item:nth-child(even) .timeline-num {
    left: -30px;
}

.timeline-num {
    position: absolute;
    top: 10px;
    /* Slightly lower alignment */
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    /* Match background to "cut" the line visually */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 85, 50, 0.3);
    z-index: 3;
    font-family: var(--font-heading);
}

.timeline-content {
    background: var(--light-bg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
}

/* Hover effect for timeline items */
.timeline-item:hover .timeline-content {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Connector Line (Horizontal) from center to content */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 40px;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
}

.timeline-item:hover .timeline-content::before {
    background: var(--primary-color);
}

/* Clearfix */
.timeline::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 900px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        float: none;
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
        margin-bottom: 50px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        float: none;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-num,
    .timeline-item:nth-child(even) .timeline-num {
        left: 0;
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -30px;
        right: auto;
        width: 20px;
        /* Shorten for mobile if padding is tight */
    }
}

/* Sustainability Page */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.sus-card {
    background: var(--light-bg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
}

.sus-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.sus-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.sus-card h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.sus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.commitments-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.commitments-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.commitments-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 14px;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--white);
    margin-right: 20px;
}

@media (max-width: 900px) {
    .nav-container {
        padding: 15px 20px;
        position: relative;
    }

    .mobile-toggle {
        display: block;
        order: 2;
        /* Place after logo */
        position: relative;
        z-index: 1002;
        /* Ensure it stays above the open menu */
    }

    .logo {
        order: 1;
        margin-right: auto;
    }

    .quote-btn {
        display: none;
        /* Hide quote button on mobile to save space */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 80px 20px 40px;
        transition: 0.3s ease;
        z-index: 1001;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 20px;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }
}

/* Page Header Standard */
.page-header {
    background: var(--light-bg);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* Sustainability Specifics */
.sus-hero-img {
    position: relative;
    margin-bottom: 60px;
}

.sus-hero-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.8);
}

.sus-floating-card {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    max-width: 300px;
    z-index: 2;
}

.sus-floating-card h3 {
    font-family: var(--font-heading);
    margin: 0;
    font-size: 1.5rem;
}

.commitment-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.commitment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    min-height: 400px;
}

@media (max-width: 768px) {
    .sus-hero-img img {
        height: 300px;
    }

    .sus-floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -30px;
        margin-left: 20px;
        max-width: calc(100% - 40px);
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
}

/* About Page Stats Card */
.about-stat-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    padding: 30px;
    color: white;
    border-radius: 0;
    z-index: 2;
}

.about-stat-card h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 3rem;
    font-weight: 400;
    font-family: var(--font-heading);
}

@media (max-width: 768px) {
    .about-stat-card {
        right: 0;
        bottom: -20px;
        padding: 20px;
        width: auto;
        max-width: 80%;
    }

    .about-stat-card h3 {
        font-size: 2rem;
    }
}

/* Flex Header for Section Titles with Buttons */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .section-header-flex {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header-flex .btn {
        width: 100%;
        /* Make button full width on mobile for easier tapping */
        text-align: center;
    }
}