/* services.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body, header, nav, ul, li, a, button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

body {
    background-color: #FFFFFF;
    color: #34331C;
    line-height: 1.6;
}

/* Navbar Styles */
header {
    background-color: #FFFFFF;
    padding: 20px;
    border-bottom: 1px solid #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
}

.logo, .footer-logo {
    display: flex; /* Ensure the container aligns the image properly */
    align-items: center; /* Vertically center the image */
    flex-shrink: 0; /* Prevent the logo container from shrinking */
}

/* Styling for the logo image in the navbar */
.logo-image {
    height: 40px; /* Adjust height to fit your design */
    width: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Replace color transition with a scale effect */
}

/* Hover effect for the navbar logo */
.logo:hover .logo-image {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

/* Styling for the logo image in the footer */
.footer-logo-image {
    height: 40px; /* Adjust height to fit your design */
    width: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease;
}

/* Hover effect for the footer logo */
.footer-logo:hover .footer-logo-image {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #34331C;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: #34331C;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links a.active {
    background-color: #21871E;
    color: #FFFFFF;
}

.nav-links a:hover {
    color: #FFFFFF;
    background-color: #21871E;
}

.apply-btn {
    background-color: #21871E;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.apply-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

/* Hero Section */
.services-hero {
    background-color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero .hero-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 10px;
}

.services-hero .hero-content h1 {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #34331C;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-hero .hero-content p {
    font-size: 18px;
    color: #34331C;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button, .newsletter-btn {
    background-color: #34331C;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover, .newsletter-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

/* Solutions Section */
.services-solutions {
    background-color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.services-solutions h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 20px;
}

.services-solutions p {
    font-size: 16px;
    color: #34331C;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.solution-card {
    background-color: #FFFFFF;
    padding: 20px;
    text-align: center;
}

.solution-icon {
    font-size: 48px;
    color: #34331C;
    margin-bottom: 10px;
}

.solution-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 14px;
    color: #34331C;
}

/* Impact Section */
.services-impact {
    background-color: #FFFFFF;
    padding: 40px 20px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.services-impact.reversed .impact-card {
    flex-direction: row-reverse;
}

.impact-card {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* Emoji Icon Styling */
.emoji-icon {
    font-size: 24px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}

/* Benefits List Styling */
.benefits-list {
    margin-top: 20px;
}

/* Individual Benefit Item Styling */
.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #34331C;
}

.impact-content {
    flex: 1;
    min-width: 300px;
}

.impact-card h2 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.impact-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 20px;
}

.impact-card p {
    font-size: 16px;
    color: #34331C;
    margin-bottom: 20px;
}

.impact-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.stat span {
    font-size: 24px;
    font-weight: 700;
    color: #34331C;
}

.stat p {
    font-size: 14px;
    color: #34331C;
    margin: 0;
}

.impact-image {
    flex: 1;
    min-width: 300px;
    padding-bottom: 50%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.impact-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 10px;
}

.testimonials-subheading {
    font-size: 16px;
    color: #34331C;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 20px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 10px;
}

.testimonial-quote {
    font-size: 14px;
    color: #34331C;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-image {
    width: 40px;
    height: 40px;
    background-color: #D3D3D3;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 14px;
    color: #34331C;
    font-weight: 700;
    margin: 0;
}

.author-details {
    font-size: 12px;
    color: #34331C;
    margin: 0;
}

/* General Section Header Styling */
.section-header {
    text-align: center;
    padding: 20px 0;
}

.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #21871E;
    display: block;
    margin: 10px auto;
}

.section-header p {
    font-size: 16px;
    color: #34331C;
    max-width: 800px;
    margin: 0 auto;
}

/* Our Process Section */
.our-process {
    background: white;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.step-card {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.step-icon {
    font-size: 32px;
    color: #21871E;
    display: block;
    margin-bottom: 10px;
}

.step-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #34331C;
}

/* Industries We Serve Section */
.industries-we-serve {
    background-color: #FFFFFF;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.industry-card {
    background-color: #F8F9FA;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #34331C;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.industry-card:hover {
    background-color: #21871E;
    color: #FFFFFF;
}

/* Modal Styling */
.modals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 1000;
}

.modals.active {
    display: block;
}

.modals .modals-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.modals .modals-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 60rem;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #34331C;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #21871E;
}

/* Logo Container */
.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

/* Modal Logo */
.modal-logo {
    width: auto; /* Allow natural width */
    height: 80px; /* Fixed height to ensure consistency */
    max-width: 150px; /* Cap width to prevent overly large logos */
    object-fit: contain; /* Preserve aspect ratio without stretching */
    display: block; /* Ensure proper rendering */
}

/* Get Started Today Section */
.get-started { /* Corrected from .get */
    background: white;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Styles */
footer {
    background-color: #FFFFFF;
    color: #34331C;
    width: 100%;
    padding: 40px 0;
    margin: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #34331C;
    transition: color 0.3s ease;
}

.footer-logo:hover {
    color: #21871E;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #34331C;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #21871E;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    width: 200px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    color: #34331C;
}

.newsletter-form input[type="email"]::placeholder {
    color: #666;
}

.subscribe-btn {
    background-color: #044201;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    transition: background-color 0.3s ease;
}

.newsletter-form .subscribe-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

.privacy-text {
    font-size: 12px;
    color: #34331C;
}

.privacy-text a {
    color: #21871E;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-text a:hover {
    color: #065401;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 20px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.bottom-left {
    display: flex;
    gap: 15px;
}

.bottom-left a {
    color: #34331C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-left a:hover {
    color: #21871E;
}

.bottom-right {
    color: #34331C;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #E0E0E0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        text-align: center;
    }

    .apply-btn {
        width: 100%;
        margin-top: 10px;
        padding: 10px 20px;
    }

    .services-hero .hero-content h1 {
        font-size: 28px;
    }

    .services-hero .hero-content p {
        font-size: 14px;
    }

    .services-solutions h2 {
        font-size: 24px;
    }

    .services-solutions p {
        font-size: 14px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-card h3 {
        font-size: 18px;
    }

    .solution-card p {
        font-size: 12px;
    }

    .solution-icon {
        font-size: 36px;
    }

    .services-impact.reversed .impact-card {
        flex-direction: column;
    }

    .impact-card {
        flex-direction: column;
        gap: 20px;
    }

    .impact-card h3 {
        font-size: 24px;
    }

    .impact-card p {
        font-size: 14px;
    }

    .impact-stats {
        flex-direction: column;
        gap: 10px;
    }

    .stat span {
        font-size: 20px;
    }

    .stat p {
        font-size: 12px;
    }

    .impact-image {
        min-width: 100%;
        padding-bottom: 100%;
    }

    .testimonials-section h2 {
        font-size: 24px;
    }

    .testimonials-subheading {
        font-size: 14px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stars {
        font-size: 18px;
    }

    .testimonial-quote {
        font-size: 12px;
    }

    .author-image {
        width: 30px;
        height: 30px;
    }

    .author-name {
        font-size: 12px;
    }

    .author-details {
        font-size: 10px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .our-process {
        padding: 30px 15px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 15px;
    }

    .step-icon {
        font-size: 28px;
    }

    .step-card h3 {
        font-size: 16px;
    }

    .step-card p {
        font-size: 12px;
    }

    .industries-we-serve {
        padding: 30px 15px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        font-size: 12px;
    }

    .modals .modals-content-wrapper {
        width: 90vw;
        max-width: 90vw;
        padding: 1.5rem;
    }

    .close-button {
        font-size: 20px;
    }

    .logo-container {
        gap: 15px; /* Smaller gap for mobile */
    }

    .modal-logo {
        height: 60px; /* Smaller height for mobile */
        max-width: 120px; /* Smaller max-width for mobile */
    }

    .get-started {
        padding: 30px 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }

    .bottom-left, .bottom-right {
        text-align: left;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-icon {
        font-size: 42px;
    }

    .impact-card {
        flex-wrap: nowrap;
        gap: 30px;
    }

    .impact-image {
        min-width: 40%;
    }

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

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 15px;
    }

    .our-process {
        padding: 35px 20px;
    }

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

    .industries-we-serve {
        padding: 35px 20px;
    }

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

   .modal-logo {
        height: 70px; /* Medium height for tablets */
        max-width: 130px;
    }

    .get-started {
        padding: 35px 20px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-left {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-right {
        align-items: flex-end;
    }

    .newsletter-form input[type="email"] {
        width: 250px;
    }
}