:root {
    --primary-green: #B9FF66;
    --primary-dark: #191A23;
    --light-grey: #F3F3F3;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-dark);
}

/* Color Classes */
.bg-green { background-color: var(--primary-green) !important; }
.bg-grey { background-color: var(--light-grey) !important; }
.bg-dark { background-color: var(--primary-dark) !important; }
.text-green { color: var(--primary-green) !important; }
.text-dark { color: var(--primary-dark) !important; }

/* Navbar Logo Styles */
.brand-icon {
    height: 30px;
    width: auto;
}
.brand-text {
    font-weight: 600;
    font-size: 28px;
    color: var(--primary-dark);
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-size: 18px;
    color: var(--primary-dark);
    font-weight: 400;
    margin-right: 15px;
    position: relative;
}

/* Navbar Hover */
.navbar-nav .nav-link:hover {
    color: var(--primary-dark) !important; 
}

/* Smooth Green Underline */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-green);
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Request Quote Button */
.btn-quote {
    text-decoration: none;
    padding: 12px 28px;
    border: 1px solid var(--primary-dark);
    border-radius: 14px;
    color: var(--primary-dark);
    font-size: 18px;
    display: inline-block;
    transition: 0.3s;
}

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

/* Hero Button */
.btn-main {
    display: inline-block;
    background-color: var(--primary-dark);
    color: white;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-size: 20px;
    transition: 0.3s;
}

.btn-main:hover {
    background-color: var(--primary-green);
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
}

/* --- LOGO  --- */
.companies-row {
    justify-content: space-between;
    align-items: center;
}

.companies-row img {
    filter: grayscale(100%);
    width: 140px; 
    height: auto; 
    opacity: 0.9;
    object-fit: contain;
}

/* Mobile responsive fixes for logos */
@media(max-width: 768px) {
    .companies-row { justify-content: center; gap: 30px; }
    .companies-row img { width: 110px; }
}

/* Headings */
.section-title {
    background-color: var(--primary-green);
    display: inline-block;
    padding: 0 7px;
    border-radius: 7px;
    font-weight: 500;
    font-size: 40px;
}

/* Service Box */
.service-box {
    border: 1px solid var(--primary-dark);
    border-radius: 45px;
    padding: 50px;
    height: 310px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 5px 0px 0px var(--primary-dark);
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    top: 0;
}

.service-box:hover {
    box-shadow: none;
    top: 5px;
}

.box-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.box-img {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-img img {
    max-height: 170px;
    max-width: 100%;
}

.highlight-green, .highlight-white {
    background-color: var(--primary-green);
    font-size: 30px;
    font-weight: 500;
    padding: 0 7px;
    border-radius: 7px;
    line-height: 1.4;
    display: inline-block;
}

.highlight-white {
    background-color: white;
}

/* Footer & Icons */
.box-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- ARROW --- */
.circle-icon {
    width: 41px; 
    height: 41px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-icon {
    font-size: 18px; 
    transition: 0.3s ease;
}

.service-box:hover .arrow-icon {
    transform: rotate(45deg);
}

.link-text {
    font-size: 20px;
    display: none;
}

@media(min-width: 768px) {
    .link-text { display: block; }
}

/* --- CTA SECTION --- */
.cta-section {
    background-color: var(--light-grey);
    border-radius: 45px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--primary-dark);
    position: relative;
    margin-top: 100px;
}

.cta-text {
    flex: 1; 
    max-width: 550px;
    position: relative;
    z-index: 10;
}

.cta-img-container {
    flex: 1;
    display: flex;
    justify-content: flex-end; 
    position: relative;
}

.cta-img-container img {
    max-width: 350px; 
    height: auto;
    position: absolute;
    right: 30;
    top: -200px; 
}

@media(max-width: 991px) {
    .cta-section {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    .cta-img-container {
        display: none; 
    }
    .cta-text {
        max-width: 100%;
    }
}
/* --- CASE STUDIES SECTION --- */
.case-study-box {
    border-radius: 45px;
    padding: 60px;
}

/* Vertical Line Separator Logic */
.border-right-white {
    border-right: 1px solid white;
    padding-right: 40px;
}

@media(max-width: 992px) {
    .border-right-white {
        border-right: none;
        border-bottom: 1px solid white;
        padding-bottom: 30px;
        padding-right: 0;
    }
}

.learn-link {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}
.learn-link:hover {
    color: #fff;
}
/* --- WORKING PROCESS --- */

.process-card {
    border: 1px solid var(--primary-dark);
    border-radius: 45px;
    background-color: var(--light-grey);
    margin-bottom: 30px;
    box-shadow: 0px 5px 0px 0px var(--primary-dark);
    transition: 0.3s;
    overflow: hidden; 
}

/* The Button Header */
.process-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s;
}


.process-btn:not(.collapsed) {
    background-color: var(--primary-green);
    border-bottom-left-radius: 0; 
    border-bottom-right-radius: 0;
}

.process-btn.collapsed {
    background-color: var(--light-grey);
    border-radius: 45px; 
}

/* Text Styling */
.step-num {
    font-size: 60px;
    font-weight: 500;
    margin-right: 25px;
}

.step-title {
    font-size: 30px;
    font-weight: 500;
    flex-grow: 1;
}


.toggle-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-grey);
    flex-shrink: 0;
    
   
    font-size: 28px; 
}


.process-btn:not(.collapsed) .toggle-icon i::before {
    
    content: "\F2E5"; 
    font-weight: bold;
}


.accordion-collapse {
    background-color: var(--primary-green);
    border-top: 1px solid var(--primary-dark); 
}

.process-body {
    padding: 30px 50px 40px 50px;
}
.process-body hr {
    display: none;
}
/* Mobile Adjustments */
@media(max-width: 768px) {
    .process-btn { padding: 20px; }
    .step-num { font-size: 40px; margin-right: 15px; }
    .step-title { font-size: 18px; }
    .toggle-icon { width: 35px; height: 35px; font-size: 20px; }
    .process-body { padding: 20px; }
}
/* --- TEAM SECTION STYLES --- */
.team-card {
    border: 1px solid var(--primary-dark);
    border-radius: 45px;
    padding: 35px;
    box-shadow: 0px 5px 0px 0px var(--primary-dark);
    background-color: #fff;
    height: 100%;
    transition: 0.3s;
}

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

.card-top {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.member-img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.member-info {
    padding-left: 20px;
    padding-top: 25px;
}

.member-info h5 {
    font-weight: 600;
    margin-bottom: 2px;
}

.member-info p {
    font-size: 14px;
    margin: 0;
}

.linkedin-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: var(--primary-green);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.linkedin-btn:hover {
    background-color: var(--primary-green);
    color: var(--primary-dark);
}

.member-bio {
    font-size: 16px;
    margin: 0;
}

/* --- TESTIMONIALS SECTION STYLES --- */
.testimonials-container {
    border-radius: 45px;
    overflow: hidden;
}

/* The Speech Bubble (Message Box) */
.testimonial-bubble {
    background-color: transparent;
    border: 1px solid var(--primary-green);
    color: white;
    padding: 40px;
    border-radius: 45px;
    font-size: 18px;
    line-height: 1.5;
    position: relative;
    margin-bottom: 40px;
}

/* The Triangle at the bottom of the bubble */
.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 60px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-dark);
    border-left: 1px solid var(--primary-green);
    border-bottom: 1px solid var(--primary-green);
    transform: rotate(-45deg);
}

.testimonial-footer {
    padding-left: 75px;
}

/* Slider Controls */
.slider-arrow {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-arrow:hover {
    color: var(--primary-green);
}

.slider-dots {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

/* Mobile Adjustments */
@media(max-width: 768px) {
    .team-card { padding: 20px; }
    .testimonial-bubble { padding: 20px; font-size: 15px; }
    .testimonial-footer { padding-left: 40px; }
}
/* --- CONTACT SECTION STYLE --- */
.contact-box-main {
    background-color: #F3F3F3; /* Light grey box */
    border-radius: 45px;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

/* Custom Radio Buttons Styling */
.custom-radio .form-check-input {
    width: 28px;
    height: 28px;
    border: 1px solid var(--primary-dark);
    cursor: pointer;
    background-color: #fff;
}

.custom-radio .form-check-input:checked {
    background-color: var(--primary-green); 
    border-color: var(--primary-dark);
    /* Internal black dot logic */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3ccircle cx='10' cy='10' r='5' fill='%23191a23'/%3e%3c/svg%3e");
}

.custom-radio .form-check-label {
    padding-left: 10px;
    font-size: 18px;
    cursor: pointer;
}

/* Form Fields */
.custom-input {
    border: 1px solid var(--primary-dark) !important;
    border-radius: 14px !important;
    padding: 15px 20px !important;
}

.btn-black-send {
    background-color: var(--primary-dark);
    color: #fff;
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    border: none;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-black-send:hover {
    background-color: var(--primary-green);
    color: var(--primary-dark);
}

/* Illustration Overflow */
.contact-img-wrapper {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-illustration {
    max-height: 550px;
    object-fit: contain;
}

/* --- FOOTER STYLE --- */
.footer-final {
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
    margin-top: 100px !important;
}

.footer-links-nav a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: 0.3s;
}

.footer-links-nav a:hover {
    color: var(--primary-green);
}

/* Social Circles */
.social-white-circle {
    background-color: white;
    color: var(--primary-dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
}

/* Newsletter Internal Box */
.newsletter-dark-card {
    background-color: #292A32; /* Contrast dark grey */
    border-radius: 14px;
}

.newsletter-input-field {
    background-color: transparent !important;
    border: 1px solid white !important;
    border-radius: 14px !important;
    color: white !important;
    padding: 12px 20px !important;
}

/* Subscribe Green Button */
.btn-green-subscribe {
    background-color: var(--primary-green);
    color: var(--primary-dark);
    border: none;
    border-radius: 14px;
    width: 100%;
    padding: 12px;
    font-weight: 500;
}

/* Mobile Adjustments */
@media(max-width: 991px) {
    .contact-box-main { padding: 40px 20px; }
    .footer-final { padding: 30px 20px !important; border-radius: 0; }
}
/* --- HERO SECTION 100% MATCH FIX --- */

.hero-container {
    overflow: visible; 
}

.hero-final-large-img {
    width: 100% !important;
    max-width: 525px !important; 
    height: auto !important;
    margin-left: 215px !important; 
    margin-right: -20px !important;
    transform: translateY(-19px) !important;
    display: block;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .hero-final-large-img {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        margin-top: 30px;
    }
}
.hero-text-custom {
    line-height: 1.2 !important; 
    font-size: 60px;            
}
/* --- CONTACT IMAGE & POSITION FIX --- */
.contact-box-main {
    overflow: hidden !important;
    position: relative;
}

.contact-img-wrapper {
    position: absolute;
    right: -425px !important; 
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.contact-illustration {
    width: 750px !important;     
    max-width: none !important;
    height: auto !important;
}
@media (max-width: 991px) {
    .contact-img-wrapper {
        display: none !important;
    }
}