﻿*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #343a40;
    background-color: #fff;
    overflow-x: hidden;
}
body, p , table  td 
{
    font-family: "Poppins", sans-serif;
}
h1,h2,h3,h4,h5,h6 ,th
{
    font-family: "Nohemi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
   
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.75rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}
p {
    margin-bottom: 1rem;
    color: #495057;
}
a {
    color: #21ad4f;
    text-decoration: none;
    transition: all .3s ease;
}
a:hover {
    color: #0056b3;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
li {
    margin-bottom: .25rem;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.fw-light {
    font-weight: 300;
}
.fw-normal {
    font-weight: 400;
}
.fw-medium {
    font-weight: 500;
}
.fw-semibold {
    font-weight: 600;
}
.fw-bold {
    font-weight: 700;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-1 {
    margin-bottom: .25rem;
}
.mb-2 {
    margin-bottom: .5rem;
}
.mb-3 {
    margin-bottom: 1rem;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.mb-5 {
    margin-bottom: 2rem;
}
body.loading {
    overflow: hidden;
}
body.mobile-menu-open {
    overflow: hidden;
}
.loaded {
    animation: fadeIn .5s ease-in;
}
@keyframes fadeIn {
    from {
    opacity: 0;
}
to {
    opacity: 1;
}
}.theme-color-text {
    color: #21ad4f;
}
.spacing {
    padding: 4rem 0;
}
.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 1rem;
    position: relative;
}
/* .navbar {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: all .3s ease;
    padding: .5rem 0;
    z-index: 1030;
    background: #0d0f0c;
}
.navbar.scrolled {
    background: #0d0f0c;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    position: fixed;
    width: 100%;
    transition: all .3s ease;
}
.navbar .navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #21ad4f;
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 60px;
    margin-right: 3rem;
}
.navbar .navbar-brand i {
    font-size: 1.5rem;
    color: #ff6b35;
}
.navbar .navbar-brand:hover {
    color: #0056b3;
    text-decoration: none;
}
.navbar .navbar-nav .nav-link {
    color: #fff;
    padding: .5rem 1rem;
    border-radius: .5rem;
    transition: all .3s ease;
    position: relative;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-decoration: none;
}
@media(max-width: 991px) {
    .navbar .navbar-nav .nav-link {
    color: #000;
}
}.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #21ad4f;
    transition: all .3s ease;
    transform: translateX(-50%);
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: #21ad4f;
    background: rgba(33, 173, 79, .05);
}
.navbar .navbar-nav .nav-link:hover::after, .navbar .navbar-nav .nav-link.active::after {
    width: 80%}
.navbar .navbar-toggler {
    border: none;
    padding: .25rem;
}
.navbar .navbar-toggler:focus {
    box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833,  37,  41,  0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: invert(1);
}
@media(max-width: 991px) {
    .navbar .navbar-collapse {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
    background: #fff;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    position: fixed !important;
    top: 0;
    left: 0;
    height: 100vh !important;
    width: 280px;
    z-index: 1050;
    overflow-y: auto;
    border-radius: 0;
    margin-top: 0;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(0.25,  0.46,  0.45,  0.94);
}
.navbar .navbar-collapse.show {
    transform: translateX(0) !important;
}
.navbar .navbar-collapse.collapsing {
    display: block !important;
    height: 100vh !important;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(0.25,  0.46,  0.45,  0.94);
}
.navbar .navbar-nav {
    margin-top: 2rem;
}
.navbar .navbar-nav .nav-link {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    display: block;
    width: 100%;
    text-align: left;
}
.navbar .navbar-nav .nav-link:last-child {
    border-bottom: none;
}
.navbar .navbar-collapse.show::before {
    content: "";
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: -1;
}
.navbar .navbar-collapse .navbar-brand {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}
.navbar .navbar-collapse::after {
    content: "×";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #6c757d;
    cursor: pointer;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
}
.navbar .navbar-collapse::after:hover {
    background: #e9ecef;
    color: #343a40;
}
}.container-fluid {
    padding: 0 5%}
@media(max-width: 767px) {
    .container-fluid {
    padding: 0 15px;
}
}.btn.theme-btn {
    border: 1px solid #21ad4f;
    border-radius: 10px;
    background: #21ad4f;
    color: #fff;
    padding: .8rem .9rem;
}
.btn.theme-btn.out-line-btn {
    border: 1px solid #fff;
    background: rgba(0, 0, 0, 0);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.18rem;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 10px;
    transition: all .3s ease;
    user-select: none;
    white-space: nowrap;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: .5px;
}
.btn:hover {
    background: #000;
    border: 1px solid #fff;
    text-decoration: none;
} */
.card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: .75rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    transition: all .3s ease;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .2);
}
.benefit-card {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg,  #ffffff 0%,  #f8f9fa 100%);
    border-radius: .75rem;
    transition: all .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    background: linear-gradient(135deg,  #ffffff 0%,  rgba(33,  173,  79,  0.05) 100%);
}
.benefit-card i {
    margin-bottom: 1.5rem;
    transition: all .3s ease;
}
.benefit-card h3 {
    color: #212529;
    margin-bottom: 0;
}
.benefit-card:hover i {
    transform: scale(1.1);
}
.feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transition: all .3s ease;
    border: 1px solid rgba(33, 173, 79, .1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,  #21ad4f,  #66b3ff);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .2);
    border-color: rgba(33, 173, 79, .2);
}
.feature-card h4 {
    color: #21ad4f;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.feature-card h4::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #21ad4f;
    border-radius: 50%;
    flex-shrink: 0;
}
.feature-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.7;
}
.service-card {
    background: #fff;
    border-radius: .75rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all .3s ease;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    border: 1px solid rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,  rgba(33,  173,  79,  0.05) 0%,  transparent 70%);
    transform: scale(0);
    transition: all .6s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border-color: rgba(33, 173, 79, .2);
}
.service-card:hover::before {
    transform: scale(1);
}
.service-card:hover i {
    transform: scale(1.2);
    color: #21ad4f;
}
.service-card i {
    margin-bottom: 1.5rem;
    transition: all .3s ease;
    position: relative;
    z-index: 2;
}
.service-card h5 {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
.partner-card {
    background: #fff;
    border-radius: .75rem;
    padding: 2rem;
    text-align: center;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    border: 2px solid rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}
.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,  transparent,  rgba(33,  173,  79,  0.1),  transparent);
    transition: all .6s ease;
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border-color: #21ad4f;
}
.partner-card:hover::before {
    left: 100%}
.partner-card h5 {
    font-weight: 700;
    color: #343a40;
    margin-bottom: 0;
    font-size: 1.125rem;
}
.special-offer-card {
    background: hsla(0, 0%, 100%, .1);
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 2px solid hsla(0, 0%, 100%, .2);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.special-offer-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,  #ff6b35,  #fdd835,  #ff6b35);
    border-radius: 1rem;
    z-index: -1;
    animation: shimmer 3s infinite;
}
.special-offer-card h3, .special-offer-card h4 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}
.special-offer-card p {
    color: hsla(0, 0%, 100%, .9);
    font-size: 1.125rem;
}
@keyframes shimmer {
    0% {
    background-position: -200% 0;
}
100% {
    background-position: 200% 0;
}
}.hero-section {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #0d0f0c;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding: 6rem 0 3rem;
    border-radius: 0 0 3rem 3rem;
}
@media(max-width: 991px) {
    .hero-section {
    padding: 4rem 0;
}
}.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section .hero-content {
    animation: slideInLeft 1s ease-out;
}
@media(max-width: 991px) {
    .hero-section .hero-content {
    text-align: center;
   
}
}.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 0rem;
    color: #fff;
}
.hero-section h1 .text-primary {
    background: #21ad4f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
}
.hero-section .lead-text {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
}
.hero-section .pricing-highlight {
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .2);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    animation: slideInRight 1s ease-out .3s both;
}
.hero-section .pricing-highlight h2 {
    font-size: 3rem;
}
.hero-section .pricing-highlight .pricing-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg,  #ff6b35,  #fdd835);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 10px;
    font-size: .875rem;
    font-weight: 700;
    transform: rotate(15deg);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
.hero-section .pricing-highlight .price-display {
    margin: 1.5rem 0;
    font-size: 12rem;
    font-weight: 600;
    font-size: 234.061px;
    display: flex;
    justify-content: center;
}
.hero-section .pricing-highlight .price-desplay-image {
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
}
@media(max-width: 560px) {
    .hero-section .pricing-highlight .price-desplay-image {
    max-width: 250px;
}
}.hero-section .pricing-highlight .price-label {
    color: #28a745;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 1rem;
}
.hero-section .btn-group {
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.hero-section .btn-group .btn {
    min-width: 160px;
    animation: bounceIn 1s ease-out .6s both;
}
.hero-section .btn-group .btn:nth-child(2) {
    animation-delay: .8s;
}
.hero-section .learn-more {
    color: #6c757d;
    font-size: .875rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    color: #fff;
    font-size: 1rem;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hero-section .learn-more span 
{
    color: white;
}
@media(max-width: 991px) {
    .hero-section .learn-more {
    justify-content: center;
}
}.hero-section .floating-icon {
    position: absolute;
    color: rgba(33, 173, 79, .1);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}
.hero-section .floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.hero-section .floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}
.hero-section .floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}
@keyframes slideInLeft {
    from {
    opacity: 0;
    transform: translateX(-50px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}@keyframes slideInRight {
    from {
    opacity: 0;
    transform: translateX(50px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}@keyframes bounceIn {
    0% {
    opacity: 0;
    transform: scale(0.3);
}
50% {
    transform: scale(1.05);
}
70% {
    transform: scale(0.9);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}@keyframes float {
    0%, 100% {
    transform: translateY(0px);
}
50% {
    transform: translateY(-20px);
}
}@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-10px);
}
60% {
    transform: translateY(-5px);
}
}@font-face {
    font-family: "Nohemi";
    src: url("../fonts/Nohemi-Thin.woff2") format("woff2"), url("../fonts/Nohemi-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Nohemi";
    src: url("../fonts/Nohemi-ExtraLight.woff2") format("woff2"), url("../fonts/Nohemi-ExtraLight.woff") format("woff");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Nohemi";
    src: url("../fonts/Nohemi-Light.woff2") format("woff2"), url("../fonts/Nohemi-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Nohemi";
    src: url("../fonts/Nohemi-Regular.woff2") format("woff2"), url("../fonts/Nohemi-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Nohemi";
    src: url("../fonts/Nohemi-Medium.woff2") format("woff2"), url("../fonts/Nohemi-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Nohemi";
    src: url("../fonts/Nohemi-SemiBold.woff2") format("woff2"), url("../fonts/Nohemi-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Nohemi";
    src: url("../fonts/Nohemi-Bold.woff2") format("woff2"), url("../fonts/Nohemi-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Nohemi";
    src: url("../fonts/Nohemi-ExtraBold.woff2") format("woff2"), url("../fonts/Nohemi-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Nohemi";
    src: url("../fonts/Nohemi-Black.woff2") format("woff2"), url("../fonts/Nohemi-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
.learn-more a img {
    margin-right: 10px;
}
.learn-more a {
    display: flex;
    align-items: center;
    text-decoration: none;
    outline: none;
}
.learn-more a:hover {
    color: #fff;
}
.benefits-section {
    padding: 3rem 0 0;
    background: #0d0f0c;
    position: relative;
    z-index: 9;
}
.benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
}
.benefits-section .container {
    position: relative;
    z-index: 2;
}
.benefits-section .benefit-card {
    background: rgba(0, 0, 0, 0);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    height: 100%;
    transition: all .3s ease;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    border: 1px solid rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
    color: #fff;
    padding-bottom: 0;
}
.benefits-section .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .2);
}
.benefits-section .benefit-card:hover::before {
    transform: scaleX(1);
}
.benefits-section .benefit-card:hover .benefit-title {
    color: #21ad4f;
   
}
.benefits-section .benefit-card .benefit-icon {
    width: 110px;
    height: 111px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    transition: all .3s ease;
}
.benefits-section .benefit-card .benefit-icon i {
    font-size: 2.5rem;
}
.benefits-section .benefit-card .benefit-icon.grow-customers i {
    color: #21ad4f;
}
.benefits-section .benefit-card .benefit-icon.increase-revenue i {
    color: #28a745;
}
.benefits-section .benefit-card .benefit-icon.lower-cost i {
    color: #ffc107;
}
.benefits-section .benefit-card .benefit-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    transition: all .3s ease;
    font-family: "Nohemi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.benefits-section .benefit-card .benefit-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}
.benefits-section .benefit-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .8s ease-out forwards;
}
.benefits-section .benefit-card:nth-child(1) {
    animation-delay: .1s;
}
.benefits-section .benefit-card:nth-child(2) {
    animation-delay: .3s;
}
.benefits-section .benefit-card:nth-child(3) {
    animation-delay: .5s;
}
.benefits-section.animate .benefit-card {
    animation-play-state: running;
}
.trust-section {
    background: #fff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}
.trust-section .bg-design {
    position: absolute;
    top: -50px;
    width: 100%;
    height: 100px;
    background: #0d0f0c;
    border-radius: 0 0 40px 40px;
}
.trust-section figure {
    margin: 0;
}
.trust-section .content-section {
    padding: 3rem 0;
    background: #0d0f0c;
    color: #fff;
}
.trust-section .content-section .title-bk {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}
.trust-section .content-section .rating-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}
.trust-section .content-section .rating-item {
    padding: 0 2rem;
}
.trust-section .content-section .rating-item .logo-bk {
    margin-bottom: .5rem;
}
.trust-section .content-section .tp-logo {
    position: relative;
    top: -13px;
}
.trust-section .content-section .tp-logo .logo-bk img {
    height: 86px;
    position: relative;
    top: -3px;
}
.trust-section .content-section .rest-price-sec__price {
    font-size: 6.6rem;
    line-height: 6.6rem;
    font-weight: 600;
    color: #fff;
}
.trust-section .content-section .rest-price-sec__text {
    font-size: 3rem;
    font-weight: 600;
    color: #21ad4f;
}
.trust-section .trust-text {
    color: #adb5bd;
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 0;
}
.trust-section .trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.trust-section .trust-logos .trust-logo {
    opacity: .6;
    transition: all .3s ease;
    filter: grayscale(100%);
}
.trust-section .trust-logos .trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}
.trust-section .trust-logos .trust-logo img {
    height: 40px;
    width: auto;
}
.why-zing-section {
    padding: 3rem 0;
    background: #fff;
  
}
.why-zing-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.why-zing-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(300px,  1fr));
    gap: 2rem;
}
.why-zing-section .feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transition: all .3s ease;
    border: 1px solid rgba(33, 173, 79, .1);
    position: relative;
    overflow: hidden;
}
.why-zing-section .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,  #21ad4f,  #66b3ff);
}
.why-zing-section .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .2);
    border-color: rgba(33, 173, 79, .2);
}
.why-zing-section .feature-card .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media(max-width: 768px) {
    .why-zing-section .feature-card .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
}
}.why-zing-section .feature-card .feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,  rgba(33,  173,  79,  0.1),  rgba(255,  107,  53,  0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.why-zing-section .feature-card .feature-item .feature-icon i {
    font-size: 1.5rem;
    color: #21ad4f;
}
.why-zing-section .feature-card .feature-item h4 {
    color: #21ad4f;
    font-weight: 700;
    margin-bottom: .5rem;
    font-size: 1.125rem;
}
.why-zing-section .feature-card .feature-item p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: .875rem;
}
.why-zing-section .feature-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .8s ease-out forwards;
}
.why-zing-section .feature-card:nth-child(1) {
    animation-delay: .2s;
}
.why-zing-section .feature-card:nth-child(2) {
    animation-delay: .4s;
}
.why-zing-section.animate .feature-card {
    animation-play-state: running;
}
.why-zing {
    padding: 4rem 1rem;
    background: #f9f9f9;
    padding-bottom: 12rem;
}
.why-zing__container {
    margin: 0 auto;
}
.why-zing__header {
    text-align: center;
    margin-bottom: 2rem;
}
.why-zing__title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #222;
}
@media(max-width: 560px) {
    .why-zing__title {
    font-size: 2.5rem;
    line-height: 3rem;
}
}.why-zing__grid {
    display: grid;
    grid-template-columns: repeat(2,  1fr);
    gap: 1.5rem;
}
@media(max-width: 768px) {
    .why-zing__grid {
    grid-template-columns: 1fr;
}
}.why-zing__card {
    background: linear-gradient(180deg,  rgba(34,  174,  80,  0.11) 0%,  rgba(255,  255,  255,  0.11) 100%);
    border-radius: 28px;
    padding: 2rem;
    padding-top: 3rem;
    transition: transform .3s ease;
}
.why-zing__card:hover {
    transform: translateY(-5px);
}
.why-zing__icon {
    font-size: 2.5rem;
    color: var(--mainColor,  #ff5722);
    margin-bottom: 1rem;
}
.why-zing__card-title {
    font-size: 2.75rem;
    font-weight: 500;
    margin-bottom: .5rem;
    color: #222;
}
@media(max-width: 560px) {
    .why-zing__card-title {
    font-size: 1.5rem;
    line-height: 2rem;
}
}.why-zing__card-text {
    font-size: 1.5rem;
    color: #4f4f4f;
    line-height: 2.2rem;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
}
@media(max-width: 560px) {
    .why-zing__card-text {
    font-size: 1.1rem;
    line-height: 1.7rem;
}
}.services {
    padding: 4rem 1rem;
    background: #0d0f0c;
    color: #fff;
    position: relative;
    
}
.services .round-bg {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 200px;
    top: -70px;
    z-index: 0;
    left: 0;
}
.services .round-bg::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 120%;
    content: "";
    background: #000;
    border-radius: 50%;
}
.services__container {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 2rem;
    align-items: center;
    margin: 0 auto;
}
@media(max-width: 992px) {
    .services__container {
    grid-template-columns: 1fr;
}
}.services__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
@media(max-width: 560px) {
    .services__left {
    align-items: center;
}
}.services__title {
    font-size: 3.38rem;
    font-weight: 600;
    color: #fff;
}
@media(max-width: 1200px) {
    .services__title {
    font-size: 2.5rem;
}
}@media(max-width: 991px) {
    .services__title {
    font-size: 3.38rem;
}
}@media(max-width: 560px) {
    .services__title {
    font-size: 2.5rem;
}
}.services__price img {
    max-width: 370px;
    height: auto;
}
@media(max-width: 1200px) {
    .services__price img {
    max-width: 250px;
}
}.services__grid {
    display: grid;
    grid-template-columns: repeat(4,  1fr);
    gap: 2.5rem 1rem;
}
@media(max-width: 992px) {
    .services__grid {
    grid-template-columns: repeat(3,  1fr);
}
}@media(max-width: 576px) {
    .services__grid {
    grid-template-columns: 1fr;
}
}.services__item {
    position: relative;
    border-radius: 28px;
    padding: 2rem 1.5rem;
    font-weight: 500;
    color: #fff;
    min-height: 175px;
    background: linear-gradient(#111,  #111) padding-box, linear-gradient(0deg,  #ffffff,  hsla(0,  0%,  100%,  0)) border-box;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: 1s;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.services__name {
    display: block;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 500;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.services__icon {
    position: absolute;
    bottom: -1rem;
    right: .75rem;
    height: 6rem;
}
@media(max-width: 1200px) {
    .services__icon {
    bottom: -12px;
    right: .75rem;
    height: 5rem;
}
}@media(max-width: 576px) {
    .services__icon {
    height: 7rem;
}
}.third-party {
    padding: 4rem 0 8rem;
}
.third-party__container {
    border-radius: 1.8rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 6.5rem 5rem;
    background: linear-gradient(180deg,  #F4FCDD 0%,  #FFFFFF 100%);
    position: relative;
}
@media(max-width: 992px) {
    .third-party__container {
    grid-template-columns: 1fr;
    text-align: center;
}
}@media(max-width: 560px) {
    .third-party__container {
    padding: 2.5rem 1.5rem;
}
}.third-party__content {
    display: flex;
    flex-direction: column;
}
.third-party__title {
    font-weight: 600;
    line-height: 1.3;
    color: #0c0f0d;
    font-size: 3rem;
}
@media(max-width: 560px) {
    .third-party__title {
    font-size: 2rem;
    line-height: 2.5rem;
}
}.third-party__title .primary-color {
    color: #21ad4f;
}
.third-party__description {
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.third-party__logos {
    display: flex;
    gap: .5rem;
}
@media(max-width: 992px) {
    .third-party__logos {
    justify-content: center;
}
}.third-party__logo {
    max-height: 40px;
    object-fit: contain;
}
.third-party__image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    position: absolute;
    bottom: 0;
    right: 0;
}
@media(max-width: 1200px) {
    .third-party__image img {
    position: relative;
}
}.testimonials {
    padding: 4rem 0rem;
}
.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials__title {
    text-align: center;
    font-size: 3.3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #222;
}
@media(max-width: 560px) {
    .testimonials__title {
    font-size: 2.5rem;
    line-height: 3rem;
}
}.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(4,  1fr);
    gap: 1.5rem;
}
@media(max-width: 992px) {
    .testimonials__grid {
    grid-template-columns: repeat(2,  1fr);
}
}@media(max-width: 400px) {
    .testimonials__grid {
    grid-template-columns: 1fr;
}
}.testimonial-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
    transition: transform .3s;
    position: relative;
}
.testimonial-card__play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9;
    width: 100%;
    height: 100%;
    transform: translate(-50%,  -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-card__play-btn svg {
    width: 32px;
    height: 32px;
}
.testimonial-card__play-btn svg path {
    fill: #fff;
}
.testimonial-card:hover {
    transform: translateY(-6px);
}
.testimonial-card__image {
    position: relative;
    overflow: hidden;
}
.testimonial-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.testimonial-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    transition: .5s;
    text-align: center;
}
.testimonial-card__overlay img {
    width: 3rem;
    height: 3rem;
    position: relative;
    z-index: 1;
    margin: auto;
}
.testimonial-card__overlay-content {
    padding: 1rem 1rem;
    transition: .5s;
}
.testimonial-card__overlay::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, .7);
    transition: opacity .4s ease;
}
.testimonial-card:hover .testimonial-card__overlay {
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
}
.testimonial-card:hover .testimonial-card__overlay::before {
    opacity: 0;
}
.testimonial-card__overlay-title {
    font-size: 1.2rem;
    margin-top: .5rem;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 9;
    transition: .5s;
    position: relative;
}
.testimonial-card__content {
    padding: 1rem;
    text-align: center;
}
.testimonial-card__name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: .25rem;
}
.testimonial-card__moto {
    font-size: .95rem;
    color: #555;
}
.fancybox__container {
    --fancybox-content-width:  360px;
    --fancybox-content-height:  640px;
}
.fancybox__container iframe {
    width: 320px !important;
    height: 570px !important;
    margin: auto;
}
.fancybox__container .fancybox__content {
    background: rgba(0, 0, 0, 0) !important;
}
.how-zing-works__modal-close {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 7px;
    z-index: 9;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #bcb9b9;
    font-size: 8px;
    font-weight: 500;
}
.how-zing-works__button {
    margin-top: 1rem;
}
.services-section {
    padding: 3rem 0;
    background: linear-gradient(135deg,  #f8f9fa 0%,  rgba(33,  173,  79,  0.02) 100%);
    position: relative;
}
.services-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.services-section .section-header .pricing-highlight-small {
    display: inline-block;
    background: #fff;
    border-radius: .75rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    margin-bottom: 2rem;
}
.services-section .section-header .pricing-highlight-small .price-display-small .currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: #6c757d;
    font-weight: 500;
}
.services-section .section-header .pricing-highlight-small .price-display-small .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #21ad4f;
    line-height: 1;
}
.services-section .section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}
.services-section .section-header .section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(280px,  1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.services-section .service-card {
    background: #fff;
    border-radius: .75rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all .3s ease;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    border: 1px solid rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
}
.services-section .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,  #21ad4f,  #ff6b35);
    transform: scaleX(0);
    transition: all .3s ease;
    transform-origin: left;
}
.services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border-color: rgba(33, 173, 79, .2);
}
.services-section .service-card:hover::before {
    transform: scaleX(1);
}
.services-section .service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg,  #21ad4f,  #66b3ff);
    color: #fff;
}
.services-section .service-card:hover .service-title {
    color: #21ad4f;
}
.services-section .service-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    background: linear-gradient(135deg,  rgba(33,  173,  79,  0.1),  rgba(255,  107,  53,  0.1));
    transition: all .3s ease;
}
.services-section .service-card .service-icon i {
    font-size: 2rem;
    color: #21ad4f;
    transition: all .3s ease;
}
.services-section .service-card .service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: .5rem;
    transition: all .3s ease;
}
.services-section .service-card .service-description {
    color: #6c757d;
    font-size: .875rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.services-section .service-card.ai-service .service-icon {
    background: linear-gradient(135deg,  rgba(23,  162,  184,  0.1),  rgba(33,  173,  79,  0.1));
}
.services-section .service-card.ai-service .service-icon i {
    color: #17a2b8;
}
.services-section .service-card.marketing-service .service-icon {
    background: linear-gradient(135deg,  rgba(255,  107,  53,  0.1),  rgba(255,  193,  7,  0.1));
}
.services-section .service-card.marketing-service .service-icon i {
    color: #ff6b35;
}
.services-section .service-card.tech-service .service-icon {
    background: linear-gradient(135deg,  rgba(40,  167,  69,  0.1),  rgba(76,  175,  80,  0.1));
}
.services-section .service-card.tech-service .service-icon i {
    color: #28a745;
}
.services-section .service-card.delivery-service .service-icon {
    background: linear-gradient(135deg,  rgba(220,  53,  69,  0.1),  rgba(229,  62,  62,  0.1));
}
.services-section .service-card.delivery-service .service-icon i {
    color: #dc3545;
}
.services-section .service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .6s ease-out forwards;
}
.services-section .service-card:nth-child(1) {
    animation-delay: 0.1s;
}
.services-section .service-card:nth-child(2) {
    animation-delay: 0.2s;
}
.services-section .service-card:nth-child(3) {
    animation-delay: 0.3s;
}
.services-section .service-card:nth-child(4) {
    animation-delay: 0.4s;
}
.services-section .service-card:nth-child(5) {
    animation-delay: 0.5s;
}
.services-section .service-card:nth-child(6) {
    animation-delay: 0.6s;
}
.services-section .service-card:nth-child(7) {
    animation-delay: 0.7s;
}
.services-section .service-card:nth-child(8) {
    animation-delay: 0.8s;
}
.services-section .service-card:nth-child(9) {
    animation-delay: 0.9s;
}
.services-section .service-card:nth-child(10) {
    animation-delay: 1s;
}
.services-section .service-card:nth-child(11) {
    animation-delay: 1.1s;
}
.services-section .service-card:nth-child(12) {
    animation-delay: 1.2s;
}
.services-section.animate .service-card {
    animation-play-state: running;
}
.delivery-special {
    padding: 3rem 0;
    background: linear-gradient(135deg,  #21ad4f 0%,  #0056b3 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.delivery-special::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/delivery-pattern.svg");
    background-size: 100px 100px;
    opacity: .1;
    animation: movePattern 20s linear infinite;
}
.delivery-special .container {
    position: relative;
    z-index: 2;
}
.delivery-special .special-offer-card {
    background: hsla(0, 0%, 100%, .1);
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 2px solid hsla(0, 0%, 100%, .2);
    text-align: center;
    position: relative;
}
.delivery-special .special-offer-card .offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,  #ff6b35,  #fdd835);
    color: #fff;
    padding: .5rem 1.5rem;
    border-radius: 10px;
    font-size: .875rem;
    font-weight: 700;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
.delivery-special .special-offer-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}
.delivery-special .special-offer-card .offer-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: #fdd835;
    margin: 1.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}
.delivery-special .special-offer-card p {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, .9);
    margin-bottom: 0;
    line-height: 1.6;
}
.delivery-special .special-offer-card .delivery-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.delivery-special .special-offer-card .delivery-logos .delivery-logo {
    background: #fff;
    padding: .5rem 1rem;
    border-radius: .5rem;
    opacity: .9;
    transition: all .3s ease;
}
.delivery-special .special-offer-card .delivery-logos .delivery-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}
@keyframes movePattern {
    0% {
    transform: translateX(0) translateY(0);
}
100% {
    transform: translateX(50px) translateY(50px);
}
}.testimonials-section {
    padding: 3rem 0;
    background: linear-gradient(135deg,  #ffffff 0%,  #f8f9fa 100%);
}
.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.testimonials-section .section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}
.testimonials-section .section-header .section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}
.testimonials-section .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(250px,  1fr));
    gap: 1.5rem;
}
.testimonials-section .partner-card {
    background: #fff;
    border-radius: .75rem;
    padding: 2rem;
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    border: 1px solid rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
}
.testimonials-section .partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,  transparent,  rgba(33,  173,  79,  0.1),  transparent);
    transition: all .6s ease;
}
.testimonials-section .partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border-color: #21ad4f;
}
.testimonials-section .partner-card:hover::before {
    left: 100%}
.testimonials-section .partner-card:hover .partner-logo {
    transform: scale(1.1);
}
.testimonials-section .partner-card:hover .partner-name {
    color: #21ad4f;
}
.testimonials-section .partner-card .partner-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg,  #f8f9fa,  #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #21ad4f;
    transition: all .3s ease;
    position: relative;
}
.testimonials-section .partner-card .partner-logo::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,  #21ad4f,  #ff6b35,  #21ad4f);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all .3s ease;
}
.testimonials-section .partner-card:hover .partner-logo::after {
    opacity: 1;
}
.testimonials-section .partner-card .partner-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: .5rem;
    transition: all .3s ease;
}
.testimonials-section .partner-card .partner-type {
    font-size: .875rem;
    color: #adb5bd;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.testimonials-section .partner-card .partner-rating {
    margin-top: .5rem;
}
.testimonials-section .partner-card .partner-rating .stars {
    color: #fdd835;
    font-size: .875rem;
}
.testimonials-section .partner-card .partner-rating .stars i {
    margin-right: 2px;
}
.testimonials-section .partner-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .6s ease-out forwards;
}
.testimonials-section .partner-card:nth-child(1) {
    animation-delay: .1s;
}
.testimonials-section .partner-card:nth-child(2) {
    animation-delay: .2s;
}
.testimonials-section .partner-card:nth-child(3) {
    animation-delay: .3s;
}
.testimonials-section .partner-card:nth-child(4) {
    animation-delay: .4s;
}
.testimonials-section.animate .partner-card {
    animation-play-state: running;
}
/* .footer {
    background: linear-gradient(135deg,  black 0%,  black 100%);
    color: #fff;
    padding: 3rem 0 1.5rem;
    position: relative;
}
@media(max-width: 767px) {
    .footer {
    text-align: center;
}
}.footer .round-bg {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 200px;
    top: -100px;
    z-index: -1;
}
.footer .round-bg::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 120%;
    content: "";
    background: #000;
    border-radius: 50%}
.footer .footer-content .row {
    align-items: flex-start;
}
.footer .footer-brand .brand-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
@media(max-width: 767px) {
    .footer .footer-brand .brand-logo {
    justify-content: center;
}
}.footer .footer-brand .brand-logo svg {
    width: 72px;
}
.footer .footer-brand .brand-description {
    color: #ced4da;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: .875rem;
}
.footer .footer-brand .contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
    color: #dee2e6;
    font-size: .875rem;
}
@media(max-width: 767px) {
    .footer .footer-brand .contact-info .contact-item {
    justify-content: center;
}
}.footer .footer-brand .contact-info .contact-item i {
    color: #21ad4f;
    width: 20px;
    text-align: center;
}
.footer .footer-brand .contact-info .contact-item a {
    color: #dee2e6;
    text-decoration: none;
    transition: all .3s ease;
}
.footer .footer-brand .contact-info .contact-item a:hover {
    color: #fff;
}
.footer .footer-section h6 {
    color: #fff;
    font-weight: 600;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
}
.footer .footer-section .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-section .footer-links li {
    margin-bottom: .5rem;
}
.footer .footer-section .footer-links li a {
    color: #ced4da;
    text-decoration: none;
    font-size: .875rem;
    transition: all .3s ease;
    display: inline-block;
}
.footer .footer-section .footer-links li a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer .footer-social h6 {
    margin-bottom: 1.5rem;
}
.footer .footer-social .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
@media(max-width: 767px) {
    .footer .footer-social .social-links {
    justify-content: center;
}
}.footer .footer-social .social-links .social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all .3s ease;
    text-decoration: none;
    color: #fff;
}
.footer .footer-social .social-links .social-link:hover {
    background: #21ad4f;
    color: #fff;
    border-color: #21ad4f;
    transform: translateY(-3px);
}
.footer .footer-social .social-links .social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}
.footer .footer-social .social-links .social-link.instagram:hover {
    background: linear-gradient(45deg,  #f09433 0%,  #e6683c 25%,  #dc2743 50%,  #cc2366 75%,  #bc1888 100%);
    border-color: #e6683c;
}
.footer .footer-social .social-links .social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}
.footer .footer-social .social-links .social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}
.footer .footer-social .newsletter {
    margin-top: 1.5rem;
}
.footer .footer-social .newsletter .newsletter-form {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
}
.footer .footer-social .newsletter .newsletter-form .form-control {
    flex: 1;
    padding: .5rem 1rem;
    border: 1px solid #6c757d;
    border-radius: .5rem;
    background: hsla(0, 0%, 100%, .1);
    color: #fff;
    font-size: .875rem;
}
.footer .footer-social .newsletter .newsletter-form .form-control::placeholder {
    color: #ced4da;
}
.footer .footer-social .newsletter .newsletter-form .form-control:focus {
    outline: none;
    border-color: #21ad4f;
    background: hsla(0, 0%, 100%, .15);
}
.footer .footer-social .newsletter .newsletter-form .btn-newsletter {
    padding: .5rem 1.5rem;
    background: #21ad4f;
    color: #fff;
    border: none;
    border-radius: .5rem;
    font-weight: 600;
    font-size: .875rem;
    cursor: pointer;
    transition: all .3s ease;
}
.footer .footer-social .newsletter .newsletter-form .btn-newsletter:hover {
    background: #0056b3;
    transform: translateY(-2px);
}
.footer .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
}
.footer .footer-bottom .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
@media(max-width: 768px) {
    .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
}
}.footer .footer-bottom .copyright {
    color: #ced4da;
    font-size: .875rem;
    margin: 0;
}
.footer .footer-bottom .copyright .year {
    color: #21ad4f;
    font-weight: 600;
}
.footer .footer-bottom .footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer .footer-bottom .footer-legal a {
    color: #ced4da;
    text-decoration: none;
    font-size: .875rem;
    transition: all .3s ease;
}
.footer .footer-bottom .footer-legal a:hover {
    color: #fff;
}
.footer .scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #21ad4f;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 1070;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.footer .scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.footer .scroll-top:hover {
    background: #0056b3;
    transform: translateY(-5px);
}
.footer .scroll-top i {
    font-size: 1.2rem;
} */
@keyframes fadeIn {
    from {
    opacity: 0;
}
to {
    opacity: 1;
}
}@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}@keyframes fadeInDown {
    from {
    opacity: 0;
    transform: translateY(-30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}@keyframes fadeInLeft {
    from {
    opacity: 0;
    transform: translateX(-30px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}@keyframes fadeInRight {
    from {
    opacity: 0;
    transform: translateX(30px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}@keyframes scaleIn {
    from {
    opacity: 0;
    transform: scale(0.8);
}
to {
    opacity: 1;
    transform: scale(1);
}
}@keyframes slideInUp {
    from {
    transform: translateY(100%);
}
to {
    transform: translateY(0);
}
}@keyframes slideInDown {
    from {
    transform: translateY(-100%);
}
to {
    transform: translateY(0);
}
}@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-10px);
}
60% {
    transform: translateY(-5px);
}
}@keyframes pulse {
    0% {
    transform: scale(1);
}
50% {
    transform: scale(1.05);
}
100% {
    transform: scale(1);
}
}@keyframes shake {
    0%, 100% {
    transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
}
20%, 40%, 60%, 80% {
    transform: translateX(5px);
}
}@keyframes rotate {
    from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}@keyframes shimmer {
    0% {
    background-position: -200% 0;
}
100% {
    background-position: 200% 0;
}
}.fade-in {
    animation: fadeIn .6s ease-out;
}
.fade-in-up {
    animation: fadeInUp .8s ease-out;
}
.fade-in-down {
    animation: fadeInDown .8s ease-out;
}
.fade-in-left {
    animation: fadeInLeft .8s ease-out;
}
.fade-in-right {
    animation: fadeInRight .8s ease-out;
}
.scale-in {
    animation: scaleIn .6s ease-out;
}
.slide-in-up {
    animation: slideInUp .8s ease-out;
}
.slide-in-down {
    animation: slideInDown .8s ease-out;
}
.bounce {
    animation: bounce 2s infinite;
}
.pulse {
    animation: pulse 2s infinite;
}
.shake {
    animation: shake .5s ease-in-out;
}
.rotate {
    animation: rotate 1s linear infinite;
}
.shimmer {
    background: linear-gradient(90deg,  transparent,  rgba(255,  255,  255,  0.4),  transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}
.hover-lift {
    transition: all .3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
}
.hover-scale {
    transition: all .3s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
}
.hover-rotate {
    transition: all .3s ease;
}
.hover-rotate:hover {
    transform: rotate(5deg);
}
.hover-glow {
    transition: all .3s ease;
}
.hover-glow:hover {
    box-shadow: 0 0 20px rgba(33, 173, 79, .4);
}
.stagger-children>* {
    animation: fadeInUp .8s ease-out backwards;
}
.stagger-children>*:nth-child(1) {
    animation-delay: 0.1s;
}
.stagger-children>*:nth-child(2) {
    animation-delay: 0.2s;
}
.stagger-children>*:nth-child(3) {
    animation-delay: 0.3s;
}
.stagger-children>*:nth-child(4) {
    animation-delay: 0.4s;
}
.stagger-children>*:nth-child(5) {
    animation-delay: 0.5s;
}
.stagger-children>*:nth-child(6) {
    animation-delay: 0.6s;
}
.stagger-children>*:nth-child(7) {
    animation-delay: 0.7s;
}
.stagger-children>*:nth-child(8) {
    animation-delay: 0.8s;
}
.stagger-children>*:nth-child(9) {
    animation-delay: 0.9s;
}
.stagger-children>*:nth-child(10) {
    animation-delay: 1s;
}
.stagger-children>*:nth-child(11) {
    animation-delay: 1.1s;
}
.stagger-children>*:nth-child(12) {
    animation-delay: 1.2s;
}
.stagger-children>*:nth-child(13) {
    animation-delay: 1.3s;
}
.stagger-children>*:nth-child(14) {
    animation-delay: 1.4s;
}
.stagger-children>*:nth-child(15) {
    animation-delay: 1.5s;
}
.stagger-children>*:nth-child(16) {
    animation-delay: 1.6s;
}
.stagger-children>*:nth-child(17) {
    animation-delay: 1.7s;
}
.stagger-children>*:nth-child(18) {
    animation-delay: 1.8s;
}
.stagger-children>*:nth-child(19) {
    animation-delay: 1.9s;
}
.stagger-children>*:nth-child(20) {
    animation-delay: 2s;
}
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease-out;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(33, 173, 79, .3);
    border-left-color: #21ad4f;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}
.loading-dots {
    display: flex;
    gap: 5px;
}
.loading-dots .dot {
    width: 8px;
    height: 8px;
    background: #21ad4f;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}
.loading-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}
.loading-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}
.loading-dots .dot:nth-child(3) {
    animation-delay: 0s;
}
.typewriter {
    overflow: hidden;
    border-right: 2px solid #21ad4f;
    white-space: nowrap;
    animation: typing 3s steps(40,  end), blink-caret .75s step-end infinite;
}
@keyframes typing {
    from {
    width: 0;
}
to {
    width: 100%}
}@keyframes blink-caret {
    from, to {
    border-color: rgba(0, 0, 0, 0);
}
50% {
    border-color: #21ad4f;
}
}.parallax {
    transform: translateZ(0);
    will-change: transform;
}
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}
@media(prefers-reduced-motion: reduce) {
    *, *: :before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
}
}.responsive-text {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}
.responsive-heading {
    font-size: clamp(1.5rem, 5vw, 3rem);
}
.responsive-display {
    font-size: clamp(2rem, 6vw, 4rem);
}
.container-fluid-custom, .container-custom {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}
@media(max-width: 575px) {
    .container-fluid-custom, .container-custom {
    padding-right: .5rem;
    padding-left: .5rem;
}
}.container-custom {
    max-width: 1200px;
}
.m-0 {
    margin: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mr-0 {
    margin-right: 0 !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.ml-0 {
    margin-left: 0 !important;
}
.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.m-1 {
    margin: .25rem !important;
}
.mt-1 {
    margin-top: .25rem !important;
}
.mr-1 {
    margin-right: .25rem !important;
}
.mb-1 {
    margin-bottom: .25rem !important;
}
.ml-1 {
    margin-left: .25rem !important;
}
.mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important;
}
.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
}
.m-2 {
    margin: .5rem !important;
}
.mt-2 {
    margin-top: .5rem !important;
}
.mr-2 {
    margin-right: .5rem !important;
}
.mb-2 {
    margin-bottom: .5rem !important;
}
.ml-2 {
    margin-left: .5rem !important;
}
.mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important;
}
.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
}
.m-3 {
    margin: 1rem !important;
}
.mt-3 {
    margin-top: 1rem !important;
}
.mr-3 {
    margin-right: 1rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.ml-3 {
    margin-left: 1rem !important;
}
.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}
.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.m-4 {
    margin: 1.5rem !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.mr-4 {
    margin-right: 1.5rem !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.ml-4 {
    margin-left: 1.5rem !important;
}
.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}
.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.m-5 {
    margin: 2rem !important;
}
.mt-5 {
    margin-top: 2rem !important;
}
.mr-5 {
    margin-right: 2rem !important;
}
.mb-5 {
    margin-bottom: 2rem !important;
}
.ml-5 {
    margin-left: 2rem !important;
}
.mx-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
}
.my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.m-6 {
    margin: 3rem !important;
}
.mt-6 {
    margin-top: 3rem !important;
}
.mr-6 {
    margin-right: 3rem !important;
}
.mb-6 {
    margin-bottom: 3rem !important;
}
.ml-6 {
    margin-left: 3rem !important;
}
.mx-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}
.my-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.p-0 {
    padding: 0 !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pr-0 {
    padding-right: 0 !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pl-0 {
    padding-left: 0 !important;
}
.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.p-1 {
    padding: .25rem !important;
}
.pt-1 {
    padding-top: .25rem !important;
}
.pr-1 {
    padding-right: .25rem !important;
}
.pb-1 {
    padding-bottom: .25rem !important;
}
.pl-1 {
    padding-left: .25rem !important;
}
.px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important;
}
.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
}
.p-2 {
    padding: .5rem !important;
}
.pt-2 {
    padding-top: .5rem !important;
}
.pr-2 {
    padding-right: .5rem !important;
}
.pb-2 {
    padding-bottom: .5rem !important;
}
.pl-2 {
    padding-left: .5rem !important;
}
.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important;
}
.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.pt-3 {
    padding-top: 1rem !important;
}
.pr-3 {
    padding-right: 1rem !important;
}
.pb-3 {
    padding-bottom: 1rem !important;
}
.pl-3 {
    padding-left: 1rem !important;
}
.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.p-4 {
    padding: 1.5rem !important;
}
.pt-4 {
    padding-top: 1.5rem !important;
}
.pr-4 {
    padding-right: 1.5rem !important;
}
.pb-4 {
    padding-bottom: 1.5rem !important;
}
.pl-4 {
    padding-left: 1.5rem !important;
}
.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}
.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.p-5 {
    padding: 2rem !important;
}
.pt-5 {
    padding-top: 2rem !important;
}
.pr-5 {
    padding-right: 2rem !important;
}
.pb-5 {
    padding-bottom: 2rem !important;
}
.pl-5 {
    padding-left: 2rem !important;
}
.px-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
}
.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
.p-6 {
    padding: 3rem !important;
}
.pt-6 {
    padding-top: 3rem !important;
}
.pr-6 {
    padding-right: 3rem !important;
}
.pb-6 {
    padding-bottom: 3rem !important;
}
.pl-6 {
    padding-left: 3rem !important;
}
.px-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}
.py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
@media(max-width: 575px) {
    .hero-section {
    min-height: auto;
    text-align: center;
    padding: 2rem 1rem;
}
.hero-section h1 {
    font-size: 2rem;
    /* margin-bottom: 1.5rem; */
}
.hero-section .pricing-highlight {
    margin-top: 1.5rem;
    padding: 1.5rem;
}
.hero-section .pricing-highlight .price-display .amount {
    font-size: 3rem;
}
.hero-section .btn-group {
    flex-direction: column;
    gap: .5rem;
}
.hero-section .btn-group .btn {
    width: 100%;
    min-width: auto;
}
.benefits-section .benefit-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}
.services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}
.services-section .service-card {
    padding: 1.5rem;
}
.why-zing-section .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.why-zing-section .feature-card {
    padding: 1.5rem;
}
.why-zing-section .feature-card .feature-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.testimonials-section .partners-grid {
    grid-template-columns: repeat(2,  1fr);
    gap: 1rem;
}
.testimonials-section .partner-card {
    height: 150px;
    padding: 1rem;
}
.footer .footer-content .row {
    flex-direction: column;
    gap: 2rem;
}
.footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}
.navbar .container {
    padding: 0 .5rem;
}
.navbar .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: .75rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
}@media(min-width: 576px)and (max-width: 991px) {
    .services-section .services-grid {
    grid-template-columns: repeat(2,  1fr);
}
.testimonials-section .partners-grid {
    grid-template-columns: repeat(2,  1fr);
}
.why-zing-section .features-grid {
    grid-template-columns: 1fr;
}
}@media(min-width: 992px) {
    .hero-section .container .row {
    align-items: center;
}
.hero-section .pricing-highlight {
    transform: perspective(800px) rotateY(-5deg);
    transition: all .3s ease;
}
.hero-section .pricing-highlight:hover {
    transform: perspective(800px) rotateY(0deg) scale(1.05);
}
.services-section .services-grid {
    grid-template-columns: repeat(4,  1fr);
}
.testimonials-section .partners-grid {
    grid-template-columns: repeat(4,  1fr);
}
.why-zing-section .features-grid {
    grid-template-columns: repeat(2,  1fr);
}
}@media(min-width: 1200px) {
    .container-custom {
    max-width: 1400px;
}
.hero-section h1 {
    font-size: 4rem;
}
.section-title {
    font-size: 3rem;
}
}.aspect-ratio-16-9 {
    aspect-ratio: 16/9;
}
.aspect-ratio-4-3 {
    aspect-ratio: 4/3;
}
.aspect-ratio-1-1 {
    aspect-ratio: 1/1;
}
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}
.img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%}
.img-contain {
    object-fit: contain;
    width: 100%;
    height: 100%}
@media(max-width: 575px) {
    .d-mobile-none {
    display: none !important;
}
}.d-mobile-block {
    display: none !important;
}
@media(max-width: 575px) {
    .d-mobile-block {
    display: block !important;
}
}@media(min-width: 576px)and (max-width: 991px) {
    .d-tablet-none {
    display: none !important;
}
}.d-tablet-block {
    display: none !important;
}
@media(min-width: 576px)and (max-width: 991px) {
    .d-tablet-block {
    display: block !important;
}
}@media(min-width: 992px) {
    .d-desktop-none {
    display: none !important;
}
}.d-desktop-block {
    display: none !important;
}
@media(min-width: 992px) {
    .d-desktop-block {
    display: block !important;
}
}@media(max-width: 575px) {
    .text-mobile-center {
    text-align: center !important;
}
}@media(min-width: 576px)and (max-width: 991px) {
    .text-tablet-center {
    text-align: center !important;
}
}@media(min-width: 992px) {
    .text-desktop-left {
    text-align: left !important;
}
}@media(max-width: 575px) {
    .flex-mobile-column {
    flex-direction: column !important;
}
}@media(min-width: 576px)and (max-width: 991px) {
    .flex-tablet-row {
    flex-direction: row !important;
}
}@media(max-width: 575px) {
    .justify-mobile-center {
    justify-content: center !important;
}
}@media(max-width: 575px) {
    .align-mobile-center {
    align-items: center !important;
}
}/*# sourceMappingURL=styles.css.map */



.about-section .title-bk 
{
    color: black;
    font-weight: 500;
   
}
.about-section.spacing 
{
    padding: 4rem 0;
}
.about-section .bk-image 
{
    position: relative;
    padding-bottom: 100%;
    border-radius: 1rem;
    overflow: hidden;
}
.about-section .bk-image  img 
{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
section.about-section.spacing {
    font-size: .9rem;
    line-height: 1.6rem;
    padding-bottom: 9rem;
}

.hero-content p 
{
    color: #d2d7dd;
}
.about-section  .col-md-6 
{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.row 
{
    margin-right: -1.25rem;
    margin-left: -1.25rem;
}

.zing-faq .title-bk 
{
    color: black;
    font-weight: 500;
   
}

.zing-faq 
{
    padding: 4rem 0;
    padding-bottom: 9rem;
}

.zing-faq .accordion-button:focus {
    z-index: 3;
    border-color: snow;
    outline: 0;
    box-shadow: none;
    background: #f1f1f1;
}

.accordion-button:not(.collapsed) {
   
    background-color: #f1f1f1;
    
}

.navbar-brand .st0 {
    fill: #40B659!important;
} 