/********** Template CSS **********/
:root {
    --primary: #19B45D;
    --secondary: #f1f6fb;
    --light: #0f172a;
    --dark: #0f172a;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --muted: #64748b;
    --border: rgba(15, 23, 42, 0.08);
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #139342;
    border-color: #139342;
}

.social-btn {
    background: #ffffff !important;
    color: var(--primary) !important;
    border: 1px solid rgba(25, 180, 93, 0.18) !important;
    transition: all .3s ease;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary);
    font-size: 0.9rem;
}

.footer-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Dropdown behavior: rely on Bootstrap's .show classes (mobile-safe). */

.social-btn:hover,
.social-btn:focus {
    background: rgba(25, 180, 93, 0.08) !important;
    color: var(--primary) !important;
    border-color: rgba(25, 180, 93, 0.35) !important;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.hero-live {
    position: relative;
    overflow: hidden;
}

.hero-live::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(25, 180, 93, 0.16), transparent 25%),
                radial-gradient(circle at 80% 20%, rgba(25, 180, 93, 0.10), transparent 18%),
                linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
    pointer-events: none;
    z-index: 1;
}

.hero-live-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/feature.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(1.2) contrast(1.05);
    animation: heroZoom 22s ease-in-out infinite;
    z-index: 0;
}

.hero-live .container {
    position: relative;
    z-index: 2;
}

.hero-live-img {
    animation: floatImage 8s ease-in-out infinite;
}

@keyframes heroZoom {
    0%,100% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.04) translate(-1%, -0.5%); }
}

@keyframes floatImage {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.02); }
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    padding: 10px 14px;
    font-size: 16px;
    text-transform: none;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

/* Premium navbar */
.site-navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    z-index: 1030; /* above content, below modals */
}

.site-navbar .site-logo {
    height: 30px;
    width: auto;
}

@media (min-width: 992px) {
    .site-navbar .site-logo {
        height: 54px;
    }
}

.site-navbar .navbar-brand {
    padding-top: 6px;
    padding-bottom: 6px;
}

/* Mobile navbar layout: centered logo + always-visible top menu (no hamburger) */
@media (max-width: 991.98px) {
    .site-navbar {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .site-navbar .container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .site-navbar .navbar-brand {
        margin: 0 auto;
        padding-top: 4px;
        padding-bottom: 2px;
        justify-content: center;
    }

    .site-navbar .site-logo {
        height: 100px;
        max-height: 100px;
    }

    /* Remove hamburger; keep nav visible */
    .site-navbar .navbar-toggler {
        display: none;
    }

    .site-navbar .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        width: 100%;
        padding: 0;
    }

    .site-navbar .navbar-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 2px 2px 0;
        margin: 0;
    }

    .site-navbar .navbar-nav::-webkit-scrollbar {
        height: 0;
    }

    .site-navbar .navbar-nav .nav-link {
        white-space: nowrap;
        padding: 10px 12px;
    }

    /* CTA buttons: hide on mobile to keep header clean */
    .site-navbar .navbar-collapse > .d-flex {
        display: none !important;
    }

    /* Dropdown menu should expand inline on mobile */
    .site-navbar .nav-item.dropdown {
        position: relative; /* anchor overlay to the toggle */
    }

    .site-navbar .dropdown-menu {
        position: fixed;
        top: 0; /* set by JS to align under toggle */
        left: 50%; /* set by JS */
        transform: translateX(-50%); /* set by JS */
        width: min(94vw, 420px);
        min-width: 280px;
        max-width: 94vw;
        padding: 10px;
        margin: 0;
        z-index: 1050;
    }

    .site-navbar .dropdown-menu.show {
        display: block;
    }

    .site-navbar .dropdown-item {
        display: block;
        width: 100%;
        white-space: nowrap;
    }
}

.site-navbar .navbar-toggler {
    border-color: rgba(15, 23, 42, 0.16);
}

.site-navbar .navbar-nav .nav-link {
    position: relative;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.site-navbar .navbar-nav .nav-link:hover {
    background: rgba(25, 180, 93, 0.08);
    color: var(--primary);
}

.site-navbar .navbar-nav .nav-link.active,
.site-navbar .navbar-nav .show > .nav-link {
    color: var(--primary);
    background: rgba(25, 180, 93, 0.10);
}

.site-navbar .dropdown-menu {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 10px;
}

.site-navbar .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 600;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
    background: rgba(25, 180, 93, 0.10);
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .site-navbar .navbar-collapse {
        padding: 10px 0 14px;
    }
    .site-navbar .navbar-nav .nav-link {
        padding: 10px 12px;
    }
    .site-navbar .dropdown-menu {
        border-radius: 12px;
        margin-top: 6px;
        width: 100%;
        position: static;
    }
    .site-navbar .dropdown-menu.show {
        display: block;
    }
    .site-navbar .dropdown-item {
        white-space: normal;
    }
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        padding: 10px 12px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 41, 54, .82);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.bi,
.fa,
.fab,
.far,
.fal {
    color: var(--primary);
    transition: color .3s ease;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    bottom: -50px;
    left: 0;
    background: var(--light);
    border-radius: 100% 100% 0 0;
    box-shadow: 0px -10px 5px #EEEEEE;
    transition: .5s;
}

.service-item:hover::after {
    bottom: -25px;
}

.service-item p {
    transition: .3s;
}

.service-item:hover p {
    margin-bottom: 25px !important;
}

.team-item img {
    transform: scale(1.15);
    margin-left: -30px;
    transition: .5s;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}

/********** Additional CSS **********/

/* Auto Dialer Page Specific Styles */
.bg-gradient {
    background: linear-gradient(135deg, rgba(25, 180, 93, 0.14) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(25, 180, 93, 0.12);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(25, 180, 93, 0.25);
}

.rounded-3 {
    border-radius: 0.5rem !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center !important;
    }
}

@media (max-width: 767.98px) {
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .client-logos img {
        height: 30px !important;
        margin: 0 10px 15px;
    }
}

/* Pricing Page Specific Styles */
.bg-gradient {
    background: linear-gradient(135deg, rgba(25, 180, 93, 0.14) 0%, rgba(255, 255, 255, 0.9) 100%);
}

/* Form Styles */
#contact .form-control, 
#contact .form-select {
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

#contact .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .trusted-business {
        margin-bottom: 1rem;
    }
    
    #contact .col-lg-5, 
    #contact .col-lg-7 {
        padding: 2rem !important;
    }
}

/* Talk to Expert Section */
.talk-to-expert .form-control,
.talk-to-expert .form-select {
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.talk-to-expert .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.talk-to-expert .btn-primary {
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .talk-to-expert .col-md-6 {
        padding: 0;
    }
    
    .talk-to-expert .bg-white {
        padding: 1.5rem !important;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.why-choose-section .icon-square {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(25, 180, 93, 0.12);
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(25, 180, 93, 0.25);
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
/* Feature Table */
.feature-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
}

.feature-table th {
    background-color: rgba(25, 180, 93, 0.10);
    color: #0f172a;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.feature-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    vertical-align: top;
}

.feature-table tr:nth-child(even) {
    background-color: rgba(25, 180, 93, 0.03);
}

.feature-table tr:hover {
    background-color: rgba(25, 180, 93, 0.08);

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .why-choose-section .display-5 {
        font-size: 2.2rem;
    }
    
    .feature-table {
        display: block;
        overflow-x: auto;
    }
}

.ai-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-square {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Trusted By Section */
.trusted-section {
    background-color: #f8f9fa;
}

/* Differentiators */
.diff-section .card-hover {
    transition: all 0.3s ease;
}

.diff-section .card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Call Center Types */
.types-section .btn-outline-primary {
    border-width: 2px;
}

/* Demo Section */
.demo-section .form-control,
.demo-section .form-select {
    padding: 12px 15px;
    border-radius: 0.375rem;
}

.demo-section .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section .text-center-mobile {
        text-align: center;
    }
    
    .trusted-section .flex-wrap {
        justify-content: center;
    }
    
    .features-section .col-md-4 {
        margin-bottom: 1.5rem;
    }
}

    /* Scrolling Banner Styles */
.scrolling-banner-container {
    --scroll-gap: clamp(1rem, 2.5vw, 2.25rem);
    --scroll-duration: 16s;

    position: relative;
    background: #f8fff6;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding-block: clamp(8px, 1.2vw, 12px);
}

.scrolling-banner {
    display: flex;
    align-items: center;
    gap: var(--scroll-gap);
    width: max-content;
    white-space: nowrap;

    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary) !important;

    animation: marquee var(--scroll-duration) linear infinite !important;
    animation-play-state: running !important;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.scrolling-banner span {
    display: inline-block;
    color: var(--primary) !important;
}

.scrolling-banner .scrolling-banner-sep {
    opacity: 0.7;
}

.scrolling-banner.paused {
    animation-play-state: paused !important;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@-webkit-keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Add this to your CSS file */
.bg-gradient {
    padding-top: 15px !important;
}

/* Hide hero image on mobile */
@media (max-width: 991.98px) {
    .hero-image-column {
        display: none !important;
    }
}

/* popup form */
.popup-form-container {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.popup-form-container.is-open {
  display: flex;
}

.popup-form-content {
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
}

.switch-ip-field {
  display: none;
}

/* Modern light theme base */
body {
    background: #f8fbff;
    color: #0f172a;
}

html {
    scroll-behavior: smooth;
}

.bg-secondary {
    background-color: #f1f6fb !important;
}

.bg-white {
    background-color: #ffffff !important;
    color: #0f172a !important;
}

.bg-dark {
    background-color: #f8fbff !important;
    color: #0f172a !important;
}

.bg-dark.text-white {
    color: #0f172a !important;
}

.container-fluid,
.container {
    color: #0f172a;
}

.navbar-light .navbar-nav .nav-link {
    color: #334155;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-nav .nav-link:hover {
    text-shadow: none;
}

.top-shape::before {
    background: var(--primary);
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.92) !important;
    color: #0f172a;
}

.carousel-caption h5,
.carousel-caption h1,
.carousel-caption p,
.carousel-caption .text-white {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 20px 50px rgba(25, 180, 93, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #139342 !important;
    border-color: #139342 !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: rgba(25, 180, 93, 0.35) !important;
}

.social-btn {
    background: #ffffff !important;
    color: var(--primary) !important;
    border: 1px solid rgba(25, 180, 93, 0.18) !important;
    transition: all .3s ease;
}

.social-btn:hover,
.social-btn:focus {
    background: rgba(25, 180, 93, 0.08) !important;
    color: var(--primary) !important;
    border-color: rgba(25, 180, 93, 0.35) !important;
}

.btn-dark,
.btn-secondary {
    background: #111827 !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    color: #ffffff !important;
}

.service-item,
.feature-card,
.card-hover,
.team-item,
.testimonial-item,
.blog-item,
.trusted-business,
.form-box,
.popup-form-content,
#contact .col-lg-5,
#contact .col-lg-7,
.talk-to-expert .bg-white,
.feature-table,
footer,
header {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    color: #0f172a !important;
}

.feature-card,
.card-hover,
.service-item,
.team-item,
.pop-up-form-content,
.popup-form-content {
    border-radius: 1.2rem !important;
}

.feature-card:hover,
.card-hover:hover,
.service-item:hover {
    transform: translateY(-6px);
    border-color: rgba(25, 180, 93, 0.25) !important;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.1);
}

.feature-icon,
.icon-square,
    .ai-icon {
        color: var(--primary) !important;
    }

    .ai-icon .bi,
    .ai-icon .fa,
    .ai-icon .fab,
    .ai-icon .far,
    .ai-icon .fal {
        color: #fff !important;
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    background: var(--primary) !important;
    color: #ffffff !important;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: #139342 !important;
}

.feature-table {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    color: #0f172a !important;
}

.feature-table th {
    background: rgba(25, 180, 93, 0.10) !important;
    color: #0f172a !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.feature-table td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.feature-table tr:nth-child(even) {
    background: rgba(25, 180, 93, 0.04) !important;
}

.feature-table tr:hover {
    background: rgba(25, 180, 93, 0.08) !important;
}

.form-control,
.form-select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
}

.form-control::placeholder,
.form-select::placeholder {
    color: rgba(15, 23, 42, 0.45) !important;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    background: #ffffff !important;
    color: #0f172a !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(25, 180, 93, 0.12) !important;
}

.text-secondary {
    color: rgba(15, 23, 42, 0.65) !important;
}

.bg-gradient {
    background: linear-gradient(135deg, rgba(25, 180, 93, 0.12) 0%, rgba(255, 255, 255, 1) 100%) !important;
}

.hero-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
}
