* {
    box-sizing: border-box;
}

:root {
    --red-brand: #E32504;
}

body {
    font-family: 'Inter', sans-serif;
    color: #343a40;
}

.navbar-brand img {
    height: 100%;
}

.nav-link {
    font-weight: 500;
    color: #343a40;
}

.nav-link:hover {
    color: var(--red-brand);
}

.btn-red {
    background-color: var(--red-brand);
    border-color: var(--red-brand);
    color: white;
    font-weight: 600;
    border-radius: 7px;
}
        
.btn-red:hover {
    background-color: #951a04;
    border-color: #951a04;
    color: white;
}

.hero-banner {
    background-size: cover;
    background-position: center;
    color: white;
    height: 95vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
}

.hero-banner .display-4 {
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.hero-banner p {
    font-size: 1.25rem;
    max-width: 500px;
}

.text-red {
    color: var(--red-brand);
}

/* Counter Section Styling */
.counter-section {
    margin-top: -100px; /* Pulls the section up to overlap the hero banner */
}
        
.counter-card {
    background-color: rgb(241, 241, 241);
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
}

.counter-label {
    font-weight: 500;
    color: #6c757d;
}
        
.counter-value.text-red {
    color: var(--red-brand);
}
        
/* Why Choose Fetch Section Styling */
.features-section {
    padding-top: 100px; /* Spacing after the counter card */
    padding-bottom: 50px;
}
        
.features-grid .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
}
        
.features-grid .feature-item i {
    font-size: 3rem;
    color: var(--red-brand);
    flex-shrink: 0;
    margin-top: 0.10rem;
}
        
/* Call to Action Section Styling */
.cta-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f8f9fa;
}

.cta-card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/cta_banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 1rem;
    padding: 9rem 5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    height: 70vh;
}

.cta-card h2 {
    font-weight: 700;
    max-width: 650px;
    font-size: 48px;
}
        
/* New Features Section Styling */
.new-features-section {
    padding: 5rem 0;
}
        
.new-features-section .feature-card {
    background-color: white;
    border: none;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
        
.new-features-section .feature-icon {
    background-color: var(--red-brand);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    flex-shrink: 0;
}
        
.new-features-section .feature-icon i {
    font-size: 2.5rem;
}
        
.new-features-section .display-5 {
    font-weight: 700;
}
        
/* FAQ Section Styling */
.faq-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}
        
.accordion-item {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}
        
.accordion-button {
    font-weight: 600;
    color: #343a40;
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    color: #343a40;
    background-color: white;
    box-shadow: none;
}
        
.accordion-button::after {
    font-family: 'bootstrap-icons';
    content: "\f278"; /* Chevron down icon */
    background-image: none;
    transform: scale(1.5);
}

.accordion-button:not(.collapsed)::after {
    content: "\f271"; /* Chevron up icon */
}
        
.accordion-body {
    padding: 1.5rem;
    border-top: 1px solid #dee2e6;
}
        
/* Blog Section Styling */
.blog-section {
    padding: 5rem 0;
}

.blog-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.blog-meta {
    font-size: 0.875rem;
    color: #6c757d;
}
        
/* Footer Styling */
.footer-logo {
    max-height: 80px;
}
        
.footer-social-icon {
    font-size: 1.5rem;
    color: white;
    transition: color 0.2s;
}

.footer-social-icon:hover {
    color: var(--red-brand);
}


/* Hero Banner Styling */
.page-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem; /* Rounded corners for the entire banner */
    position: relative;
    overflow: hidden;
    height: 65vh; /* Adjust height as needed */
}

    .page-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7); /* Overlay to ensure text is readable */
        z-index: 1;
    }

    .page-hero .hero-content {
        position: relative;
        z-index: 2;
    }

    .page-hero h1 {
        font-weight: 700;
        font-size: 3rem;
        margin-bottom: 0;
    }

    .page-hero p {
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }

/* New Section Styling */
.transform-section {
    padding: 5rem 0;
}

.transform-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

    .transform-card img {
        border-radius: 1rem;
    }

/* "What We Do" Section Styling */
.what-we-do-section {
    padding: 5rem 0;
}

.what-we-do-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.what-we-do-icon {
    background-color: var(--red-brand);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    flex-shrink: 0;
}

    .what-we-do-icon i {
        font-size: 2.5rem;
    }

.what-we-do-item h5 {
    font-weight: 700;
}

/* Partner with Us Section Styling */
.partner-section {
    padding: 5rem 0;
}

.partner-card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/industrial-designers-working-3d-model 1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 1rem;
    padding: 5rem 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

    .partner-card h2 {
        font-weight: 700;
        font-size: 2.5rem;
    }


/* Simple Section Styling */
.simple-section {
    padding: 5rem 0;
}

    .simple-section h2 {
        font-weight: 700;
        font-size: 2.5rem;
    }

/* Process Flow Section Styling */
.process-flow-section {
    padding: 2rem 0 5rem 0;
}

.process-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .process-flow-item .icon {
        background-color: var(--red-brand);
        color: white;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 1rem;
        margin-bottom: 1rem;
    }

        .process-flow-item .icon i {
            font-size: 3rem;
        }

    .process-flow-item .label {
        font-weight: 600;
    }

.process-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    height: 80px;
}

    .process-flow-arrow i {
        font-size: 2rem;
        color: #999;
    }

/* Process Flow Details Styling */
.process-details-section {
    padding-bottom: 5rem;
}

.process-details-card {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

    .process-details-card h5 {
        font-weight: 700;
        color: var(--red-brand);
        font-size: 1.25rem;
    }

    .process-details-card .list-unstyled li {
        position: relative;
        padding-left: 1.5rem;
    }

    .process-details-card .list-unstyled li::before {
        content: "\2022"; /* bullet point */
        color: var(--red-brand);
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

/* Blog Section Styling */
.blog-section {
    padding: 5rem 0;
}

.blog-card {
    border: none;
}

.blog-card-meta {
    color: #6c757d;
    font-size: 0.875rem;
}

    .blog-card-meta i {
        margin-right: 0.25rem;
    }

.blog-sidebar .card {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

.sidebar-search-input {
    border-radius: 50rem;
    padding-right: 2.5rem;
}

.sidebar-search-button {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar-post-item {
    display: flex;
    gap: 1rem;
}

.sidebar-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
}

