:root {

    /* ========================
   COLOR SYSTEM
======================== */

    --primary: #2fa84f;
    --primary-dark: #23913f;

    --secondary: #ff6a00;
    --secondary-dark: #e55d00;

    --dark: #111;
    --text: #444;
    --light: #f8f9fa;
    --white: #ffffff;

    --border: #e5e5e5;

    --overlay-dark: rgba(0, 0, 0, .7);
    --overlay-light: rgba(0, 0, 0, .3);


    /* ========================
   TYPOGRAPHY
======================== */

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --h1: 52px;
    --h2: 40px;
    --h3: 28px;
    --h4: 22px;
    --h5: 18px;
    --h6: 16px;

    --text-lg: 18px;
    --text-md: 16px;
    --text-sm: 14px;


    /* ========================
   SPACING SYSTEM
======================== */

    --section-padding: 80px;
    --section-padding-sm: 50px;


    /* ========================
   BORDER RADIUS
======================== */

    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 50px;


    /* ========================
   SHADOWS
======================== */

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, .1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, .15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .2);


    /* ========================
   TRANSITIONS
======================== */

    --transition: .3s ease;

}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
}

button,
.btn,
.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* NAVBAR */


.main-header .navbar {
    padding: 0;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    margin-left: 18px;
    color: var(--dark) !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--secondary);
    left: 0;
    bottom: -5px;
    transition: var(--transition);
}

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

/* MEGA MENU */

.mega-dropdown .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    border: none;
    /* border-radius:0; */
    box-shadow: var(--shadow-md);
    /* padding:0; */
    margin-top: 0;
}

.mega-dropdown {
    position: unset;
}

.mega-menu {
    background: var(--white);

}

.mega-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.mega-list {
    list-style: none;
    padding: 0;
}

.mega-list li {
    padding: 6px 0;
}

.mega-list li a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    display: block;
    transition: var(--transition);
}

.mega-list li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* CENTERED 90% MEGA MENU */

.mega-centered {
    width: 70% !important;
    left: 50% !important;
    transform: translateX(-50%);
    margin-top: 0;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    border-radius: var(--radius-lg);
}

/* Prevent stacking */
.mega-centered .row {
    display: flex;
    /* flex-wrap:nowrap; */
}

/* Columns */
/* .mega-centered .col-lg-4{
flex:1;
} */

/* List Styling */
.mega-list li {
    padding: 6px 0;
}

.mega-list li a {
    text-decoration: none;
    color: var(--dark);
    font-size: 16px;
    display: block;
    white-space: nowrap;
    transition: var(--transition);
}

.mega-list a.active {
    color: var(--primary);
    font-weight: 600;
}

.mega-list li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.dropdown .nav-link::after {
    position: unset;
    background: transparent;
}

.dropdown .nav-link:hover::after,
.dropdown .nav-link.active::after {
    width: unset;
}


/* Login Button */

.login-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    font-weight: 600;
}

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

.call-btn {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    background-color: var(--primary-dark);
    color: var(--light);
}

.hero-ref {
    position: relative;
    background: url('../images/hero.webp') center/cover no-repeat;
    padding: var(--section-padding) 0;
    color: var(--white);
    padding: 150px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--overlay-dark), var(--overlay-light));
}

.hero-left h1 {
    font-size: var(--h1);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-left p {
    font-size: var(--text-lg);
    max-width: 520px;
    margin-bottom: 30px;
    color: #eee;
}

.hero-btn {
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

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

.service-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.service-box i {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-box h6 {
    font-weight: 600;
    color: var(--dark);
}

.service-box:hover {
    transform: translateY(-8px);
}

/* FLOAT BUTTON */

.quick-support {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 16px 14px;
    writing-mode: vertical-rl;
    font-weight: 600;
    border-radius: 12px 0 0 12px;
    z-index: 99;
    text-decoration: none;
}

/* SERVICES SECTION */

.services-section {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.section-title h2 {
    font-size: var(--h2);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text);
    max-width: 600px;
    margin: auto;
}


/* SERVICE CARD */

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    background: rgba(47, 168, 79, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card i {
    font-size: 28px;
    color: var(--secondary);
}

.service-card h5 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: var(--text-sm);
    color: var(--text);
}




/* CTA BUTTON */

.service-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.service-cta:hover {
    background: var(--secondary-dark);
    color: var(--white);
}

/* WHY SECTION */

.why-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.why-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-content h2 {
    margin-bottom: 15px;
}

.why-sub {
    color: var(--text);
    margin-bottom: 30px;
    max-width: 520px;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--dark);
}

.why-item i {
    color: var(--secondary);
    font-size: 18px;
    background: rgba(47, 168, 79, .12);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.why-btn {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border: none;
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

/* PROCESS SECTION */

.process-section {
    padding: var(--section-padding) 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

/* Title Divider */
.title-divider {
    width: 70px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Step Number Background */

.step-number {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 70px;
    font-weight: 800;
    color: var(--secondary);
    z-index: 1;
    pointer-events: none;
}

/* Process Card */

.process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.process-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 18px;
}

.process-card h5 {
    margin-bottom: 12px;
}

.process-card p {
    font-size: var(--text-sm);
    color: var(--text);
}

/* OFFERS SECTION */

.offers-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.offer-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

/* Optional subtle overlay effect */
.offer-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.offer-card:hover::after {
    opacity: 1;
}

/* CTA SECTION */

.cta-section {
    padding: var(--section-padding) 0;
    background: var(--secondary);
    color: var(--white);
}

.cta-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 30px 0;
    color: var(--white);
}

.cta-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.cta-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

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


/* CALLBACK FORM CARD */

.callback-card {
    background: #2e6da4;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.callback-card h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.callback-sub {
    margin-bottom: 25px;
    color: #e6e6e6;
}

.callback-card .form-control,
.callback-card .form-select {
    background: #f1f1f1;
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
}

.callback-card .form-check-label {
    font-size: var(--text-sm);
}

.callback-btn {
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

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

/* COMMITMENT SECTION */

.commitment-section {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.commit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.commit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.commit-icon {
    min-width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

.commit-card h5 {
    margin-bottom: 8px;
}

.commit-card p {
    font-size: var(--text-sm);
    color: var(--text);
}

.commitment-btn {
    background: var(--secondary);
    color: var(--white);
    padding: 14px 40px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}


.commitment-btn:hover {
    background: var(--secondary-dark);
    color: var(--white);
}

/* TESTIMONIAL SECTION */

.testimonial-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: var(--text-md);
    margin-bottom: 20px;
    color: var(--dark);
}

.testimonial-card h6 {
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: var(--text-sm);
    color: var(--text);
}

/* Owl Navigation */

.owl-nav button {
    background: var(--primary) !important;
    color: var(--white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    margin: 0 5px;
}

.owl-dots .owl-dot span {
    background: var(--primary) !important;
}

/* FORCE EQUAL HEIGHT */

.owl-stage {
    display: flex;
    padding: 50px 10px
}

.owl-item {
    display: flex;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 320px;
    /* adjust if needed */
}

.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* limit to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* STATS SECTION */

.stats-section {
    padding: var(--section-padding) 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.stats-badge {
    display: inline-block;
    background: rgba(47, 168, 79, .15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    margin-bottom: 15px;
}

.stats-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* subtle background effect */
.stats-card::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    background: rgba(47, 168, 79, .08);
    border-radius: 50%;
}

.stats-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(47, 168, 79, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary);
}

.stats-card h5 {
    margin-bottom: 15px;
}

.stats-card h3 {
    font-size: 36px;
    color: var(--primary);
    font-weight: 700;
    display: inline-block;
}

.stats-card span {
    font-size: 35px;
    color: var(--primary);
    font-weight: 900;
}

/* FAQ SECTION */

.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 35px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    /* border: 2px solid var(--primary); */

}

.faq-accordion .accordion-button {
    background: var(--light);
    font-weight: 600;
    color: var(--dark);
    padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    background: rgba(47, 168, 79, .08);
    padding: 20px;
    color: var(--text);
}

/* FOOTER */

.main-footer {
    background: #0d1b2a;
    color: var(--white);
    padding: 80px 0 0;
}

.populr_service_list {
    display: flex;
    gap: 30;
    flex-wrap: wrap;
    flex-grow: 1;
    padding-left: 0;
}

.populr_service_list li {
    list-style: none;
    padding: 15px;
    display: inline-block;
    /* padding-left: 0; */
    position: relative;
}

.populr_service_list li a {
    color: #ccc;
    text-decoration: none;
}

.populr_service_list li a:hover {
    color: var(--primary-dark);
    transition: all 0.4s;
}

.populr_service_list li::after {
    content: "|";
    position: absolute;
    right: 0;
    color: #ccc;
}
ul li:last-child::after {
  content: "";
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-title {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary);
}

/* SOCIAL */

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
}

/* BOTTOM BAR */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 50px;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

.footer-policy a {
    color: #aaa;
    margin-left: 20px;
    text-decoration: none;
}

.footer-policy a:hover {
    color: var(--primary);
}


/* About us page  */

/* PARALLAX BREADCRUMB */

.breadcrumb-section {
    position: relative;
    padding: 120px 0;
    background: url('../images/barti-breadcrumb.webp') center/cover no-repeat fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Overlay */
.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .4));
}

/* Content above overlay */
.breadcrumb-inner {
    position: relative;
    z-index: 2;
}

.breadcrumb-inner h2 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 42px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ddd;
}

/* ABOUT INTRO */

.about-intro {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text);
}

/* ABOUT DIFFERENCE */

.about-difference {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.difference-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.difference-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.difference-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(47, 168, 79, .15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

.difference-card h5 {
    margin-bottom: 10px;
}

.difference-card p {
    font-size: var(--text-sm);
    color: var(--text);
}

/* ABOUT COVERAGE */

.about-coverage {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.coverage-content h2 {
    margin-bottom: 20px;
}

.coverage-content p {
    margin-bottom: 15px;
    color: var(--text);
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.coverage-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.coverage-list i {
    color: var(--primary);
}

.coverage-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ABOUT SAFETY */

.about-safety {
    padding: var(--section-padding) 0;
    /* background: var(--light); */
}

.safety-content h2 {
    margin-bottom: 20px;
}

.safety-content p {
    margin-bottom: 20px;
    color: var(--text);
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.safety-list i {
    color: var(--primary);
}

.safety-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ABOUT CTA */

.about-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box p {
    max-width: 600px;
    margin: auto auto 30px;
    color: #f5f5f5;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-call {
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-pill);
    padding: 12px 25px;
    font-weight: 600;
}

.cta-call:hover {
    background: #eee;
    color: #e55d00;
}

.cta-request {
    border-radius: var(--radius-pill);
    padding: 12px 25px;
}

/* MISSION & VISION */

.about-mission {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(47, 168, 79, .15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

.mission-card h3,
.vision-card h3 {
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    color: var(--text);
}

/* CONTACT INFO */

.contact-info {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(47, 168, 79, .15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

.contact-card a {
    color: var(--dark);
    text-decoration: none;
}

/* CONTACT FORM */

.contact-form-section {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-box h3 {
    margin-bottom: 20px;
}

.contact-form-box .form-control {
    border-radius: var(--radius-sm);
    padding: 10px;
}

.contact-submit {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-pill);
    padding: 12px 30px;
    font-weight: 600;
}

.contact-submit:hover {
    background: var(--primary-dark);
    /* color: var(--secondary); */
}

.contact-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* CONTACT MAP */

.contact-map {
    padding: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    filter: grayscale(20%);
}

.service-intro,
.service-features {
    padding: var(--section-padding) 0;
}

.service-intro img {
    border-radius: var(--radius-lg);
}

/* REFERRAL SECTION */

.referral-section {
    padding: var(--section-padding) 0;
    background: #3f5c0c;
    color: var(--white);
}

.ref-tag {
    background: var(--white);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.referral-section h2 {
    margin-bottom: 20px;
    color: var(--white);
}

.refer-btn {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 12px 28px;
    font-weight: 600;
    margin-top: 20px;
}

.refer-btn:hover {
    background-color: var(--primary-dark);
    color: var(--light);
}

.assist-form {
    background: #2d6da3;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.assist-form h4 {
    color: var(--white);
}

.assist-form p {
    font-size: 14px;
    margin-bottom: 20px;
}

.assist-form .form-control {
    border-radius: var(--radius-sm);
    padding: 12px;
}

.callback-btn {
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

/* SAFETY SECTION — BRAND ALIGNED */

.safety-section {
    padding: var(--section-padding) 0;
    background: var(--light);
    text-align: center;
}

.safety-section h2 {
    margin-bottom: 10px;
    color: var(--dark);
}

.section-subtitle {
    color: var(--text);
}

.safety-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.safety-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* ICON — BRAND COLOR */

.safety-icon {
    width: 70px;
    height: 70px;
    background: rgba(47, 168, 79, 0.15);
    /* soft brand tint */
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 24px;
}

/* SERVICE PROCESS */

.service-process {
    padding: var(--section-padding) 0;
    /* background: var(--light); */
    text-align: center;
}

.process-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* STEP NUMBER */

.step-no {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 3px solid var(--secondary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto 15px;
}

/* ICON */

.process-icon {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* plan page style  */

.plan-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: .3s;
    border-top: 5px solid var(--primary);
    height: 100%;
}

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

.plan-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.card-preview {
    background: linear-gradient(135deg, #2fa84f, #23913f);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.plan-features {
    text-align: left;
    margin-top: 20px;
}

.plan-features li {
    margin-bottom: 8px;
    font-size: 14px;
}

.plan-btn {
    border-radius: 30px;
    padding: 10px 20px;
    margin-top: 15px;
}

.btn-details {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-buy {
    background: var(--secondary);
    color: #fff;
}

.btn-buy:hover {
    background: var(--secondary-dark);
    color: #fff;
}

.rsa-card {
    background: linear-gradient(135deg, #d4a017, #b68c0a);
    border-radius: 14px;
    padding: 20px;
    color: #000;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.rsa-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rsa-card .brand {
    font-weight: 600;
    font-size: 16px;
}

.rsa-card .chip {
    width: 40px;
    height: 25px;
    background: #eee;
    border-radius: 5px;
}

.rsa-card .card-type {
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.rsa-card .card-number {
    margin: 15px 0;
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 600;
}

.rsa-card .card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.rsa-card.pro {
    background: linear-gradient(135deg, #2fa84f, #23913f);
    color: #fff;
}

.rsa-card.premium {
    background: linear-gradient(135deg, #ff6a00, #e55d00);
    color: #fff;
}

.rsa-card.elite {
    background: linear-gradient(135deg, #111, #444);
    color: #fff;
}

.checkout-section {
    padding: 50px 0;
    background: #f5f7fa;
}

.order-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}


.summary-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.summary-box h5 {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.pay-btn {
    background: var(--primary);
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
}

.pay-btn:hover {
    background: var(--primary-dark);
}

.step-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.list-group-item.active{
    background-color: #2fa84f !important;
    border-color: #2fa84f;
    color: #fff;
}