/* Color Variables */
:root {
    --primary-green: #2E8B57;
    --dark-green: #1A5D3A;
    --orange: #FF7F50;
    --light-bg: #F8F9FA;
    --dark-text: #333333;
    --light-text: #FFFFFF;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: var(--dark-green);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand span {
    margin-left: 10px;
    color: var(--light-text);
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--orange) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--light-text);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons .btn {
    margin-right: 15px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--orange);
    border-color: var(--orange);
}

.btn-primary:hover {
    background-color: #FF6B3B;
    border-color: #FF6B3B;
    transform: translateY(-3px);
}

.btn-outline-light:hover {
    background-color: var(--light-text);
    color: var(--dark-green);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-text);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-green);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--orange);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: var(--light-text);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--light-text);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.service-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Feature List */
.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-item i {
    background: var(--primary-green);
    color: var(--light-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--dark-green);
    margin-bottom: 5px;
}

/* Partners Slider */
.partners-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    margin: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: var(--light-text);
    padding: 60px 0 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo span {
    margin-left: 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-text {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--orange);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 20px;
    }
}



/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--light-text);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Service Detail Pages */
.service-detail h3 {
    color: var(--dark-green);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-list li:before {
    content: "✓";
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.storage-features .feature-item,
.transport-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.storage-features .feature-item i,
.transport-features .feature-item i {
    background: var(--primary-green);
    color: var(--light-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.inputs-categories .category-item,
.materials-offerings .offering-item {
    margin-bottom: 25px;
}

.inputs-categories h5,
.materials-offerings h5 {
    color: var(--dark-green);
    margin-bottom: 10px;
}

.processing-service .card {
    transition: transform 0.3s ease;
}

.processing-service .card:hover {
    transform: translateY(-5px);
}

.processing-icon {
    color: var(--primary-green);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "•";
    color: var(--orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Projects Page */
.project-category {
    margin-bottom: 60px;
}

.category-title {
    color: var(--dark-green);
    border-bottom: 3px solid var(--orange);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.project-card {
    background: var(--light-text);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 139, 87, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    color: var(--light-text);
    padding: 20px;
}

.project-tag {
    background: var(--orange);
    color: var(--light-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-content {
    padding: 25px;
}

.project-content h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.stat {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.stat i {
    color: var(--primary-green);
    margin-right: 5px;
}

/* Certificates */
.certificate-card {
    text-align: center;
}

.certificate-image {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.certificate-content h4 {
    color: var(--dark-green);
    margin-bottom: 10px;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-item {
    text-align: center;
    padding: 20px;
    background: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    max-height: 80px;
    margin-bottom: 15px;
}

.partner-item p {
    font-weight: 600;
    color: var(--dark-green);
    margin: 0;
}

/* Contact Page */
.contact-form-container {
    background: var(--light-text);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-card {
    background: var(--light-text);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--light-text);
    font-size: 1.5rem;
}

.address-card {
    background: var(--light-text);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--orange);
}

.map-section {
    padding: 0;
}

.map-container {
    height: 450px;
}

.map-container iframe {
    filter: grayscale(100%) contrast(90%);
}

/* Form Styles */
.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

.btn-lg {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: var(--light-text);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--light-text);
    font-size: 2rem;
}

/* About Image */
.about-image {
    position: relative;
}

.about-image:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--orange);
    border-radius: 10px;
    z-index: -1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
}


/* About Page Specific Styles */
.company-stats {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--orange);
}

.stat-item h3 {
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--dark-green);
    font-weight: 600;
    margin: 0;
}

.about-image-container {
    position: relative;
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--orange), #ff9c71);
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.3);
    animation: pulse 2s infinite;
}

.badge-content {
    text-align: center;
}

.badge-content .years {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-content .text {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Purpose Cards */
.purpose-card {
    background: var(--light-text);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.purpose-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.mission-card:before {
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
}

.vision-card:before {
    background: linear-gradient(90deg, var(--orange), #ff9c71);
}

.purpose-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
}

.mission-card .purpose-icon {
    color: var(--primary-green);
}

.vision-card .purpose-icon {
    color: var(--orange);
}

.mission-features {
    margin-top: 25px;
}

.mission-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.mission-features .feature i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 1.1rem;
}

.vision-goals {
    margin-top: 25px;
}

.vision-goals .goal {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.vision-goals .goal i {
    background: var(--orange);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.vision-goals .goal h5 {
    color: var(--dark-green);
    margin-bottom: 5px;
}

.vision-goals .goal p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Value Cards */
.value-card {
    background: var(--light-text);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--light-text);
    font-size: 2rem;
}

.value-card h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.value-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.value-points .point {
    background: var(--light-bg);
    color: var(--dark-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Success Factors */
.success-factor {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.factor-number {
    background: var(--orange);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.factor-content h4 {
    color: white;
    margin-bottom: 10px;
}

.factor-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Approach Cards */
.approach-card {
    background: var(--light-text);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--light-text);
    font-size: 1.8rem;
}

.approach-card h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.approach-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.approach-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.approach-features li:before {
    content: "✓";
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Advantages List */
.advantages-list {
    margin-top: 30px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.advantage-icon {
    background: var(--primary-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.advantage-content h4 {
    color: var(--dark-green);
    margin-bottom: 8px;
}

.advantage-content p {
    color: #666;
    margin: 0;
}

.excellence-image {
    position: relative;
}

.excellence-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
}

.excellence-badge i {
    margin-right: 8px;
}

/* CTA Buttons */
.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--primary-green);
}

.cta-buttons .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.cta-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-badge {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }
    
    .badge-content .years {
        font-size: 1.5rem;
    }
    
    .badge-content .text {
        font-size: 0.7rem;
    }
    
    .success-factor {
        flex-direction: column;
        text-align: center;
    }
    
    .factor-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .excellence-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: inline-block;
    }
}  








/* Full View Header Styles */
.full-view-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:  url('../images/about-hero-bg.jpg') center/cover no-repeat;
    color: var(--light-text);
    overflow: hidden;
}

.about-header {
    background:  url('../images/about-hero-bg.jpg') center/cover no-repeat;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: ;
    z-index: 1;
}

.full-view-header .container {
    position: relative;
    z-index: 2;
}

.header-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.header-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.header-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

/* Enhanced Animations for Full View Header */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1.2s ease-out;
}

.animate-slide-up {
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.animate-slide-up-delay {
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

/* Responsive Adjustments for Full View Header */
@media (max-width: 768px) {
    .header-title {
        font-size: 2.5rem;
    }
    
    .header-subtitle {
        font-size: 1.2rem;
    }
    
    .full-view-header {
        min-height: 80vh;
    }
}

@media (max-width: 576px) {
    .header-title {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
}
/* Specific Header Backgrounds for Each Page */
.services-header {
    background: url('../images/services-hero-bg.jpg') center/cover no-repeat;
}

.projects-header {
    background:url('../images/projects-hero-bg.jpg') center/cover no-repeat;
}

.contact-header {
    background:  url('../images/contact-hero-bg.jpg') center/cover no-repeat;
}

