@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #ffffff;
    font-feature-settings: 'kern', 'liga', 'cv01', 'cv02';
    letter-spacing: -0.01em;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1rem;
}

/* Main Layout */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-large {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section-large {
    padding: 6rem 0;
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 10rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: fit;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: color 0.15s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link.active {
    color: #2563eb;
}

.header-cta {
    display: none;
}

.mobile-menu-button {
    display: block;
    padding: 0.5rem;
    color: #4b5563;
    background: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.mobile-menu-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ✅ add missing toggle helper */
.hidden {
    display: none !important;
}

/* ✅ fix display issue */
.mobile-menu {
    display: none;
    border-top: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* ✅ when JS removes .hidden, this shows up */
.mobile-menu:not(.hidden) {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.15s ease;
}

.mobile-nav-link:hover {
    color: #111827;
    background-color: #f9fafb;
}

.mobile-nav-link.active {
    background-color: #eff6ff;
    color: #2563eb;
}

/* ✅ responsive visibility */
@media (min-width: 992px) {
    .mobile-menu-button { display: none; }
    .mobile-menu { display: none !important; }
}


/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-white-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-white-outline:hover {
    background-color: #ffffff;
    color: #111827;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
    color: #ffffff;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #f7f7f7;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
    opacity: 0.9;
    color: #f7f7f7;
    letter-spacing: 0.4px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-1 {
    grid-template-columns: 1fr;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Service Cards */
.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:hover {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transform: translateY(-5px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon-bg {
    width: 4rem;
    height: 4rem;
    background-color: #eff6ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748b;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2563eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-brand-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.contact-item svg {
    width: 1rem;
    height: 1rem;
    color: #60a5fa;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2rem;
    height: 2rem;
    background-color: #1f2937;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.social-link:hover {
    background-color: #2563eb;
}

.social-link.whatsapp:hover {
    background-color: #16a34a;
}

.social-link svg {
    width: 1rem;
    height: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #d1d5db;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.background-light {
    background-color: #f9fafb;
}

.background-white {
    background-color: #ffffff;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.scroll-to-top:hover {
    background-color: #1d4ed8;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.8;
    pointer-events: none;
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-cta {
        display: block;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .grid-2-md {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3-md {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4-md {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 5.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.875rem;
    }
    
    .two-column-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-2-lg {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

/* Focus States for Accessibility */
button:focus,
a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section-large {
    padding: 5rem 0;
}

.content-text p {
    color: #64748b;
    margin-bottom: 1rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.text-primary-emphasis {
    font-weight: 500;
    color: #2563eb;
}

/* Image Container */
.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Vision Cards */
.vision-card {
    background-color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    padding: 1.5rem;
}

.vision-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.vision-card-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.vision-card-title {
    margin-left: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}

.vision-card-description {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Mission Cards */
.mission-card {
    background-color: #ffffff;
    border-left: 4px solid #2563eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    padding: 1.5rem;
}

.mission-card h3 {
    margin-bottom: 0.75rem;
}

.mission-card p {
    color: #64748b;
    margin: 0;
}

/* Edge Section */
.edge-section {
    background-color: #2563eb;
    color: #ffffff;
    padding: 4rem 0;
}

.edge-section h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.edge-section p {
    color: #ffffff;
}

.edge-text-large {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.edge-text-medium {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Page Hero */
.page-hero {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
}

/* Service Detail Card */
.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transform: translateY(-2px);
}

.service-detail-icon {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.service-detail-icon-bg {
    width: 5rem;
    height: 5rem;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #2563eb;
}

.service-detail-card h3 {
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin-top: 1rem;
}

.service-list li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: flex-start;
}

.service-list li:before {
    content: "✓";
    color: #2563eb;
    font-weight: 700;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Material Cards */
.material-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.material-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transform: translateY(-2px);
}

.material-card-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.material-card-content {
    padding: 1.5rem;
}

.material-card h3 {
    margin-bottom: 0.75rem;
}

.material-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.material-features {
    list-style: none;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.material-features li {
    padding: 0.25rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
}

.material-features li:before {
    content: "•";
    color: #2563eb;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Project Cards */
.project-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transform: translateY(-2px);
}

.project-card-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.project-card-content {
    padding: 1.5rem;
}

.project-card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.project-card h3 {
    margin-bottom: 0.5rem;
}

.project-card p {
    color: #64748b;
    margin: 0;
}

/* Project Filter */
.project-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-button {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter-button:hover {
    color: #2563eb;
    border-color: #2563eb;
}

.filter-button.active {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

/* Contact Form */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.contact-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.contact-info-card h3 {
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: #64748b;
    margin: 0;
}

.contact-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-container {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #0f172a;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: border-color 0.15s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 0.75rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #1d4ed8;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Benefits Section */
.benefits-section {
    background-color: #eff6ff;
    padding: 4rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.benefit-content h4 {
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.875rem;
}

/* Hero Section */
.all-hero {
    position: relative;
    padding: 5rem 0;
    color: #fff;
    text-align: center;
}

/* Optional overlay for text visibility */
.all-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* dark overlay */
    z-index: 1;
}

.all-hero .container {
    position: relative;
    z-index: 2;
}

.all-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.all-hero-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 48rem;
    margin: 0 auto;
}


