
/* Hide the page content briefly while translating if lang=zh is present */
html[lang="zh"] body {
    opacity: 0;
    transition: opacity 0.5s;
}

/* Show it once translated (you can trigger this via JS) */
html.translated body {
    opacity: 1;
}


/********** Template CSS **********/



:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/


.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar-brand{
    margin-right: 0 !important;
}



nav .container-fluid{
    padding-right: 0 !important;
   
}

@media (min-width:1024px){
  nav .container-fluid{
    padding-left: 3rem;
}
  
}

.navbar-brand.px-lg-5{
    padding-right: 1rem !important;
}

/* Custom Logo and Registration Styling */
.navbar-logo {
    
    height: 80px; /* Fixed height for consistency */
    object-fit: contain;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.reg-info {
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    font-weight: 600;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .navbar-logo {
        height: 70px;
    }
    
    /* .navbar-brand {
        padding-left: 15px !important;
        padding-right: 10px !important;
    } */
}

/* Very Small Phones */
@media (max-width: 380px) {
    .navbar-logo {
       height: 70px;
    }
    .reg-info {
        display: none !important; /* Hide reg number on tiny screens to avoid layout break */
    }
}

/* language switcher  */


/* Custom Language Switcher Styling */
.language-switcher {
    background: #F6F7F8;
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid #6fb55e;
}

 @media (max-width:420px){
    .language-switcher {
      
        padding: 5px 10px;
       
    }
 }

.lang-link {
    font-size: 12px;
    font-weight: 700;
    color: #212D56;
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 2px solid transparent; /* Prevents jumping */
}

.lang-link.active {
    color: #6fb55e !important;
    border-bottom: 2px solid #6fb55e; /* Jason Solar Green Underline */
}

.lang-link:hover {
    color: #6fb55e; /* Your Jason Solar Green */
}


@media (max-width:1180px){
    a.btn.btn-primary.rounded-0.py-4.px-lg-5.d-none.d-lg-block.fw-bold {
        display: none !important;
    }
}



.navbar-toggler:focus {
    
    box-shadow: 0 0 0 0rem;
}

.navbar-toggler{
    border-radius: 2px;
    background-color: #72b94f56;
    margin-right: 10px;
    
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* toggle style  */


/* Container for the toggler */
.custom-doodle-toggler {
    border: none !important;
    background: #d4edda; /* Light green background matching your current look */
    padding: 10px;
    border-radius: 8px;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.custom-doodle-toggler:hover {
    background: #c3e6cb;
}

/* The actual "doodle" bars */
.toggler-icon-box {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end; /* Staggered doodle look */
}

.toggler-icon-box span {
    display: block;
    height: 3px;
    background-color: #34495e; /* Darker professional color */
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Give the bars different widths for a "doodle" effect */
.toggler-icon-box span:nth-child(1) { width: 100%; }
.toggler-icon-box span:nth-child(2) { width: 70%; }
.toggler-icon-box span:nth-child(3) { width: 90%; }

/* Optional: Animate into an 'X' when open */
.custom-doodle-toggler[aria-expanded="true"] .toggler-icon-box span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    width: 100%;
}
.custom-doodle-toggler[aria-expanded="true"] .toggler-icon-box span:nth-child(2) {
    opacity: 0;
}
.custom-doodle-toggler[aria-expanded="true"] .toggler-icon-box span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    width: 100%;
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}




/* Solar Journey  */


.solar-journey {
    background-color: #ffffff; /* Very light green tint from your reference */
}

.step-image-wrapper {
    position: relative;
    display: inline-block;
}

.step-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-number {
    position: absolute;
    top: 5px;
    right: -10px;
    background-color: #c5e1a5; /* Light green badge */
    color: #33691e;
    font-weight: bold;
    font-size: 14px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #fff;
}

.journey-item {
    position: relative;
}

/* Curved arrow positioning */
.step-arrow {
    position: absolute;
    top: 30%;
    right: -25%;
    width: 50%;
    z-index: 1;
    opacity: 0.3;
}

.step-arrow img {
    width: 80px;
}

.bg-light-green {
    background-color: #dcedc8;
}

.btn-primary {
    background-color: #c5e1a5;
    border-color: #c5e1a5;
    color: #0b1c39;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #aed581;
    transform: translateY(-2px);
}





/* solar journey end  */




/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/



/* filter design style  */


/* Filter Button Styling */
.filter-btn {
    border-radius: 50px;
    padding: 8px 25px;
    transition: all 0.3s ease;
    margin: 5px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.filter-btn.active {
    box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.4);
}

/* Service Card Enhancements */
/* Container for the product image */
.service-img-container {
    height: 250px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-container img {
    /* max-height: 80%; */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The glass icon that appears on hover */
.service-overlay-icon {
    position: absolute;
    bottom: -50px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.4s;
    opacity: 0;
}

.service-item:hover .service-overlay-icon {
    bottom: 20px;
    opacity: 1;
}

.service-item:hover .service-img-container img {
    transform: scale(1.1) rotate(2deg);
}

/* Modern Link Styling */
.service-link {
    text-decoration: none;
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 15px;
    color: #000;
}

/* Badge Refinement */
.category-badge {
    background: #eef2ff;
    color: #4338ca;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}


.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


/*************************** My Custom Css  **************************/ 

/* hero section styel   */



/* Apply your Brand Green */
.text-primary {
    color: #32C36C !important;
}

.btn-primary {
    background-color: #32C36C !important;
    border-color: #32C36C !important;
    color: #ffffff !important; /* Dark blue text on green button for contrast */
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #1A2A36 !important; /* Switches to your dark blue on hover */
    border-color: #1A2A36 !important;
    color: #ffffff !important;
}

.border-primary {
    border-color: #32C36C !important;
}

/* Attractive Dark Overlay for Sliders */
.owl-carousel-inner {
    background: linear-gradient(rgba(26, 42, 54, 0.7), rgba(26, 42, 54, 0.3));
    height: 100%;
    display: flex;
    align-items: center;
}

/* Smooth Title Animation */
.display-2 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}



/* Side icon  */


/* Sidebar Container */
.social-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

/* Individual Icon Styling */
.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Colors matching the image example */
.facebook  { background-color: #3b5998; }
.messenger { background-color: #0084ff; }
.whatsapp  { background-color: #25d366; }
.email     { background-color: #888888; }
.share     { background-color: #007bff; }

/* Hover Effect */
.social-icon:hover {
    width: 55px; /* Slightly expands on hover */
    padding-left: 10px;
    color: #ffffff;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Services  */

/* Service Item Enhancements */
.service-item {
    transition: 0.5s;
    background: #ffffff;
    border: 1px solid #f0f0f0;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

/* Dynamic Icon Styling */
.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 0 0 8px rgba(50, 195, 108, 0.1); /* Soft glow */
    transition: 0.5s;
}

.service-item:hover .service-icon {
    background: #ffffff;
    color: var(--primary);
    transform: rotateY(360deg);
}

/* Image Zoom Effect */
.service-item img {
    transition: 0.5s;
}

/* Force all service images to be equal size and proportion */
.service-img-container {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* This creates a perfect 3:2 Aspect Ratio */
    overflow: hidden;
    background-color: #F6F7F8;
    
}

.service-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Crops the image to fill the space without stretching */
    transition: 0.5s;
    padding: 25px;
}

.service-item:hover .service-img-container img {
    transform: scale(1.05);
}
.service-item:hover img {
    transform: scale(1.1);
}


/* advantage section stylee  */


/* Container Background & Spacing */


.advantage-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Header Styling */
.section-title-sub {
    color: #32C36C !important; /* Your Brand Green */
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-title-main {
    color: #1A2A36; /* Your Dark Blue */
    font-weight: 800;
}

/* Card Styling */
.service-item {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft, premium shadow */
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 20px 20px !important;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(50, 195, 108, 0.15); /* Greenish glow on hover */
}

/* Top Icon Circle (as seen in your reference) */
.advantage-icon {
    width: 80px;
    height: 80px;
    background-color: #32C36C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: -20px; /* Pulls it up slightly */
    transition: 0.5s;
}

.service-item:hover .service-icon {
    background-color: #1A2A36 !important;
    transform: scale(1.1);
}

.service-item .mb-1{
    margin-bottom: 1.5rem !important;
}

.service-item  .lh-sm {
    line-height: 1.55 !important;
}

.service-item .p-3 {
    padding: 1.8rem 0rem !important;
}

.service-item .px-3, .service-item .pb-3 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
    padding-bottom: 0 !important;
}

/* Typography inside Cards */
.service-item h4 {
    color: #1A2A36;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-item p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Small Arrow Link */
.service-item .arrow-link {
    display: inline-block;
    margin-top: 20px;
    color: #1A2A36;
    transition: 0.3s;
}

.service-item:hover .arrow-link {
    color: #32C36C;
    transform: translateX(5px);
}



/* banner section  */

/* Section Background */
.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

#why .d-flex{
    flex-direction: column;
    row-gap: 20px;
}

/* Curved Image Container */
.curved-image-container {
    position: relative;
    border-radius: 50% 0 0 50% / 50% 0 0 50%; /* Creates the large curve */
    overflow: hidden;
    border-left: 15px solid #32C36C; /* Green border accent */
    /* height: 500px; */
     object-fit: cover;
}

/* Floating Expert Box */
.expert-box {
    position: absolute;
    top: 50%;
    left: -50px; /* Overlaps between content and image */
    transform: translateY(-50%);
    z-index: 2;
    min-width: 200px;
}

/* Play Button Styling */
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    background: #ffffff75;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #32c36c69;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #32C36C;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% { transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1; }
  100% { transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity: 0; }
}

/* faqs  */


/* footer  */


/* Contact Form Styling */
.contact-text .btn-square {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-text .form-control {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0,0,0,.05);
    border-radius: 10px;
}

.contact-text .form-control:focus {
    background: #ffffff;
    border-color: #32C36C; /* Jason Solar Green */
    box-shadow: 0 0 15px rgba(50, 195, 108, 0.2);
}

.contact-text label {
    color: #6c757d;
}


/* whatsapp  */

.whatsapp-btn {
    position: fixed;
    bottom: 2.5rem;
    /* adjust for sm/md screens if needed */
    left: 2.5rem;
    background-color: #25D366;
    /* WhatsApp green */
    color: #fff;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    /* full rounded */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover {
    opacity: 0.8;
}



/* footer  */


/* Footer Typography & Elements */
.footer .text-light-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer .btn-link {
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 15px;
}

.footer .btn-link:hover {
    color: #32C36C !important;
    padding-left: 8px; /* Smooth nudge animation */
}

/* Tag Cloud (Sourcing Network) */
.footer .badge {
    font-weight: normal;
    background: transparent;
    transition: 0.3s;
    cursor: default;
}

.footer .badge:hover {
    background: #32C36C;
    border-color: #32C36C !important;
    color: #fff !important;
}

/* Rounded Contact Icons */
.btn-sm-square {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Newsletter Input focus */
.footer .form-control:focus {
    box-shadow: none;
    border-color: #32C36C;
}

/* Social Icon Hover */
.btn-square.btn-primary:hover {
    background-color: #ffffff !important;
    color: #32C36C !important;
}







