@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

.oswald {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

body {
    background: linear-gradient(135deg, #ffff, #e3ff80);
}

/* ==================================== */
.featured-image {
    width: 100%;
    height: 270px !important;
    object-fit: cover;
}

.blog-img {
    width: 100%;
    height: 250px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background: #000
}


/* ====================================== */
.services-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 90%;
    max-width: 400px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    border-radius: 20px;
    transition: transform 0.3s ease;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.services-menu.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.services-menu .menu-link {
    display: block;
    padding: 10px 0;
    color: #1c1c1c;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.services-menu .menu-link:hover {
    color: #1faa84;
    transform: translateX(5px);
}

.fixed-bottom-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Pulse Animation */
.wave-animate {
    animation: pulse-wave 2.5s infinite ease-in-out;
}

@keyframes pulse-wave {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 170, 132, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(31, 170, 132, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(31, 170, 132, 0);
    }
}

/* ============================================= */
.fixed-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.fixed-bottom-right.show {
    opacity: 1;
    visibility: visible;
}

/* ===================================================== */

.fixed-bottom-left-2 {
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* ======================================================= */
.fixed-bottom-left-3 {
    position: fixed;
    bottom: 160px;
    left: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-animate {
    animation: pulse-wave 2.5s infinite ease-in-out;
}

@keyframes pulse-wave {
    0% {
        box-shadow: 0 0 0 0 rgba(180, 240, 140, 0.699);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(1, 255, 187, 0);
    }
}

/* ======================================================= */

.nav-pills .nav-link {
    border-radius: 50px;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.nav-pills .nav-link.btn-green {
    background-color: #a2c800;
    color: #000;
}

.service-table table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border-radius: 1rem;
    overflow: hidden;
}

.service-table tbody tr:hover {
    background-color: #e3ff80;
    box-shadow: inset 0 0 0 1000px rgba(0, 123, 255, 0.03);
}

.service-table td,
.service-table th {
    word-wrap: break-word;
    padding: 1rem;
}

.service-table th {
    background-color: #a2c800;
}

/* ========================================= */
.bg-green {
    background-color: #e3ff80;
}

.bg-green-deep {
    background-color: #9abd00;
}

.text-green {
    color: #e3ff80;
}


.btn-green {
    background-color: #e3ff80;
    color: #212529;
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.btn-green:hover,
.btn-green:focus,
.btn-green:active {
    background-color: #d4f76a;
    color: #212529;
    text-decoration: none;
}

/* Optional: focus ring */
.btn-green:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(227, 255, 128, 0.5);
}

/* Text: Deep Green */
.text-green-deep {
    color: #a2c800;
}

/* Button: Deep Green */
.btn-green-deep {
    background-color: #a2c800;
    color: #000;
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.btn-green-deep:hover,
.btn-green-deep:focus,
.btn-green-deep:active {
    background-color: #91b400;
    color: #fff;
    text-decoration: none;
}

.btn-green-deep:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(162, 200, 0, 0.5);
}

.btn-green:active,
.btn-green:focus:active,
.btn-check:checked+.btn-green {
    background-color: #d4f76a !important;
    color: #212529 !important;
    box-shadow: none;
    border-color: transparent;
}

.btn-green-deep:active,
.btn-green-deep:focus:active,
.btn-check:checked+.btn-green-deep {
    background-color: #91b400 !important;
    color: #fff !important;
    box-shadow: none;
    border-color: transparent;
}


/* -------------------------------------------- */
.top-bar {
    background-color: #e3ff80;
    font-size: 0.95rem;
    font-weight: 500;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: white;
    color: #28a745;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #d4f76a;
    color: #000;
}

.top-bar i {
    font-size: 0.9rem;
}


/* ----------------------------------------------- */

nav .navbar-nav .nav-link {
    color: #e3ff80 !important;
    font-size: 17px !important;
}

.navbar-toggler-icon {
    filter: invert(1) brightness(2);
}

.service-link {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 1rem;
}

.service-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.76);
    transform: translateY(-5px);
}

/* --------------------------------------------------- */

/* .hero-section {
    position: relative;
    background: url('../img/home-bg.jpg') center/cover no-repeat;
    color: white;
} */

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: white;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left,
            rgba(33, 41, 0, 0.279),
            rgba(0, 0, 0, 0.355));
    z-index: 0;
}



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

.navbar-brand.text-green:hover {
    color: inherit;
    text-decoration: none;
}


/* ------------------------------------------------------ */
#our-process .process-card {
    background: linear-gradient(135deg, #fcffbf, #dcffcd);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #295227;
}

#our-process .process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #198754, #ffc107);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease-in-out;
    border-radius: 20px;
}

#our-process .process-card:hover::before {
    opacity: 1;
}

#our-process .process-card:hover {
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

#our-process .process-card:hover p,
#our-process .process-card:hover h5 {
    color: white !important;
}

#our-process .process-card p {
    color: #3c3b3b !important;
}

#our-process .icon-style {
    font-size: 2.5rem;
    color: #295227;
    margin-bottom: 1rem;
    transition: color 0.3s ease-in-out;
}

#our-process .process-card:hover .icon-style {
    color: white;
}

#our-process .process-card h5 {
    margin-bottom: 0.75rem;
}

/* ---------------------------------------------------- */
#testimonials {
    background: linear-gradient(135deg, #0c442a, #11cb74);
    position: relative;
}



#testimonials .testimonial-card {
    position: relative;
    background: rgb(255, 255, 255);
    border-radius: 20px !important;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.06);
    backdrop-filter: saturate(180%) blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: #222;
    cursor: default;
    overflow: hidden;
    z-index: 0;
}

/* Gradient background using ::before */
#testimonials .testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #198754, #ffc107);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

#testimonials .testimonial-card:hover::before {
    opacity: 1;
}

#testimonials .testimonial-card:hover {
    background: rgba(255 255 255 / 0.15);
    /* Slightly transparent so gradient is visible */
    transform: translateY(-10px);
    box-shadow:
        0 12px 20px rgba(32, 168, 73, 0.5),
        0 4px 10px rgba(32, 168, 73, 0.3);
    color: white;
}

/* Text color changes on hover */
#testimonials .testimonial-card p,
#testimonials .testimonial-card h6,
#testimonials .testimonial-card small {
    transition: color 0.4s ease;
}

#testimonials .testimonial-card:hover p,
#testimonials .testimonial-card:hover h6,
#testimonials .testimonial-card:hover small {
    color: white;
}

/* Image border */
#testimonials .testimonial-card img {
    border: 3px solid transparent;
    transition: border-color 0.4s ease;
    z-index: 1;
    position: relative;
}

#testimonials .testimonial-card:hover img {
    border-color: #fff;
}

/* ---------------------------------------------- */
#cta {
    background: linear-gradient(135deg, #198754, #56ccf2);
    color: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(25, 135, 84, 0.5);
    transition: box-shadow 0.3s ease;
}


#cta .btn:hover {
    background-color: #117a37;
    color: #fff;
    box-shadow: 0 6px 15px rgba(17, 122, 55, 0.7);
}

/* ----------------------------------------------- */
#faq .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #f1fff0, #e6ffe6);
    color: #198754;
    transition: background 0.5s ease, color 0.4s ease;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

#faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #198754, #56ccf2);
    color: white;
}

#faq .accordion-button:hover {
    background: linear-gradient(135deg, #0f5132, #198754);
    color: #fff;
}

#faq .accordion-body {
    background: #f8fdf8;
    border-radius: 0 0 12px 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #444;
}

#faq .gradient-faq {
    background: linear-gradient(135deg, #ffffff, #e9fce9);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
}

#faq .gradient-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(25, 135, 84, 0.2);
}

#faq .accordion-item:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------------- */
#portfolio {
    background: #f9fafe;
}

.work-card {
    background: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(25, 135, 84, 0.2);
    background: linear-gradient(135deg, #198754, #ffc107);
    color: white !important;

}

.work-card:hover h5,
.work-card:hover p {
    color: white !important;
}

.work-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-card:hover img {
    transform: scale(1.05);
}

/* ----------------------------------------------------------- */
.gradient-team-1 {
    background: linear-gradient(135deg, #1d976c, #93f9b9);
}

.gradient-team-2 {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.gradient-team-3 {
    background: linear-gradient(135deg, #4776e6, #8e54e9);
}

.gradient-team-4 {
    background: linear-gradient(135deg, #fc5c7d, #6a82fb);
}

.team-card:hover {
    transform: translateY(-6px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* -------------------------------------------- */
/* Container background */


#blog {
    background: linear-gradient(135deg, #0b0c10, #1f4037, #2575fc);
}


/* Blog images */
#blog .blog-img {
    height: 200px;
    object-fit: cover;
}

/* Card base styles */
#blog .card {
    position: relative;
    overflow: hidden;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    border-radius: 1rem;
    /* matches .rounded-4 */
    z-index: 0;
}

/* Gradient border with masking */
#blog .card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    /* thickness of gradient border */
    border-radius: 1rem;
    background: linear-gradient(135deg, #ff0080, #7928ca, #2575fc, #38ef7d);

    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

/* Hover effect */
#blog .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 10px 35px rgba(38, 86, 232, 0.8);
    background: rgba(255, 255, 255, 0.25);
}

/* Card body text */
#blog .card-body {
    transition: color 0.35s ease;
}



/* ---------------------------------------------------------- */

/* General Footer Styling */
footer {
    color: #ffffff !important;
    font-family: 'Segoe UI', sans-serif;
    border-top: 4px solid #ffc107;
}

/* First Row: Email and Social Icons */
footer h6 {
    font-size: 1rem;
}

footer a {
    transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
    color: #ffc107 !important;
    transform: translateY(-2px);
}

footer i.fab {
    font-size: 1.1rem;
    color: black !important;
}

/* Section Titles */
footer h5 {
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

footer h5::after {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 5px;
}

/* Paragraphs and text */
footer p,
footer li,
footer a {
    font-size: 0.95rem;
}

/* Footer List Styling */
footer ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

footer ul li i {
    color: #ffffff;
    margin-right: 8px;
}

/* Social Media Icons */
footer .fab {
    font-size: 1.2rem;
    background: #ffffff;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 20px;
}

footer .fab:hover {
    background: linear-gradient(135deg, #f6d365, #fda085);
    color: #000000;
}

/* Copyright Section */
footer .border-top {
    border-color: #ffffff !important;
}

footer .text-muted {
    color: #ffffff !important;
}

/* ----------------------------------------- */

.inner-header-section .row.text-center .col-6 {
    padding: 10px 0 !important;
    border-radius: 8px !important;
    transition: background-color 0.3s !important;
}

.inner-header-section .row.text-center .col-6:hover {
    background-color: rgba(255, 255, 255, 0.227) !important;
}

.inner-header-section h2 {
    color: #e3ff80 !important;
    font-size: 2rem !important;
}

/* -------------------------------------------- */
/* For nested dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

/* -------------------------------------------------- */
#cta-section {
    background: linear-gradient(135deg, #198754, #56ccf2);
    color: white;
}

#cta-section input,
#cta-section textarea {
    border-radius: 10px;
    border: none;
}

#cta-section input:focus,
#cta-section textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ----------------------------------------------------- */
.transition {
    transition: all 0.3s ease-in-out !important;
}

.transition:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

/* ---------------------------------------------------- */
.why-choose-bg {
    background: linear-gradient(135deg, #e3ff80, rgb(92, 186, 142));
}

#header-illustration {
    max-width: 400px;
    height: auto;
}

.current_page_item {
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 30px;
    }
}

.service-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    background: #f6fff8;
    border-color: #9abd00;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-icon i {
    font-size: 26px;
    color: #9abd00;
}

.service-text {
    font-size: 16px;
}