/* Global Styles */
:root {
    --primary-color: #006633; /* Dark green from the Field Axle website */
    --secondary-color: #004d1a; /* Darker green for hover states */
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --black-bg: #000000; /* Black background for some sections */
    --dark-green-bg: #004d1a; /* Dark green background for footer and some sections */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        color: var(--secondary-color);
    }

.section-label {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.z-1 {
    z-index: 1;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

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

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

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

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

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

.btn-full {
    width: 100%;
}

/* Header */
.header {
    padding: 1rem 0;
    background-color: var(--dark-green-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .header .container {
        position: relative;
    }

    .header .row {
        justify-content: space-between;
        align-items: center;
    }

.logo {
    margin-right: 20px;
}

    .logo img {
        height: 32px;
        width: auto;
    }

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .main-nav ul {
        justify-content: center;
        gap: 2rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .main-nav li {
        white-space: nowrap;
    }

    .main-nav a {
        color: white;
        font-size: 0.875rem;
        font-weight: 400;
        padding: 0.25rem 0;
        display: block;
        text-decoration: none;
        transition: color 0.2s ease;
        position: relative;
    }

        .main-nav a:hover {
            color: #00A651;
        }

        .main-nav a.active {
            color: #00A651;
            border-bottom: 2px solid #00A651;
        }

            .main-nav a.active:hover {
                color: #00A651;
            }

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 20px;
}

    .auth-buttons .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .auth-buttons .btn-outline {
        border: 1px solid white;
        color: white;
        background: transparent;
    }

        .auth-buttons .btn-outline:hover {
            background-color: white;
            color: var(--dark-green-bg);
        }

    .auth-buttons .btn-primary {
        background-color: transparent;
        border: 1px solid white;
        color: white;
    }

        .auth-buttons .btn-primary:hover {
            background-color: white;
            color: var(--dark-green-bg);
        }

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

    .mobile-menu-toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: white;
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

        .mobile-menu-toggle span:nth-child(1) {
            top: 0px;
        }

        .mobile-menu-toggle span:nth-child(2) {
            top: 10px;
        }

        .mobile-menu-toggle span:nth-child(3) {
            top: 20px;
        }

/* Main Hero Section - Homepage */
.main-hero {
    background-image: url('images/home/hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    position: relative;
}

    .main-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    }

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

.main-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.main-hero p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

.main-hero .btn-primary {
    background-color: #00A651;
    border-color: #00A651;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

    .main-hero .btn-primary:hover {
        background-color: #009048;
        border-color: #009048;
    }

/* Hero Section */
.hero, .page-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    position: relative;
}

    .hero::before, .page-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

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

.hero h1, .page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.page-hero {
    padding: 4rem 0;
    text-align: center;
}

/* Strategic Hero Section - Industries Page */
.strategic-hero {
    background-image: url('images/industries/Banner.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

    .strategic-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
    }

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

    .strategic-hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .strategic-hero .hero-subtitle {
        font-size: 1rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* Heavy Loads Section */
.heavy-loads {
    background-color: white;
    padding: 5rem 0;
}

    .heavy-loads .section-title {
        color: var(--dark-color);
        font-size: 2.2rem;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

        .heavy-loads .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #00A651;
        }

    .heavy-loads p {
        color: var(--dark-color);
        line-height: 1.8;
    }

/* Maximize Potential Section */
.maximize-potential {
    background-color: var(--dark-green-bg);
    color: white;
    padding: 5rem 0;
    background-image: url('images/green-pattern.png');
    background-size: cover;
    background-position: center;
}

    .maximize-potential .section-title {
        color: white;
        margin-bottom: 3rem;
    }

.benefit-card {
    background-color: #E8F5E9;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

    .benefit-card h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .benefit-card p {
        color: var(--dark-color);
        flex-grow: 1;
    }

.badge-container, .image-container {
    margin-top: 1.5rem;
    text-align: center;
}

    .badge-container img {
        max-width: 100%;
        height: auto;
    }

    .image-container img {
        max-width: 100%;
        border-radius: 8px;
        height: auto;
    }

/* Industries Showcase Section */
.industries-showcase {
    background-color: var(--black-bg);
    background-image: url('images/home/Industries Bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
}

    .industries-showcase .section-label {
        color: var(--primary-color);
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

.industries-heading {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.industries-showcase .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
}

    .industries-showcase .btn-primary:hover {
        background-color: var(--secondary-color);
    }

.industries-slider {
    position: relative;
    margin: 3rem auto 0;
    max-width: 100%;
    padding: 0 50px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

    .slider-arrow:hover {
        background-color: var(--secondary-color);
        transform: translateY(-50%) scale(1.1);
    }

    .slider-arrow.prev {
        left: 0;
    }

    .slider-arrow.next {
        right: 0;
    }

.industry-showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    height: 250px;
    background-color: #000;
}

    .industry-showcase-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0.8;
    }

    .industry-showcase-item:hover img {
        transform: scale(1.05);
        opacity: 0.6;
    }

.industry-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2), transparent);
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
}

/* Industries Grid Section */
.industries-grid {
    background-image: url('images/industries/Industry Bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
}

    .industries-grid .section-label {
        color: var(--primary-color);
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

.industries-heading {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.industry-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    height: 200px;
}

    .industry-grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .industry-grid-item:hover img {
        transform: scale(1.05);
    }

.industry-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Industries Slider */
.industries-slider {
    position: relative;
    padding: 0 40px;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    gap: 20px;
    scrollbar-width: none; /* Firefox */
}

    .slider-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.industry-card {
    flex: 0 0 auto;
    width: 280px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

    .industry-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .industry-card h3 {
        padding: 1.5rem;
        margin: 0;
        color: var(--primary-color);
    }

    .industry-card p {
        padding: 0 1.5rem 1.5rem;
        margin: 0;
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid #00A651;
    border-radius: 50%;
    background: transparent;
    color: #00A651;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slider-arrow:hover {
        background-color: #00A651;
        color: white;
    }

    .slider-arrow.prev {
        left: 0;
    }

    .slider-arrow.next {
        right: 0;
    }

    .slider-arrow span {
        font-size: 1.5rem;
        line-height: 1;
    }

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: white;
}

    .testimonials .section-label {
        color: #00A651;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .testimonials h2 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 3rem;
    }

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.testimonial-content {
    text-align: center;
    padding: 0 2rem;
}

    .testimonial-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #4A4A4A;
        margin-bottom: 2rem;
    }

.testimonial-author {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #00A651;
    font-weight: 600;
    letter-spacing: 1px;
}

    .testimonial-author::before,
    .testimonial-author::after {
        content: '';
        height: 2px;
        width: 50px;
        background-color: #00A651;
        margin: 0 15px;
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid #00A651;
    border-radius: 50%;
    background: transparent;
    color: #00A651;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slider-arrow:hover {
        background-color: #00A651;
        color: white;
    }

    .slider-arrow.prev {
        left: 0;
    }

    .slider-arrow.next {
        right: 0;
    }

.client-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

    .client-images img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 4px;
        transition: transform 0.3s ease;
    }

        .client-images img:hover {
            transform: scale(1.05);
        }

/* Features Hero Section */
.features-hero {
    background-image: url('images/features/Banner Img.png');
    background-size: cover;
    background-position: center;
    color: white;
    height: 350px;
    display: flex;
    align-items: center;
    position: relative;
}

    .features-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
    }

    .features-hero h1 {
        position: relative;
        z-index: 1;
        font-size: 3rem;
        font-weight: 600;
    }

/* Features Grid Section */
.features-grid {
    background-image: url('images/features/Feattures Bg.png');
    background-color: #000;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
}

    .features-grid .section-label {
        color: #00A651;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

.features-heading {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-subheading {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

    .feature-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

.feature-content h3 {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .features-hero h1 {
        font-size: 2.5rem;
    }

    .features-heading {
        font-size: 2rem;
    }
}

/* Pricing Hero Section */
.pricing-hero {
    background-image: url('images/pricing/Banner.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    position: relative;
}

    .pricing-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .pricing-hero h1 {
        position: relative;
        z-index: 1;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0;
    }

/* Pricing Plans Section */
.pricing-plans {
    background-color: white;
    padding: 5rem 0;
}

    .pricing-plans .section-label {
        color: var(--primary-color);
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

.pricing-heading {
    color: var(--dark-color);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

    .pricing-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--dark-color);
    }

    .pricing-header p {
        color: var(--dark-color);
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

.price-tag {
    font-size: 0.95rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.pricing-body {
    padding: 2rem;
}

.features-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

    .features-title::before,
    .features-title::after {
        content: '';
        position: absolute;
        top: 50%;
        height: 1px;
        background-color: var(--border-color);
        width: 25%;
    }

    .features-title::before {
        left: 0;
    }

    .features-title::after {
        right: 0;
    }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

        .pricing-features li img {
            width: 20px;
            height: 20px;
            margin-right: 1rem;
            margin-top: 3px;
        }

        .pricing-features li span {
            flex: 1;
            font-size: 0.9rem;
        }

.compare-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .compare-link img {
        width: 16px;
        height: 16px;
        margin-left: 0.5rem;
    }

    .compare-link:hover {
        color: var(--secondary-color);
    }

/* Comparison Table Section */
.comparison-section {
    background-color: #f8f8f8;
    padding: 5rem 0;
}

.comparison-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.comparison-table {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 2rem;
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background-color: #f8f8f8;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
}

.feature-category {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.table-header .vendor {
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    border-left: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

    .table-header .vendor:hover {
        background-color: #000;
        color: white;
    }

    .table-header .vendor.active {
        background-color: transparent;
        color: inherit;
    }

        .table-header .vendor.active:hover {
            background-color: #000;
            color: white;
        }

.vendor-name {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-header .vendor .btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 4px;
    width: 100%;
}

.table-header .vendor.active .btn {
    background-color: var(--primary-color);
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
}

    .table-row:last-child {
        border-bottom: none;
    }

.feature-name {
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.vendor-check {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-left: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .vendor-check img {
        width: 18px;
        height: 18px;
    }

@media (max-width: 991.98px) {
    .comparison-table {
        overflow-x: auto;
        display: block;
    }

    .table-header,
    .table-row {
        min-width: 750px;
    }
}

@media (max-width: 575.98px) {
    .comparison-title {
        font-size: 1.8rem;
    }
}

/* About Hero Section */
.about-hero {
    background-image: url('images/About/Bg.png');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    position: relative;
}

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .about-hero h1 {
        color: white;
        font-size: 3rem;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }

/* About Field Axle Section */
.about-field-axle {
    padding: 6rem 0;
}

    .about-field-axle .section-title {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 2rem;
    }

    .about-field-axle p {
        font-size: 1rem;
        line-height: 1.8;
        color: #4A4A4A;
        margin-bottom: 1.5rem;
    }

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Empower Businesses Section */
.empower-businesses {
    position: relative;
    padding: 100px 0;
    background: url('images/About/about-bg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    margin-bottom: -100px;
}

    .empower-businesses::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: rgba(0, 0, 0, 0.7); */
        z-index: 1;
    }

    .empower-businesses .container {
        position: relative;
        z-index: 2;
    }

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

    .faq-section .section-label {
        color: #00A651;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .faq-section .section-title {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 3rem;
    }

.accordion-item {
    border: 1px solid #e9e9e9;
    border-radius: 8px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    background: white;
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    background-color: white;
    border: none;
    box-shadow: none;
}

    .accordion-button:not(.collapsed) {
        color: #333;
        background-color: white;
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: #e9e9e9;
    }

    .accordion-button::after {
        width: 1.25rem;
        height: 1.25rem;
        background-size: 1.25rem;
        transition: transform 0.2s ease;
    }

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    background-color: white;
}

/* Contact Hero Section */
.contact-hero {
    background-image: url('images/contact/Header.png');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    position: relative;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .contact-hero h1 {
        color: white;
        font-size: 3rem;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
}

    .contact-form-section .section-label {
        color: #00A651;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .contact-form-section h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .contact-form-section p {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
    }

    .contact-form-section .text-center {
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
    }

/* Contact Form Styling */
.form-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    padding: 8px 15px;
    background: #fff;
}

    .form-group::before {
        content: '';
        position: absolute;
        left: -1px;
        top: -1px;
        height: 12px;
        width: 12px;
        border-left: 2px solid #E0E0E0;
        border-top: 2px solid #E0E0E0;
    }

    .form-group::after {
        content: '';
        position: absolute;
        right: -1px;
        bottom: -1px;
        height: 12px;
        width: 12px;
        border-right: 2px solid #E0E0E0;
        border-bottom: 2px solid #E0E0E0;
    }

    .form-group label {
        margin: 0;
        padding-right: 15px;
        border-right: 1px solid #E0E0E0;
    }

        .form-group label img {
            width: 20px;
            height: 20px;
            opacity: 0.5;
            filter: brightness(0) saturate(100%) hue-rotate(0deg) brightness(0.7);
        }

.form-control {
    border: none !important;
    box-shadow: none !important;
    padding: 8px 15px;
    font-size: 15px;
    background: transparent;
    width: 100%;
}

    .form-control:focus {
        outline: none;
    }

textarea.form-control {
    min-height: 120px;
    resize: none;
}

/* Specific styling for the comment textarea group */
.form-group:has(textarea) {
    align-items: flex-start;
}

    .form-group:has(textarea) label {
        padding-top: 8px;
    }

/* Remove default form control focus styles */
.form-control:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

/* Placeholder styling */
.form-control::placeholder {
    color: #999;
    font-size: 14px;
}

/* Contact Info Cards */
.contact-info {
    padding-left: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 166, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

    .info-icon img {
        width: 24px;
        height: 24px;
        filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(90%) contrast(85%);
    }

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    margin: 0;
}

/* Submit Button */
.btn-full {
    width: 100%;
    background-color: #00A651;
    border-color: #00A651;
    color: white;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-full:hover {
        background-color: #008c44;
        border-color: #008c44;
    }

/* Footer */
.footer {
    background-image: url('images/features/Footer-Bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

    .footer-contact a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1rem;
        transition: all 0.3s ease;
        padding: 0.5rem;
        border-radius: 4px;
    }

        .footer-contact a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

    .footer-contact img {
        width: 20px;
        height: 20px;
        color: #006633;
    }

.footer-cta {
    padding: 2.5rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer-cta h2 {
        font-size: 2rem;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
    }

    .footer-cta .btn-outline-white {
        border: 2px solid white;
        color: white;
        padding: 0.75rem 2rem;
        font-size: 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-cta .btn-outline-white:hover {
            background-color: white;
            color: var(--dark-green-bg);
            transform: translateY(-2px);
        }

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
}

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
        margin: 0;
    }

/* Footer Responsive Styles */
@media (max-width: 991.98px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-logo img {
        height: 32px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1.25rem;
    }

        .footer-contact a {
            justify-content: center;
            font-size: 0.95rem;
        }

        .footer-contact img {
            width: 18px;
            height: 18px;
        }

    .footer-cta {
        text-align: center;
        padding: 2rem 1rem;
        margin: 0;
    }

        .footer-cta .row {
            gap: 1.5rem;
        }

        .footer-cta h2 {
            font-size: 1.8rem;
            margin-bottom: 0;
        }

        .footer-cta .text-md-end {
            text-align: center !important;
        }

        .footer-cta .btn-outline-white {
            padding: 0.75rem 2rem;
            font-size: 0.95rem;
            display: inline-block;
        }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-top {
        gap: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .footer-logo img {
        height: 28px;
    }

    .footer-contact {
        gap: 1rem;
    }

        .footer-contact a {
            font-size: 0.9rem;
        }

        .footer-contact img {
            width: 16px;
            height: 16px;
        }

    .footer-cta {
        padding: 1.75rem 1rem;
    }

        .footer-cta h2 {
            font-size: 1.6rem;
        }

        .footer-cta .btn-outline-white {
            padding: 0.6rem 1.75rem;
            font-size: 0.9rem;
        }

    .footer-bottom {
        margin-top: 1.5rem;
    }

        .footer-bottom p {
            font-size: 0.8rem;
            opacity: 0.9;
        }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-top {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-logo img {
        height: 26px;
    }

    .footer-contact {
        gap: 0.875rem;
    }

        .footer-contact a {
            font-size: 0.875rem;
        }

    .footer-cta {
        padding: 1.5rem 0.75rem;
    }

        .footer-cta h2 {
            font-size: 1.4rem;
        }

        .footer-cta .btn-outline-white {
            padding: 0.5rem 1.5rem;
            font-size: 0.875rem;
            border-width: 1px;
        }

    .footer-bottom {
        margin-top: 1.25rem;
    }

        .footer-bottom p {
            font-size: 0.75rem;
            opacity: 0.85;
            line-height: 1.4;
        }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-green-bg);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

        .main-nav.active {
            display: block;
        }

        .main-nav ul {
            flex-direction: column;
        }

        .main-nav li {
            margin: 0.5rem 0;
        }

    .hero h1, .page-hero h1 {
        font-size: 2.5rem;
    }

    .main-hero h1 {
        font-size: 2.8rem;
    }

    .strategic-hero h1 {
        font-size: 2rem;
    }

    .industries-heading {
        font-size: 1.8rem;
    }

    .table-header, .table-row {
        grid-template-columns: 1fr;
    }

        .table-header .vendor, .table-row .vendor {
            display: none;
        }

        .table-header .feature-name {
            text-align: center;
        }
}

@media (max-width: 767.98px) {
    .hero h1, .page-hero h1 {
        font-size: 2rem;
    }

    .main-hero h1 {
        font-size: 2.2rem;
    }

    .main-hero {
        padding: 6rem 0;
    }

    .strategic-hero h1 {
        font-size: 1.8rem;
    }

    .industries-heading {
        font-size: 1.6rem;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }

        .footer-contact a {
            margin: 0.5rem 0;
        }

    .pricing-card {
        margin-bottom: 2rem;
    }

    .table-row {
        padding: 1rem;
    }

        .table-row .vendor {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
        }

            .table-row .vendor::before {
                content: attr(data-label);
                font-weight: 600;
            }

            .table-row .vendor:last-child {
                border-bottom: none;
            }
}

@media (max-width: 575.98px) {
    .hero, .page-hero {
        padding: 4rem 0;
    }

    .main-hero {
        padding: 5rem 0;
    }

    .hero h1, .page-hero h1 {
        font-size: 1.8rem;
    }

    .main-hero h1 {
        font-size: 2rem;
    }

    .strategic-hero h1 {
        font-size: 1.6rem;
    }

    .industries-heading {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .benefit-card, .feature-card, .pricing-card, .industry-card {
        padding: 1.5rem;
    }

    .testimonial-slider {
        padding: 2rem 1.5rem;
    }

    .client-images img {
        width: 60px;
        height: 60px;
    }

    .industry-grid-item {
        height: 180px;
    }
}

@media (min-width: 992px) {
    .industries-grid .row .col-lg-3 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

@media (min-width: 992px) {
    .features-grid .row .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .main-hero h1 {
        font-size: 3rem;
    }

    .industries-slider {
        padding: 0 30px;
    }

    .slider-arrow.prev {
        left: -15px;
    }

    .slider-arrow.next {
        right: -15px;
    }
}

@media (max-width: 991.98px) {
    /* Header */
    .header {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 28px;
    }

    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--dark-green-bg);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 1000;
    }

        .main-nav.active {
            display: block;
        }

        .main-nav ul {
            flex-direction: column;
            gap: 0.5rem;
        }

        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

            .main-nav a:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

    /* Hero Section */
    .main-hero {
        padding: 5rem 0;
        text-align: center;
    }

        .main-hero h1 {
            font-size: 2.5rem;
        }

        .main-hero p {
            margin: 0 auto;
        }

    /* Heavy Loads Section */
    .heavy-loads {
        padding: 4rem 0;
    }

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

    /* Maximize Potential Section */
    .benefit-card {
        margin-bottom: 2rem;
    }

    /* Industries Section */
    .industries-showcase {
        padding: 4rem 0;
    }

    .industries-heading {
        font-size: 2rem;
    }

    .industry-showcase-item {
        height: 200px;
    }

    .industry-name {
        font-size: 1.2rem;
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    /* Header */
    .header {
        padding: 0.5rem 0;
    }

    /* Hero Section */
    .main-hero {
        padding: 4rem 0;
    }

        .main-hero h1 {
            font-size: 2rem;
        }

        .main-hero p {
            font-size: 1rem;
        }

    /* Heavy Loads Section */
    .section-title {
        font-size: 1.8rem;
    }

    /* Maximize Potential Section */
    .benefit-card {
        padding: 1.5rem;
    }

        .benefit-card h3 {
            font-size: 1.3rem;
        }

    /* Industries Section */
    .industries-heading {
        font-size: 1.8rem;
    }

    .industry-showcase-item {
        height: 180px;
        margin-bottom: 1rem;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonial-slider {
        padding: 0 40px;
        margin: 0 auto;
    }

    .testimonial-content {
        padding: 0 0.5rem;
    }

        .testimonial-content p {
            font-size: 1rem;
            line-height: 1.6;
        }

    .slider-arrow {
        width: 35px;
        height: 35px;
        background-color: var(--primary-color);
        color: white;
        border: none;
    }

        .slider-arrow.prev {
            left: 0;
        }

        .slider-arrow.next {
            right: 0;
        }

    .client-images {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2rem 1rem 0;
    }

        .client-images img {
            width: 100%;
            height: auto;
            min-width: 80px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
}

@media (max-width: 575.98px) {
    /* Hero Section */
    .main-hero h1 {
        font-size: 1.8rem;
    }

    .main-hero p {
        font-size: 0.95rem;
    }

    /* Heavy Loads Section */
    .section-title {
        font-size: 1.6rem;
    }

    /* Maximize Potential Section */
    .benefit-card {
        padding: 1.25rem;
    }

        .benefit-card h3 {
            font-size: 1.2rem;
        }

    /* Industries Section */
    .industries-heading {
        font-size: 1.6rem;
    }

    .industry-showcase-item {
        height: 160px;
    }

    .industry-name {
        font-size: 1.1rem;
        padding: 0.75rem;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

    /* Testimonials Section */
    .testimonial-content p {
        font-size: 0.9rem;
    }

    .client-images {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-cta h2 {
        font-size: 1.6rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Buttons */
    .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Additional Small Screen Optimizations */
@media (max-width: 360px) {
    .main-hero h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .industries-heading {
        font-size: 1.4rem;
    }

    .industry-showcase-item {
        height: 140px;
    }

    .industry-name {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .footer-cta h2 {
        font-size: 1.4rem;
    }
}

/* Testimonials Section Responsive Styles */
@media (max-width: 991.98px) {
    .testimonials {
        padding: 4rem 1rem;
    }

        .testimonials h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

    .testimonial-slider {
        padding: 0 40px;
        margin: 0 auto;
    }

    .testimonial-content {
        padding: 0 0.5rem;
    }

        .testimonial-content p {
            font-size: 1rem;
            line-height: 1.6;
        }

    .slider-arrow {
        width: 35px;
        height: 35px;
        background-color: var(--primary-color);
        color: white;
        border: none;
    }

        .slider-arrow.prev {
            left: 0;
        }

        .slider-arrow.next {
            right: 0;
        }

    .client-images {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2rem 1rem 0;
    }

        .client-images img {
            width: 100%;
            height: auto;
            min-width: 80px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
}

@media (max-width: 767.98px) {
    .testimonials {
        padding: 3rem 1rem;
    }

        .testimonials h2 {
            font-size: 1.8rem;
        }

    .testimonial-slider {
        padding: 0 35px;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

    .client-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

        .client-images img {
            min-width: 100px;
        }
}

@media (max-width: 575.98px) {
    .testimonials {
        padding: 2.5rem 1rem;
    }

        .testimonials h2 {
            font-size: 1.6rem;
        }

    .testimonial-slider {
        padding: 0 30px;
    }

    .testimonial-content {
        padding: 0;
    }

        .testimonial-content p {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

    .testimonial-author {
        font-size: 0.9rem;
    }

        .testimonial-author::before,
        .testimonial-author::after {
            width: 30px;
        }

    .slider-arrow {
        width: 28px;
        height: 28px;
    }

        .slider-arrow svg {
            width: 20px;
            height: 20px;
        }

    .client-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 0.5rem 0;
    }

        .client-images img {
            min-width: 90px;
            border-radius: 6px;
        }
}

@media (max-width: 360px) {
    .testimonials h2 {
        font-size: 1.4rem;
    }

    .testimonial-slider {
        padding: 0 25px;
    }

    .client-images {
        gap: 0.75rem;
    }

        .client-images img {
            min-width: 80px;
        }
}

.feature-icon-simple {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

    .feature-icon-simple img {
        width: 64px;
        height: 64px;
        margin-bottom: 15px;
    }

    .feature-icon-simple p {
        font-size: 1rem;
        line-height: 1.4;
        margin: 0;
        color: #333;
    }

.feature-table {
    margin: 30px 0;
}

.feature-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    height: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .feature-box:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

    .feature-box h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .feature-box p {
        font-size: 0.9rem;
        color: #666;
        margin: 0;
        line-height: 1.5;
    }

.features-grid h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.features-grid h4.or-divider {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 30px 0;
    text-align: center;
    position: relative;
}

.text-muted {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .feature-icon-simple {
        padding: 15px;
        margin-bottom: 20px;
    }

        .feature-icon-simple img {
            width: 48px;
            height: 48px;
        }

        .feature-icon-simple p {
            font-size: 0.9rem;
        }

    .feature-box {
        padding: 15px;
    }

        .feature-box h4 {
            font-size: 1rem;
        }

        .feature-box p {
            font-size: 0.85rem;
        }
}

/* What We Offer Section */
.what-we-offer {
    padding: 80px 0;
    background-color: #fff;
    margin: 120px 0;
}

.what-we-offer-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

    .what-we-offer-img img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

.what-we-offer-content {
    padding-left: 20px;
}

.what-we-offer .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.what-we-offer .section-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-bullet {
    color: #006633;
    font-size: 24px;
    margin-right: 12px;
    line-height: 1;
}

.feature-text {
    flex: 1;
}

    .feature-text strong {
        display: block;
        color: #333;
        margin-bottom: 4px;
    }

@media (max-width: 991px) {
    .what-we-offer-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .what-we-offer .section-title {
        font-size: 30px;
    }
}

/* Why Choose FieldAxle Section */
.why-choose-fieldaxle {
    background-image: url('images/About/about-bg.png');
    background-size: cover;
    background-position: center;
    /* background-color: var(--dark-green-bg); */
    padding: 100px 0;
    position: relative;
    color: white;
}

    .why-choose-fieldaxle::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: rgba(0, 0, 0, 0.7); */
        z-index: 1;
    }

    .why-choose-fieldaxle .container {
        position: relative;
        z-index: 2;
    }

.why-choose-content {
    padding-right: 40px;
    height: 100%; /* Match content height with image */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose-fieldaxle .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.why-choose-fieldaxle .section-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px; /* Reduced gap between points */
}

.benefit-icon {
    flex-shrink: 0;
    margin-right: 15px;
    width: 24px;
    height: 24px;
}

    .benefit-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        color: #006633;
    }

.benefit-text {
    flex: 1;
}

    .benefit-text strong {
        display: block;
        color: white;
        font-size: 18px;
        margin-bottom: 5px;
    }

.why-choose-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 100%;
}

    .why-choose-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        border-radius: 0; /* Removed border radius */
    }

@media (max-width: 991px) {
    .why-choose-fieldaxle {
        padding: 60px 0;
    }

    .why-choose-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .why-choose-fieldaxle .section-title {
        font-size: 30px;
    }

    .benefit-text strong {
        font-size: 16px;
    }
}
