:root {
    /* Primary Colors */
    --primary-color: #4AAB3D;
    /* Green accent */
    --secondary-color: #072032;
    /* Dark blue/nav background */
    --tertiary-color: #3c8f31;
    --quaternary-color: #0c314a;
    --white-color: #ffffff;
    --black-color: #000000;
    --light-border: #e5e7eb;
    --ligt-green-background: #cdffdc6c;
    --rating-color: #f3b100;
    --gray-background-faq: #F7F7F7;
    --gray-text: #555;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow: rgba(0, 0, 0, 0.12);
}


/* Announcement Bar Section Start */
/* Navbar Bar Section Start */
/* Hero Section Start */
/* text image section start */
/* ev steps card start */
/* testimonial card start */
/* faq section start */
/* our offer section start */




/* Announcement Bar Section Start */
.announcement-bar {
    background: var(--secondary-color);
    padding: 15px 0;
    font-size: 15px;
    color: var(--white-color);
}

.announcement-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.announcement-links,
.announcement-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.announcement-links a,
.announcement-contact a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.announcement-links a:hover,
.announcement-contact a:hover {
    color: var(--primary-color);
}

.announcement-contact i {
    margin-right: 6px;
    color: var(--white-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 12px;
    }

    .announcement-inner {
        flex-direction: column;
        text-align: center;
    }

    .announcement-links,
    .announcement-contact {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .announcement-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .announcement-links,
    .announcement-contact {
        flex-wrap: nowrap;
    }
}





/* Navbar Bar Section Start */
.navbar {
    background-color: var(--white-color);
    padding: 0.5rem 10rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 60px;
    transition: transform 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 18px;
    margin-right: 1.5rem;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown & Mega Menu */
.dropdown-menu {
    background-color: var(--white-color);
    border: 1px solid var(--light-border);
    padding: 1rem 2rem;
    display: none;
    min-width: 250px;
    border-radius: 0.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.dropdown.show>.dropdown-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mega-menu h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 16px;
    text-transform: uppercase;
}

.dropdown-menu .dropdown-item {
    color: var(--secondary-color);
    padding: 4px 0;
    transition: 0.2s;
    font-size: 16px;
}

.dropdown-menu .dropdown-item:hover {
    color: var(--primary-color);
    background-color: transparent;
}

/* Arrow Icon */
.nav-link .fa-angle-down {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown.show>.nav-link .fa-angle-down {
    transform: rotate(180deg);
}

/* Hollow Button */
.btn-outline-success {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.6rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

/* Mobile Offcanvas */
.offcanvas {
    background-color: var(--secondary-color);
}

.offcanvas .nav-link {
    color: var(--white-color);
}

.offcanvas .nav-link:hover {
    color: var(--primary-color);
}

.collapse.show+a i,
.nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.fa-chevron-down,
.fa-angle-down {
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .dropdown-menu {
        grid-template-columns: 1fr !important;
        padding: 0;
    }

    .dropdown-menu .dropdown-item {
        padding: 10px 20px;
    }

    .navbar {
        padding: 0.8rem 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .navbar {
        padding: 0.8rem 4rem;
    }
}







/* Hero Section Start */
.hero-section-sec {
    background: var(--ligt-green-background);
    overflow: hidden;
}

.temp-heading {
    padding: 5px 5px;
    border-radius: 15px;
    color: var(--white-color);
    background-color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
}

.hero-section-sec .btn-outline-success {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-section-sec .btn-outline-success:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.hero-svg {
    max-width: 85%;
    height: auto;
}

/* Bottom Decorative SVG */
.hero-bottom-svg {
    height: 80px;
    color: var(--secondary-color);
    z-index: 1;
    bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section-sec h1 {
        font-size: 2rem;
    }

    .hero-section-sec p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-section-sec .btn-outline-success {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-svg {
        width: 60%;
        height: auto;
    }

    .hero-bottom-svg {
        bottom: -5%
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-bottom-svg {
        bottom: -35;
    }

}


/* Form Wrapper */
.hero-form-wrapper {
    background: #ffffff;
    padding: 35px;
    border-radius: 22px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.hero-form-wrapper::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    opacity: 0.12;
    border-radius: 50%;
    transition: 0.4s ease;
}

.hero-form-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.hero-form-wrapper:hover::before {
    transform: scale(1.2);
    opacity: 0.16;
}

/* Inputs */
.hero-form-group {
    margin-bottom: 18px;
    width: 100%;
}

.hero-form-label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #333;
}

.hero-form-input,
.hero-form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    background: #f9f9f9;
    transition: all 0.25s ease;
    font-size: 0.95rem;
}

.hero-form-input:focus,
.hero-form-select:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 150, 90, 0.15);
    outline: none;
}

/* Row Layout */
.hero-form-row {
    display: flex;
    gap: 18px;
}

.hero-form-row button {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 20px;
    font-size: 1rem;
    border: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-form-row button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Form Title */
.form-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-form-row {
        flex-direction: column;
    }
    .hero-form-wrapper {
        padding: 25px;
    }
}

.select-placeholder:invalid {
    color: #7e7e7e !important; /* placeholder color */
}


.hero-error {
    color: #e63946;
    font-size: 13px;
    margin-top: 3px;
    display: none;
}

.hero-form-input.error,
.hero-form-select.error {
    border-color: #e63946 !important;
}












/* Product Price Section Start */
.ev-pricing-section {
    background: #f9f9f9;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-card {
    background: var(--white-color);
    border-radius: 15px;
    border: 1px solid var(--light-border);
    padding: 30px;
    transition: all .3s ease;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px var(--shadow-hover);
}

.price-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.03);
}

.popular-badge {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.price-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-subtitle {
    color: var(--gray-text);
    margin-bottom: 10px;
}

.price-box img.price-icon {
    width: 40%;
    object-fit: contain;
}

.price-amount {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: var(--secondary-color);
}

.price-duration {
    font-size: 13px;
    font-weight: normal;
    color: var(--gray-text);
}

.price-desc {
    font-size: 14px;
    color: var(--gray-text);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.price-features i {
    color: var(--primary-color);
    margin-right: 6px;
}

.price-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
    margin-top: 15px;
}

.price-btn:hover {
    background: var(--quaternary-color);
}

.popular-btn {
    background: var(--primary-color) !important;
}

.popular-btn:hover {
    background: var(--tertiary-color) !important;
}

@media (max-width: 768px) {
    .price-card {
        padding: 20px;
    }

    .pricing-title {
        font-size: 26px;
    }
}








/* text image section start */
.ev-img-text-section {
    background: var(--ligt-green-background);
    border-radius: 12px;
    padding: 60px 0;
}

.ev-img-illustration {
    width: 80%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
}

.ev-img-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.ev-img-text {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ev-img-text strong {
    color: var(--primary-color);
}

.ev-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.ev-link:hover {
    color: var(--tertiary-color);
}

.ev-img-btn:hover {
    background: var(--tertiary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .ev-img-title {
        font-size: 26px;
    }

    .ev-img-text-section {
        padding: 40px 0;
    }
}







/* ev steps card start */
.ev-step-card {
    width: 280px;
    background: var(--white-color);
    border-radius: 20px !important;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--light-border);
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.ev-step-icon,
.ev-step-heading,
.ev-step-content {
    position: relative;
    z-index: 5;
    transition: all 0.5s;
}

.ev-step-icon {
    /* width: 40px; */
    width: 25%;
    fill: var(--primary-color);
    /* replaced purple */
    margin-bottom: 20px;
}

.ev-step-heading {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.ev-step-number {
    position: absolute;
    top: -90px;
    right: -85px;
    padding: 80px 100px 30px 30px;
    background: var(--primary-color);
    /* replaced purple */
    border-radius: 100%;
    z-index: 5;
}

.ev-step-number .ev-step-text {
    font-size: 28px;
    font-weight: 600;
    color: var(--white-color);
}

.ev-step-text {
    margin-top: 20px;
    color: var(--secondary-color);
}

.ev-step-number::after {
    content: "";
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    /* replaced purple */
    position: absolute;
    border-radius: 100%;
    top: 50%;
    right: 50%;
    transition: all 0.5s;
    transform: translateX(50%) translateY(-50%);
    z-index: -1;
}

.ev-step-card:hover {
    scale: 1.02;
    box-shadow: 0 5px 20px var(--light-border);
}

.ev-step-card:hover .ev-step-number::after {
    width: 900px;
    height: 900px;
}

.ev-step-card:hover .ev-step-icon,
.ev-step-card:hover .ev-step-heading,
.ev-step-card:hover .ev-step-content {
    color: var(--white-color);
    fill: var(--white-color);
}







/* testimonial card start */

.testi-card {
    background: var(--white-color);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 18px;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px var(--shadow);
}

.testi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testi-stars i {
    color: var(--rating-color);
    margin-right: 3px;
    font-size: 16px;
}

.testi-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testi-body p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.55;
    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* change to 4 if you want 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.testi-username {
    font-weight: 600;
    margin: 0;
    color: var(--black-color);
    font-size: 15px;
}

/* RESPONSIVE CARD SPACING */
@media (max-width: 767px) {
    .testi-card {
        margin-bottom: 20px;
    }
}







/* faq section start */

/* Wrapper spacing */
.faq-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Accordion container */
.custom-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* spacing between faq items */
}

/* Each FAQ item */
.faq-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--light-border);
    background: var(--white-color);
    box-shadow: 0 6px 18px var(--shadow);
    transition: all 0.3s linear;
}

/* Header Button */
.faq-btn {
    background: var(--gray-background-faq) !important;
    color: var(--secondary-color) !important;
    font-weight: 600;
    padding: 18px 20px;
    /* border-radius: 14px; */
}

/* Closed button style improvement */
.faq-btn.collapsed {
    background: var(--white-color) !important;
}

/* Body area */
.faq-body {
    padding: 18px 20px;
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.6;
    background: var(--white-color);
}

/* Hover effects */
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px var(--shadow);
}

/* Responsive */
@media (max-width: 767px) {
    .faq-btn {
        font-size: 15px;
        padding: 15px;
    }

    .faq-body {
        font-size: 14px;
    }
}









/* footer start */

.footer {
    background-color: var(--secondary-color);
    padding: 70px 0;
}

.footer-col {
    /* width: 25%; */
    padding: 0 15px;
}

.footer-col ul li::marker {
    color: #fff;
}


.footer-col h4 {
    font-size: 18px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--primary-color);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--white-color);
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white-color);
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    align-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--gray-text);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--white-color);
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: var(--quaternary-color);
    background-color: var(--white-color);
}

/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}






/* our offer section start */
.our-offers-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.offer-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #eeeeee;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #d6e5ff;
}

.offer-title {
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.15rem;
    color: #333;
}

.offer-icon {
    width: 40%;
    max-width: 130px;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.08) rotate(1deg);
}