/* General Reset and Body Styling */
* {
    box-sizing: border-box;
    font-family: 'Lobster Two', 'Arial', sans-serif;
}

/* Global Styles */
body {
    background-color: #121212;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: #2ecc71 !important;
    font-weight: 600;
}

label {
    color: #e0e0e0 !important;
}

/* Header and Navigation */
header.navbar {
    display: flex;
    background-color: #161b22;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 2rem;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-weight: bold;
}

.navbar a {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2a9d8f;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.navbar a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.navbar-item:hover {
    color: #2a9d8f !important;
}

.navbar-item {
    color: white !important;
}

.navbar-burger {
    color: white !important;
}

/* Testimonial Section */
#testimonials {
    padding: 50px 0;
    background-color: #161b22 !important;
    /* Dark background to match site theme */
}

#testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#testimonials .title {
    text-align: center;
    font-size: 2.5rem;
    color: #2ecc71;
    /* Green accent */
    margin-bottom: 30px;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
    max-width: 100%;
    /* Prevents overflow */
    overflow: hidden;
    /* Ensures no unexpected white space */
    padding-bottom: 100px;
    /* Adds some spacing to avoid clipping */
}


.testimonial {
    background-color: #121212;
    /* Darker card background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    width: 30%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid rgba(46, 204, 113, 0.3);
    /* Subtle green border */
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(46, 204, 113, 0.3);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #2ecc71;
    /* Green border around images */
}

.testimonial-text {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2ecc71;
    /* Green name */
}

.testimonial-position {
    font-size: 1rem;
}

/* Footer Section */
.footer {
    background-color: #0a0a0a;
    color: #888;
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2ecc71, transparent);
}


/* footer-icons.css */
.social-icons a i {
    color: #22c55e;
    /* A nice green shade */
    transition: color 0.2s;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

/* Add fix for footer column alignment */
.footer .column.is-4 {
    text-align: center !important;
    float: none !important;
    margin: 0 auto !important;
}

.social-icons a:hover i {
    color: #16a34a;
    /* Darker green on hover */
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .testimonials {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        width: 80%;
        margin-bottom: 20px;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar a {
        font-size: 0.9rem;
        color: white !important;
    }

    .navbar-menu {
        background-color: #000;
        box-shadow: 0 8px 16px rgba(10, 10, 10, .1);
        padding: .5rem 0
    }
}