/* 
==============================================
Table of Contents:
1. General Styles
2. Header & Navigation
3. Hero Section
4. Services Highlights
5. Trusted Partners
6. Why Choose Section
7. Process Section
8. Features Section
9. Case Studies Section
10. Testimonials Section
11. FAQ Section
12. CTA Section
13. Footer
14. Media Queries
==============================================
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* 1. General Styles
==============================================*/
:root {
    --primary-color: #34A853;
    --secondary-color: #20c997;
    --accent-color: #ffde0a;
    --dark-color: #1a1a1a;
    --text-color: #4a4a4a;
    --light-text: #787878;
    --white-color: #ffffff;
    --light-color: #f8fff9;
    --gradient: linear-gradient(135deg, #34A853, #20c997);
    --box-shadow: 0 5px 20px rgba(40, 167, 69, 0.15);
    --transition: all 0.3s ease;
      --website-color:#34A853;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
 font-family: "Open Sans", Sans-serif
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}

.primary-btn {
    background: var(--gradient);
    color: var(--white-color);
    border :1px solid #34A853;
}

.primary-btn:hover {
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
      color: #34A853 ! important;
    background: var(--white-color);
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: var(--white-color) ! important;
    transform: translateY(-3px);
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    line-height: 1.3;
}

.section-heading p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
}

.center {
    text-align: center;
}

section {
    padding: 80px 0;
}

/* 2. Header & Navigation
==============================================*/


/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
    color: var(--white-color);
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-info {
    display: flex;
    gap: 20px;
}

.top-contact-info a {
    color: var(--white-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.top-contact-info a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.top-contact-info a i {
    margin-right: 8px;
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--white-color);
    font-size: 14px;
    transition: var(--transition);
}

.top-social a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* Main Header */
.header-main {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
}

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

.logo img {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-inner {
    padding: 20px;
}

.dropdown-section ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
}

.dropdown-section ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.dropdown-section ul li a {
    color: var(--text-color);
    font-size: 15px;
    display: block;
    transition: var(--transition);
    padding: 3px 0;
}

.dropdown-section ul li a:hover,
.dropdown-section ul li a.active {
    color: var(--primary-color);
    transform: translateX(5px);
}

.header-btn {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
    padding: 12px 25px;
    border-radius: 50px;
    margin-left: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease !important;
}

.header-btn:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}



.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}
.main-header, .header-search-form {
    background-color: #000000;
}
.transparent-header .main-header:not(.sticky-active):not(.is-sticky), .transparent-header .bottom-header-row:not(.sticky-active):not(.is-sticky) {
    background-color: black !important;
}

/* 3. Hero Section
==============================================*/
.hero-section {
    padding: 100px 0 60px;
    position: relative;
    background-color: var(--light-color);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
	 font-family: "Open Sans", Sans-serif;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-text);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

body .hero-section .hero-content .hero-btns a:first-child {
    color: white;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}




/*  Dream Taxi Section */
.dream-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dream-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 50px;
}

.dream-text {
    flex: 1;
}


.dream-section h2 {
    color: #000000;
    font-family: "Open Sans", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2em;
    margin-bottom: 10px;
}

.dream-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-text);
    max-width: 600px;
}



/* cta section */
.imgcta-section {
    background-image: url(https://nextolive.com/wp-content/uploads/2024/09/bgimg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.imgcta-section .section-heading {
    color: #FFFFFF;
    font-family: "Open Sans", Sans-serif;
    font-size: 51px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.5em;
    text-align: center;
}

body .button-wrapper .cta-button.btn.primary-btn {
    color: white !important;
}

.home_cta2 .conta_iner {
    padding: 50px;
    position: relative;
    min-height: 295px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}


.home_cta2 .conta_iner>* {
    position: relative;
    z-index: 3;
    font-size: 33px;
    line-height: 50px;
    color: white;
}

.home_cta2 .btn_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 18px;
}

.home_cta2 .conta_iner::after {
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("https://nextolive.com/wp-content/uploads/custom_home/cta-img.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* filter: grayscale(1); */
    z-index: 1;
}

.wrap_home .btn_primary.br {
    color: white !important;
    background: transparent;
    border-color: white;
    font-weight: 600;
}

.wrap_home .btnn {
    font-size: 16px;
    font-weight: 300;
    min-height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font_ProductSans);
    transition: var(--transition);
    border: 1px solid transparent;
    padding-inline: 25px;
    padding-block: 5px;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    box-shadow: none;
    overflow: hidden;
    cursor: pointer;
    gap: 8px;
}

.wrap_home .btnn::after, .btn_hdr::after, .btn_entpren span::after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-flex;
    transform: rotate(-90deg);
    transition: var(--transition);
    background: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 16 16\'%3e%3cpath fill=\'none\' stroke=\'%23fff\' stroke-linecap=\'round\' stroke-linejoin=\'round\' stroke-width=\'2\' d=\'M2 5l6 6 6-6\'/%3e%3c/svg%3e");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: center;
    position: relative;
}









/* 4. Services Highlights
==============================================*/

.text_service{
	 color: #000000;
    font-family: "Open Sans", Sans-serif;
    font-size: 47px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.2em;
}

.services-highlights {
    padding: 60px 0;
    background-color: var(--white-color);
    margin-top: -30px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-card .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.highlight-card .icon i {
    font-size: 30px;
    color: var(--white-color);
}

.highlight-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.highlight-card p {
    font-size: 15px;
    color: var(--light-text);
}



.section-header h2 {
    color: #000000;
    font-family: "Open Sans", Sans-serif;
    font-size: 47px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.2em;
}

/* 5. Trusted Partners
==============================================*/
.trusted-partners {
    background-color: var(--light-color);
    padding: 80px 0;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo i {
    color: var(--primary-color);
}

/* 6. Why Choose Section
==============================================*/
.why-choose-section {
    background-color: var(--white-color);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    position: relative;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
    overflow: hidden;
}

.benefit-card:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.benefit-card:hover h3,
.benefit-card:hover p {
    color: var(--white-color);
}

.benefit-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    transition: var(--transition);
}

.benefit-card:hover .benefit-number {
    color: var(--white-color);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: var(--transition);
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-color);
    transition: var(--transition);
}

/* 7. Process Section
==============================================*/
.process-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.process-workflow {
    position: relative;
    margin-top: 50px;
}

.process-workflow img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.process-steps .process-step {
    display: block;
    align-items: flex-start;
    gap: 15px;
    background-color: white;
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 0px 0px 5px #dddbdb;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white-color);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    font-size: 15px;
    color: var(--light-text);
}



.testimonial-slider {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* background: #fff; */
    border-radius: 10px;
    padding: px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
    text-align: start;
}

    .testimonial-quote {
      display: none;
      text-align: center;
      transition: all 0.5s ease;
    }

    .testimonial-quote.active {
      display: block;
    }

    .quote-icon {
      width: 30px;
      margin-bottom: 15px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
    }

    .author-image .avatar-placeholder {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #ccc;
      margin-right: 15px;
		position: relative;
    }

    .author-info h4 {
      margin: 0;
    }

    .testimonial-dots {
      text-align: center;
      margin-top: 20px;
    }

    .testimonial-dots .dot {
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
    }

    .testimonial-dots .dot.active {
      background-color: #333;
    }
.consultation-modal .testimonial-quote {
    margin-top: 0 !important;
}



/* Advanced Features Section
==============================================*/
.advanced-features-section {
    background-color: var(--white-color);
    padding: 80px 0;
}

.advanced-features-wrapper {
    display: flex;
    margin-top: 50px;
    gap: 40px;
    align-items: flex-start;
}

.features-tabs-list {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 4px solid var(--light-color);
    padding-right: 20px;
}

.feature-tab {
    padding: 15px 20px;
    background-color: var(--light-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.feature-tab.active, 
.feature-tab:hover {
    background: var(--gradient);
    color: var(--white-color);
    transform: translateX(5px);
}

.feature-tab h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    transition: var(--transition);
}

.feature-tab.active h3, 
.feature-tab:hover h3 {
    color: var(--white-color);
}

.features-tab-content {
    flex: 1;
    position: relative;
}

.feature-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.feature-content.active {
    display: block;
}

.feature-content .feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-content .feature-icon i {
    font-size: 30px;
    color: var(--white-color);
}

.feature-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-content p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
}

/* 8. Features Section
==============================================*/
.features-section {
    background-color: var(--white-color);
    padding: 80px 0;
}

.features-tabs {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--light-color);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient);
    color: var(--white-color);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
/*     background: var(--gradient); */
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--white-color);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    font-size: 15px;
    color: var(--light-text);
}

/* 9. Case Studies Section
==============================================*/
.case-studies-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.case-study-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-study-img {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-img i {
    color: var(--white-color);
}

.case-study-content {
    padding: 30px;
}

.case-study-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.case-study-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.case-study-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.case-study-meta span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--light-text);
}

.case-study-meta span i {
    color: var(--primary-color);
}

.read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* 10. Testimonials Section
==============================================*/
.testimonials-section {
    background-color: var(--white-color);
    padding: 80px 0;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    max-width: 350px;
    transition: var(--transition);
}

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

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img i {
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 14px;
    color: var(--light-text);
}

/* Blog Section 
==============================================*/
.blog-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-meta span {
    font-size: 14px;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta span i {
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

.blog-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--light-text);
}

/* 11. FAQ Section
==============================================*/
.faq-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.faq-container {
/*     max-width: 800px; */
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    background-color: var(--white-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 500;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--light-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-toggle i {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--gradient);
}

.faq-item.active .faq-toggle i {
    color: var(--white-color);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--light-text);
    line-height: 1.7;
}

/* 12. CTA Section
==============================================*/
.cta-section {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white-color);
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-section .primary-btn {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.cta-section .primary-btn:hover {
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
}

.cta-section .secondary-btn {
    border-color: var(--white-color);
    color: var(--white-color);
}

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

/* 12. Food Delivery Services Section
==============================================*/
.highlights-section .highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.highlights-section .highlight-card {
    background: #ffffff;
    border: 2px solid #34A853;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlights-section .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlights-section .highlight-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.highlights-section .highlight-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.highlights-section .highlight-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #395715;
    margin-bottom: 15px;
    line-height: 1.3;
}

.highlights-section .highlight-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    text-align: left;
    margin: 0;
}

.highlights-section .section-header h2 {
   color: #000000;
    font-family: "Open Sans", Sans-serif;
    font-size: 47px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.2em;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    margin-bottom: 50px;
}

.highlights-section .highlight-text {
    color: #34A853;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .highlights-section .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .highlights-section .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlights-section .section-header h2 {
        font-size: 28px;
    }
    
    .highlights-section .highlight-card {
        padding: 25px 20px;
    }
}




/* review  */


.reviews {
    background-color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.reviews h2 {

    font-size: 47px;
    font-weight: 800;
}

.reviews h2 span {
    color: #34A853;
}

.reviews h4 {

    font-size: 47px;
    font-weight: 700;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

}

.reviews h4 span {
    color: #34A853;
}

.review-item {
    padding: 20px;
}

.review-text {
    font-style: italic;
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    padding: 0px 50px;
}

.reviewer {
    font-weight: bold;
    margin-top: 10px;
}

.reviewer-role {
    font-size: 14px;
    color: gray;
}

.review-img {
    width: 80px;
    height: 80px;
    border-radius: 50% !important;
    object-fit: cover;
    margin: auto;
}


.slick-initialized .slick-slide,
.slick-list,
.slick-slide img,
.slick-slider,
.slick-track {
    display: block;
}

.slick-dots li,
.slick-list,
.slick-slider,
.slick-track {
    position: relative;
}

.slick-dots li button:before,
.slick-next:before,
.slick-prev:before {
    font-family: slick;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:before {
    display: none !important;
}

.slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-dots li button:focus,
.slick-dots li button:hover,
.slick-list:focus {
    outline: 0;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: "";
}

.slick-arrow.slick-hidden,
.slick-slide,
.slick-slide.slick-loading img {
    display: none;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-next,
.slick-prev {
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    line-height: 0;
    display: block;
    position: absolute;
    border: 1px solid #ccc;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: var(--c_white);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    z-index: 1;
}

.slick-next:hover,
.slick-prev:hover {
    background: var(--c_gradient);
}

.slick-next:hover::before,
.slick-prev:hover::before {
    filter: brightness(0) invert(1);
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before,
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25;
}

.slick-next:before,
.slick-prev:before {
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: var(--c_white);
}

.slick-prev {
    left: 10px;
}

[dir=rtl] .slick-prev {
    right: 10px;
    left: auto;
}

.slick-next:before,
.slick-prev:before,
[dir=rtl] .slick-next:before,
[dir=rtl] .slick-prev:before {
    content: "";
    background-image: url("https://cdn-hjokj.nitrocdn.com/xKvPrJeRKcMfBVHKpjbxbYMvqmxtHXge/assets/images/optimized/rev-21bf406/media.apptunix.com/wp-content/uploads/2024/04/26084554/slider_arrow_icon.png");
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
    display: flex;
    background-size: 22px;
    opacity: 1;
}

.slick-prev:before,
[dir=rtl] .slick-next:before {
    transform: scaleX(-1);
}

.slick-next {
    right: 10px;
}

[dir=rtl] .slick-next {
    right: auto;
    left: 10px;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 14px;
    position: inherit !important;
    bottom: 0 !important;
    margin-top: 20px;
}

.slick-dots li {
    display: inline-flex;
    margin: 0;
    width: auto;
    height: auto;
}

.slick-dots li:not(:last-child) {
    margin: 0;
}

.slick-dots li button {
    color: transparent;
    outline: 0;
    background: #d6d6d6;
    font-size: 0;
    cursor: pointer;
    padding: 0;
    border: none;
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background-color: var(--c_primary);
}

.arrows_bottom.slick-slider {
    padding-bottom: 75px;
}

.arrows_bottom :is(.slick-next, .slick-prev) {
    bottom: 0;
    top: auto;
    border-color: var(--c_text_dark);
}

.arrows_bottom :is(.slick-next, .slick-prev):hover {
    border-color: transparent;
}

.arrows_bottom .slick-next {
    right: calc(50% - 20px);
    transform: translate(100%, 0);
}

.arrows_bottom .slick-prev {
    left: calc(50% - 20px);
    transform: translate(-100%, 0);
}

@media screen and (max-width: 767px) {
    .slick-dots {
        gap: 8px;
    }

    .arrows_bottom .slick-next {
        right: calc(50% - 15px);
    }

    .arrows_bottom .slick-prev {
        left: calc(50% - 15px);
    }

    .slick-next,
    .slick-prev {
        width: 40px;
        height: 40px;
    }

    .slick-next:before,
    .slick-prev:before,
    [dir=rtl] .slick-next:before,
    [dir=rtl] .slick-prev:before {
        background-size: 18px;
    }

    .arrows_bottom.slick-slider {
        padding-bottom: 60px;
    }
}


.slick-dots li.slick-active button {
    background-color:#34A853;
}


/* Best Features Section */
.best-features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.best-features-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
}

.best-features-section .section-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-style: italic;
}

.features-panels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-panel {
    background: #ffffff;
    border: 2px solid #34A853;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.panel-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.panel-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.feature-panel h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-panel p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    text-align: left;
    margin: 0;
}

.best-features-section .highlight-text {
    color: #34A853;
    font-weight: 700;
}

/* Responsive adjustments for best features */
@media (max-width: 768px) {
    .features-panels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .best-features-section .section-header h2 {
        font-size: 28px;
    }
    
    .feature-panel {
        padding: 25px 20px;
    }
}

/* Essential Features Section */
.essential-features-section {
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: -20px;
}

.essential-features-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 60px;
}

.essential-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.essential-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.essential-feature-card:hover {
    background: var(--gradient);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.essential-feature-card:hover h3,
.essential-feature-card:hover p {
    color: var(--white-color);
}

.essential-feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
/*     background: #34A853; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: #ffffff;
}

.essential-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.essential-feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Responsive adjustments for essential features */
@media (max-width: 1200px) {
    .essential-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .essential-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .essential-features-section .section-header h2 {
        font-size: 28px;
    }
    
    .essential-feature-card {
        padding: 30px 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
}

/* AI Features Section */
.ai-features-section {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
}

.ai-features-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}


.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
    padding: 0px 16px;
}


.ai-feature-card {
/* 	    background: #3a3a3a; */
    background: #000000;
    border: 1px solid #4a4a4a;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    transition: var(--transition);
    position: relative;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    background: #34a853;
    border-color: #34a853;
}

.ai-feature-card:hover .ai-feature-icon i {
    color: white;
}

.ai-feature-icon {
    margin-bottom: 20px;
}

.ai-feature-icon i {
    font-size: 32px;
/*     color: #ff9800; */
	   color: #34a853;
    display: block;
}


.ai-feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments for AI features */
@media (max-width: 1200px) {
    .ai-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ai-features-section .section-header h2 {
        font-size: 28px;
    }
    
    .ai-feature-card {
        padding: 25px 20px;
    }
}

/* End-to-End Process Section */
.end-to-end-process-section {
    padding: 80px 0;
    background: #ffffff;
}

.end-to-end-process-section .section-header h2 {
   color: #000000;
    font-family: "Open Sans", Sans-serif;
    font-size: 47px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.2em;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    margin-bottom: 50px;
	text-align: left;
}

.end-to-end-process-section .section-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-style: italic;
}

.end-to-end-process-section .highlight-text {
    color: #34A853;
    font-weight: 700;
}

.process-tabs {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8f9fa;
    color: #666666;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-width: 100px;
}

.tab-btn:hover {
    background: #e9ecef;
    color: #333333;
}

.tab-btn.active {
    background: #34A853;
    color: #ffffff;
    border-color: #34A853;
}

.tab-content {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    min-height: 200px;
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-pane h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.tab-pane p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Responsive adjustments for process tabs */
@media (max-width: 768px) {
    .tab-buttons {
        gap: 5px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 12px;
        min-width: 80px;
    }
    
    .tab-content {
        padding: 25px 20px;
    }
    
    .tab-pane h3 {
        font-size: 20px;
    }
    
    .tab-pane p {
        font-size: 14px;
    }
    
    .end-to-end-process-section .section-header h2 {
        font-size: 28px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-section .section-header {
   /* max-width: 900px;*/
	 max-width: 100%;
    margin: 0 auto;
}

.faq-section .section-header h2 {
 color: #000000;
    font-family: "Open Sans", Sans-serif;
    font-size: 47px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.2em;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    margin-bottom: 50px;
	text-align: left;
}

.faq-section .highlight-text {
    color: #34A853;
    font-weight: 700;
}

.faq-container {
/*     max-width: 800px; */
    margin: 0 auto;
    padding: 0 40px;
}

.faq-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #34A853;
}

.faq-question {
    padding: 18px 10px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #34A853;
    transition: var(--transition);
    text-align: left;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 18px;
    font-weight: bold;
    color: #34A853;
    min-width: 18px;
    text-align: left;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 0 20px 28px;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.faq-item.active .faq-icon {
    color: #34A853;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-bottom: 25px;
    }
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 14px;
        gap: 10px;
    }
    
    .faq-answer {
        padding: 0 20px 20px 45px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .faq-section .section-header h2 {
        font-size: 28px;
    }
}

/* Consultation Modal Styles */
.consultation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.consultation-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-container {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.close-consultation {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

span.close-consultation {
    background: #2d9c4a;
}
.close-consultation:hover {
    background-color: rgb(0 0 0);
    color: #ffffff;
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.consultation-left {
    background: linear-gradient(135deg, #34A853, #1e7e34);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 15px 0 0 15px;
}

.consultation-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.consultation-left > p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.testimonial-slider {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.quote-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
}

.testimonial-slide p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 20px;
}

.author-image {
    width: 50px;
    height: 50px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.author-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: white;
}

.consultation-right {
    padding: 40px;
    background: white;
    border-radius: 0 15px 15px 0;
}

.consultation-right form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #34A853;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 80px;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
}

.budget-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.budget-option {
    position: relative;
    cursor: pointer;
}

.budget-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.budget-option label {
    display: block;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0;
}

.budget-option:hover label {
    border-color: #34A853;
}

.budget-option.active label,
.budget-option input[type="radio"]:checked + label {
    border-color: #34A853;
    background-color: rgba(40, 167, 69, 0.1);
    color: #34A853;
}

.consultation-submit-btn {
	 border: 1px solid #298c43;
    background: #34A853;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.consultation-submit-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    border: 1px solid #298c43;
}



/* Responsive design for consultation modal */
@media (max-width: 768px) {
    .consultation-container {
        width: 95%;
        margin: 20px;
        max-height: 85vh;
    }
    
    .consultation-wrapper {
        grid-template-columns: 1fr;
    }
    
    .consultation-left {
        border-radius: 15px 15px 0 0;
        padding: 30px 25px;
        min-height: auto;
    }
    
    .consultation-left h2 {
        font-size: 24px;
    }
    
    .consultation-right {
        border-radius: 0 0 15px 15px;
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .budget-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .phone-input {
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-input select {
        width: 100%;
    }
}

/* 13. Footer
==============================================*/
.footer {
    color: #c5c5c5;
}

.footer-widgets {
    background-color: #0e1b31;
    padding: 80px 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-column p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #a9b2c8;
}

.about-column {
    flex: 1.5;
}

.footer-contact {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.contact-item p {
    margin-bottom: 0;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #c5c5c5;
    font-size: 15px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-top: 5px;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links li a {
    color: #c5c5c5;
    font-size: 14px;
    transition: var(--transition);
}

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

/* Floating WhatsApp & Callback Buttons
==============================================*/
.floating-buttons {
    position: fixed;
    bottom: 80px;
   left: 50px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/*.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}*/
a.whatsapp-btn {
    width: 40px;
    height: 40px;
    font-size: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    cursor: pointer;
}
.whatsapp-btn i {
    font-size: 25px;
    color: #fff;
}
.whatsapp-btn::before {
    width: 120px;
    height: 120px;
    -webkit-animation: 2.2s ease-in-out infinite animation1;
    animation: 2.2s ease-in-out infinite animation1;
    -ms-animation: animation1 2.2s ease-out;
    -ms-animation-iteration-count: infinite;
    opacity: .5;
}
.whatsapp-btn::after {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    -webkit-animation: 1.7s ease-in-out infinite animation2;
    animation: 1.7s ease-in-out infinite animation2;
    -ms-animation: animation2 1.7s ease-out;
    -ms-animation-iteration-count: infinite;
    opacity: 1;
}
@-webkit-keyframes animation1{
0%{opacity:.1;-webkit-transform:translateX(-50%) scale(.4);transform:translateX(-50%) scale(.4)}
70%{opacity:.6;-webkit-transform:translateX(-50%) scale(1);transform:translateX(-50%) scale(1)}
100%{opacity:.3;-webkit-transform:translateX (-50%) scale(.5);transform:translateX(-50%) scale(.5)}
}

@-webkit-keyframes animation2{
0%{opacity:.3;-webkit-transform:translateX(-50%) scale(.6);transform:translateX(-50%) scale(.6)}
70%{opacity:.8;-webkit-transform:translateX(-50%) scale(1);transform:translateX(-50%) scale(1)}
100%{opacity:.1;-webkit-transform:translateX(-50%) scale(.7);transform:translateX(-50%) scale(.7)}
}
@keyframes scaleup{
0%{transform:scale(.8)}
100%{transform:scale(1.1)}
}
.whatsapp-btn::after, .whatsapp-btn::before {
    content: "";
    left: 50%;
    position: absolute;
    transform-origin: center;
    transform: translateX(-50%);
    border: 1px solid #25d366;
    border-radius: 50%;
    margin: auto;
    z-index: -1;
	top: -10px;
}

.whatsapp-btn::before {
	top: -38px !important;
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
}

/*.whatsapp-btn:hover {
    transform: scale(1.1);
}*/

.callback-btn {
    display: flex;
    align-items: center;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 15px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
     font-family: "Open Sans", Sans-serif;
    font-weight: 500;
    font-size: 14px;
    transform: rotate(-90deg);
    transform-origin: right center;
    position: fixed;
    right: 14px;
    top: 50%;
    margin-top: -60px;
}
.callback__img {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #218839;
    border-radius: 18px 0 0 9px;
    padding: 4px 0 0 4px;
    margin: -10px 10px 0px -20px;
}
.callback__img img {
	filter: brightness(0) invert(1);
}
.callback-btn:hover {
    transform: rotate(-90deg) translateX(-5px);
    background-color: rgb(33 140 58) !important;
    color: white !important;
}

.callback-icon {
    width: 20px;
    height: 20px;
   /* margin-right: 10px;*/
}

/* Callback Modal
==============================================*/
.callback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.callback-modal.show {
    display: flex;
    opacity: 1;
}
.callback-modal .callback-content {
    max-width: 375px !important;
    background: #daefe0;
    box-shadow: 0px 0px 5px #25c288;
}
.callback-content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    animation: slideIn 0.4s ease;
}
.callback-modal button.submit-btn {
    width: 140px !important;
    font-size: 12px;
    border-radius: 50px;
    font-weight: 600;
	padding: 8px 10px;
}
.submit_rqst{
	text-align:center;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.callback-modal .callback-content h3 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: .09px;
    color: #000000;
    line-height: 1.25;
    font-family: "PT Sans", sans-serif;
    margin-bottom: 18px;
}
.close-modal {
    position: absolute;
    top: -15px;
    right: -7px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease;
    background: #25c288;
    padding: 0px 14px;
    border-radius: 50%;
    line-height: 45px;
}

.close-modal:hover {
  background: black;
  color: white;

	
}

.callback-content h2 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 24px;
}

.callback-content p {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
       font-family: "Open Sans", Sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
       font-family: "Open Sans", Sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

/* Consultation Modal
==============================================*/
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.consultation-modal.show {
    display: flex;
    opacity: 1;
}

.consultation-container {
    background-color: #299343;
    width: 95%;
    max-width: 1200px;
    border-radius: 10px;
    position: relative;
    margin: 30px auto;
    animation: slideIn 0.4s ease;
    overflow: hidden;
}

.close-consultation {
    position: absolute;
       top: 1px;
    right: 1px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    z-index: 10;
    transition: transform 0.3s ease;
}

.close-consultation:hover {
    transform: rotate(90deg);
}

.consultation-wrapper {
    display: flex;
    flex-direction: row;
}

.consultation-left {
    width: 40%;
    background-color: #0066FF;
    color: white;
    padding: 28px 28px;
    position: relative;
    overflow: hidden;
}

.consultation-left h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: white;
	font-family: "PT Sans", sans-serif;
}

.consultation-left p {
    font-size: 16px;
    margin-bottom: 0;
    opacity: 0.9;
}

.testimonial-quote {
    position: relative;
    margin-top: 60px;
}

.author-image .quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: auto;
    border-radius: 50px !important;
}

.testimonial-quote p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
	text-align:left;
}
.consultation__btn button.consultation-submit-btn {
    width: 180px;
    border-radius: 50px;
    margin: 0 auto;
}
.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: start;
}
.author-image {
    margin-right: 15px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
    font-family: "PT Sans", sans-serif;
}
.author-info p {
    font-size: 14px;
    margin-bottom: 0;
    color: #e7e3e3;
}

.testimonial-dots {
    display: flex;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin-right: 8px;
}

.dot.active {
    background-color: white;
}

.consultation-right {
    width: 60%;
/*     padding: 50px 40px; */
	    padding: 20px 22px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
}

.consultation-right .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 80px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
       font-family: "Open Sans", Sans-serif;
    font-size: 15px;
    background-color: white;
}

.consultation-right select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
       font-family: "Open Sans", Sans-serif;
    font-size: 15px;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.budget-option {
    flex: 1;
    min-width: calc(25% - 10px);
    text-align: center;
}

.budget-option input[type="radio"] {
    display: none;
}

.budget-option label {
    display: block;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: normal;
    font-size: 14px;
}

.budget-option.active label,
.budget-option input[type="radio"]:checked + label {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.consultation-submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
       font-family: "Open Sans", Sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.consultation-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.consultation-submit-btn i {
    transition: transform 0.3s ease;
}

.consultation-submit-btn:hover i {
    transform: translateX(5px);
}


.cta-buttons a {
    padding: 6px 8px;
	    border-radius: 4px;
    font-weight: 700;
}

.cta-buttons .primary-btn {
    background: white;

}

.cta-buttons .secondary-btn {
    /* background: white; */
    color: white !IMPORTANT;
}

.cta-buttons .secondary-btn:hover {
    /* background: white; */
    color:#34A853 !IMPORTANT;
}


.select2-container--default .select2-selection--single, select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], div.wpforms-container-full .wpforms-form input[type="date"], div.wpforms-container-full .wpforms-form input[type="datetime"], div.wpforms-container-full .wpforms-form input[type="datetime-local"], div.wpforms-container-full .wpforms-form input[type="email"], div.wpforms-container-full .wpforms-form input[type="month"], div.wpforms-container-full .wpforms-form input[type="number"], div.wpforms-container-full .wpforms-form input[type="password"], div.wpforms-container-full .wpforms-form input[type="range"], div.wpforms-container-full .wpforms-form input[type="search"], div.wpforms-container-full .wpforms-form input[type="tel"], div.wpforms-container-full .wpforms-form input[type="text"], div.wpforms-container-full .wpforms-form input[type="time"], div.wpforms-container-full .wpforms-form input[type="url"], div.wpforms-container-full .wpforms-form input[type="week"], div.wpforms-container-full .wpforms-form select, div.wpforms-container-full .wpforms-form textarea {
    color: var(--sydney-grey-color) !important;
    border: 1px solid var(--sydney-border-color) !important;
    height: 32px !important;
    padding: 4px 20px !important;
    border-radius: 15px !important;
    -webkit-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
}

.author-info {
    text-align: start;
}

section.our-ios-services-section .ios-services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px;
}

section.our-ios-services-section .ios-services-cards .ios-service-card {
    width: 30.33%;
}

section.ios-applications-section .app-categories-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.app-category-card {
    /* display: flex; */
    width: 30%;
    /* box-shadow: 0px 0px 5px #767171; */
    border-radius: 10px;
    padding: 4px 15px;
    box-shadow: var(--box-shadow);
}

.app-category-card h3 {
    font-size: 22px;
}


.service-card-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.service-card-content p {
    font-size: 14px;
}

.apple-platforms-content .platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}


.apple-platforms-content .platform-card p {
  font-size: 14px;
}

.apple-platforms-content .platform-card h3 {
  font-size: 25px;
    margin-bottom: 10px;
}

.apple-platforms-content .platform-features li{
	  font-size: 14px;
}

.platforms-grid .platform-card {
    border: 1px solid #e3dfdf;
    border-radius: 10px;
    padding: 10px 15px;
}

section.industries-we-serve .industries-grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}



section.industries-we-serve .industry-card {
 border: 1px solid #e3dfdf;
    border-radius: 10px;
    padding: 10px 15px;
}

section.industries-we-serve .industry-card h3 {
  font-size: 25px;
    margin-bottom: 10px;
}

section.industries-we-serve .industry-card  p {
  font-size: 14px;
}


.client-reviews-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.client-reviews-section .section-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.client-reviews-section .section-heading p {
  color: #666;
  font-size: 1rem;
}

.client-reviews-section .custom-slider {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
  overflow: hidden;
}

.client-reviews-section .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.client-reviews-section .review-card {
  min-width: 100%;
  box-sizing: border-box;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
  text-align: left;
}

.client-reviews-section .review-rating {
  color: #ffb700;
  margin-bottom: 10px;
}

.client-reviews-section .review-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333;
}

.client-reviews-section .reviewer-info {
  display: flex;
  align-items: center;
}

.client-reviews-section .reviewer-avatar {
  margin-right: 15px;
}

.client-reviews-section .avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #555;
}

.client-reviews-section .reviewer-details h4 {
  margin: 0;
  font-size: 1rem;
}

.client-reviews-section .reviewer-details span {
  font-size: 0.85rem;
  color: #777;
}

.client-reviews-section .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #34a853;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1rem;
    z-index: 10;
    font-weight: 900;
}

.client-reviews-section .slider-btn.prev {
  left: 10px;
}

.client-reviews-section .slider-btn.next {
  right: 10px;
}

/*4-6-25*/

.el_button-wrapper {
    text-align: center;
}

.el_button-wrapper a {
    background-color: var(--e-global-color-global_color_1);
    font-family: "Open Sans", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px 10px 10px 10px;
    padding: 20px 40px 20px 40px;
    color: #fff !important;
}

.el_button-wrapper a:hover {
	 color: #000 !important;
}
.Full-Stack_section .section-header h3 {
    text-align: left;
    color: var(--e-global-color-50d8439);
    font-family: "Roboto", Sans-serif;
    font-size: 28px;
    font-weight: 500;
}
.section-header h2 span.highlight-text {
    color: #34A853;
}
.main_course-sec {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.sub_main_course-sec {
    width: 100%;
}
.right__sectn {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.right__sectn .widget_image_box {
    flex: 1 1 calc(33.333% - 1rem);
}

.left__sectn {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.left__sectn .widget_image_box {
    flex: 1 1 calc(33.333% - 1rem);
}

figure.main_image-box-img img {
    width: 80px !important;
    height: 80px !important;
}
.course_image_box h6 {
    color: #395715;
    font-family: "Roboto", Sans-serif;
    font-size: 28px;
    font-weight: 500;
}
.sub_main_course-sec {
    border: 1px solid #cccccc;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}
.image_box_section {
    padding: 10px 10px 10px 10px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #395715;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 5px 0px #395715 inset;
}
.inline_section .right__sectn .widget_image_box {
    flex: 1 1 calc(15.333% - 1rem);
}
.inline_section .sub_main_course-sec {
    border: unset;
    border-radius: unset;
}




.project-quote {
    font-family: Arial, sans-serif;
    background-color: #eaeaea;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* height: 100vh; */
}

.form-addres img {
    width: 20px;
    height: 20px;
}

.project-quote {
    display: flex;
    flex-wrap: wrap;
    /* max-width: 900px; */
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.project-quote .left-section {
    flex: 1;
    padding: 20px;
}

.project-quote .left-section h2 {
    font-size: 24px;
}

.project-quote .left-section p {
    font-size: 24px;
	margin-bottom: 0px;
}

.project-quote .left-section h2 span {
    color: green;
    font-weight: bold;
}

.project-quote .right-section {
    flex: 1;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #395715;
    box-shadow: 0px 0px 10px 0px #395715 inset;
}

.project-quote .right-section h2 {
    color: #4A7023;
}

.project-quote .right-section h5 {
    font-size: 30px;
    color: black;
}

.project-quote .form-group {
    display: flex;
    gap: 10px;
}

.project-quote input,
.project-quote select,
.project-quote textarea {
    width: 100%;
    padding: 10px;
    /* margin-top: 10px; */
    border: 1px solid #ccc;
    border-radius: 5px;
}

.project-quote span {
    padding-top: 20px;
}

.project-quote .form-inner {
    padding-top: 20px;
}

.project-quote label {
    font-weight: 600;
    color: #2e2e2e;
}

.project-quote button {
    background: green;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
}
.project-quote .form-addres .h5 {
    margin-bottom: 2px;
}
.project-quote .form-addres .h4 {
    margin-bottom: 0;
}
.project-quote button:hover {
    background: darkgreen;
}


.wrap_home h2 {
    font-size: 44px;
    line-height: 1.2;
}

.wrap_home .title-text {
    font-size: 47px;
    line-height: 1.2;
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin: 0px;
    margin: 0px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.home_cta2 .conta_iner h2 {
    max-width: 800px;
    margin: 0 auto 30px;
    color: white;
}


.project-quote .send-messgbtn {
    margin: auto;
    float: unset;
}



.hov_card .title:hover {
    color: #34A853;
}
.project-quote .tagline {
    font-weight: 600;
    font-style: italic;
    font-size: 14px;
    padding-top: 10px;
}

.project-quote .right-section h3 {
    color: #395715;
}

.project-quote .right-section p {
    font-size: 14px;
    padding: 10px 4px;
}



.text-clr {
    color: #006400;
}

.dream-text {
    color: #395715;
}

.project-dream {
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-size: 60px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.1em;

}

.project-quote .arrow-svg span {
    font-weight: 700;
}



.project-quote .form-addres {
    padding-top: 15px;
}

.project-quote .form-addres h4 {
    font-size: 24px;
    padding-bottom: 6px;
}

.project-quote .form-addres .h4 {
    font-size: 24px;
    padding-bottom: 6px;
    font-weight: 600;
}

.form-addres .h5 {
    font-size: 14px;
    display: flex;
    animation: c;
    align-items: end;
    gap: 5px;
    font-weight: 500;
    color: var(--c_text);
}

.project-quote .form-addres p {
    font-size: 14px;
    display: flex;
    gap: 6px;
    padding-bottom: 2px;
	margin-bottom: 0px;
}

.project-quote input::placeholder {
    font-size: 14px;
}

.project-quote select {
    text-transform: none;
    font-size: 14px;
}

.project-quote textarea::placeholder {
    font-size: 14px;
}

.project-quote .arrow-svg svg {
    width: 16px;
    display: inline-flex;
    font-size: 14px;
}

.project-quote .arrow-svg {
    margin-top: 10px;
    display: flex;
    gap: 5px;
    align-items: baseline;
    font-size: 14px;
}
.appi__head2 {
    color: black;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 40px;
    margin: 0px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.moreservice h4 {
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 47px;
}
.services-container {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* .services-container .services-header h2 {
    font-size: 28px;
    color: #333;
} */

.services-container .highlight {
    color: #34A853;
}

.services-container .services-header p {
    font-size: 16px;
    color: #555;
    margin: 10px 0 20px;
}

.services-container .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #34A853;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.services-container .btn:hover {
    background-color: #2c8c44;
}

.services-container .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.services-container .service-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.services-container .service-item:hover {
    transform: translateY(-5px);
    border: 1px solid #58ff58;
}

.services-container .service-item img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.services-container .service-item h6 {
    font-size: 18px;
    color: #333;
    margin: 10px 0 0;
}

.services-container .service-item a {
    text-decoration: none;
    color: inherit;
}

section.for_padding_cls {
    padding-top: 40px !important;
    padding-bottom: 20px !important;
}
.stats_grid.counter-section {
    display: flex;
    justify-content: space-between;
	gap: 1rem;
}
.container.text_white.wrap_home {
    box-shadow: 0px 0px 10px 0px #83BE3E inset;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #83BE3E;
    border-radius: 10px;
    padding: 30px 30px;
}
.wrap_home .stats_single {
    text-align: center;
}

.stats_single {
    text-align: center;
    border: 1px solid #000;
    border-radius: 15px;
    width: 100%;
}
.stats_grid.counter-section .stats_single p {
    color: #000000;
    font-family: "Open Sans", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
.wrap_home .stats_single span.counter {
    color: #395715;
    font-weight: bold !important;
    font-size: 40px;
}
.wrap_home h3 {
    margin-bottom: 2px;
}
.wrap_home h3 {
    margin-bottom: 2px;
    color: #395715;
    font-size: 40px;
}

.home_cta2 .conta_iner::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("https://nextolive.com/wp-content/uploads/custom_home/cta-img.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    inset: 0px;
    background-position: center center;
}
.Seamless__Experience .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    margin-top: 50px;
}
.image_brand-box {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}
.image_brand-contnr img {
    border-radius: 10px !important;
}
.e-con_e-con {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.ios_app-column {
    display: flex;
    justify-content: space-between;
}

.ios_app-widget-wrap {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #808080;
    box-shadow: 0px 0px 10px 0px #000000 inset;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 10px 20px 10px;
    padding: 20px 15px 20px 15px;
    width: 100%;
    text-align: center;
    border-radius: 20px;
}

figure.ios_app-image-box-img img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}
p.ios_app-image-box-title a {
    /* font-size: 24px; */
    font-family: "Open Sans", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}
p.ios_app-image-box-title {
    font-family: "Open Sans", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #395715;
}

.ios_app_secnd_sec-column {
    display: flex;
    justify-content: space-between;
}

.ios_app_secnd_sec-widget-wrap {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #808080;
    box-shadow: 0px 0px 10px 0px #000000 inset;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 10px 20px 10px;
    padding: 20px 15px 20px 15px;
    width: 100%;
    text-align: center;
    border-radius: 20px;
}

figure.ios_app_secnd_sec-image-box-img img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}
p.ios_app_secnd_sec-image-box-title a {
    /* font-size: 24px; */
    font-family: "Open Sans", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}
p.ios_app_secnd_sec-image-box-title {
    font-family: "Open Sans", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #395715;
}
.Different__Industries .right__sectn .widget_image_box {
    flex: 1 1 calc(24.333% - 1rem);
}
.last_sec_ios-page .services-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.faq-answer ul li {
    list-style: inside;
}


.form-group.sec_clm {
    width: 70%;
    flex: unset;
}


.form-group.fst_clm {
    width: 30%;
    flex: unset;
}


	.callback-modal .cc-picker-code-select-enabled::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 12px;
    right: 10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #512b2b;
}



@media (min-width: 992px) {
	.for-mobile{
		display:none;
	}
	
	.for-desktop{
		display:block;
	}
}

@media (max-width: 992px) {
	.for-mobile{
		display:block;
		padding-top:20px;
	}
	
	.for-desktop{
		display:none;
	}
}

@media (max-width: 992px) {
	.hov_card .title {
    margin: 10px 0 10px;
   min-height: unset;
}
a.whatsapp-btn {
    position: absolute !important;
    left: 16px !important;
}	
}

/*end*/





@media (max-width: 768px) {
  .client-reviews-section .review-card {
    padding: 20px;
  }

}


/* 14. Media Queries
==============================================*/
@media (max-width: 1024px) {
    .section-heading h2 {
        font-size: 32px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .process-workflow img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
   .callback-btn {
        bottom: 181px;
    }
    
   .floating-buttons {
    position: fixed;
    bottom: 80px;
    right: 0px;
    z-index: 999;
    display: flex;
    /* flex-direction: column; */
    /* gap: 15px; */
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
.right__sectn {
    gap: 1rem;
    display: grid!important;
    grid-template-columns: 1fr 1fr !important;
    width: 100%!important;
}	
.left__sectn {
    gap: 1rem;
    display: grid!important;
    grid-template-columns: 1fr 1fr !important;
    width: 100%!important;
}		
	
.e-con_e-con {
    display: grid!important;
    grid-template-columns: 1fr 1fr 1fr !important;
    width: 100%!important;
}	
.Seamless__Experience .highlights-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}	
	.project-quote {
    display: unset !important;
}
.project-dream {
    font-size: 40px !important;
}	
	.review-text {
    font-size: 14px;
    padding: 0px 5px;
    text-align: justify;
}
	
    .home_cta2 .conta_iner>* {
    font-size: 32px !important;
}
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white-color);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        overflow-y: auto;
        align-items: flex-start;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
        width: 100%;
        text-align: left;
        padding: 0 30px;
    }
    
    .nav-link {
        width: 100%;
        padding: 10px 0;
        display: flex;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        width: 100%;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-section ul {
        padding-left: 15px;
    }
    
    .dropdown-inner {
        padding: 10px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-text, .hero-image {
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
		text-align: left;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .advanced-features-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-tabs-list {
        flex: 1;
        width: 100%;
        border-right: none;
        border-bottom: 4px solid var(--light-color);
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .feature-tab.active, 
    .feature-tab:hover {
        transform: translateY(-5px);
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
    
    .testimonials-slider {
        justify-content: center;
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
.e-con_e-con {
    display: grid!important;
    grid-template-columns: 1fr 1fr!important;
    width: 100%!important;
}	
.stats_grid.counter-section {
    flex-wrap: wrap;
}	
.Seamless__Experience .highlights-grid {
    grid-template-columns: repeat(1, 1fr) !important;
}	
section.Reach_Out_btn .el_button-wrapper a {
    width: 100% !important;
    position: relative;
    padding: 16px 30px;
}	
.main_course-sec {
    flex-direction: column;
}	
.right__sectn .widget_image_box {
    flex: 1 1 calc(100% - 1rem) !important;
}	
.left__sectn .widget_image_box {
    flex: 1 1 calc(100% - 1rem) !important;
}
.ios_app-column {
    flex-wrap: wrap;
}
.performance_driver_section .heading2 {
    font-size: 32px !important;
}
.section-header h2 {
    font-size: 32px !important;
}
.text_service {
    font-size: 32px !important;
}
	
.ios_app_secnd_sec-column {
    flex-wrap: wrap;
}	
    .section-heading h2 {
        font-size: !important;
    }
    
    .hero-text h1 {
         font-size: 32px !important;
		        text-align: left;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .highlights-grid,
    .features-grid,
    .benefits-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}


@media (max-width: 992px) {
	.callback-btn {
    position: absolute !important;
    right: 15px !important;
    top: -233px!important;
    bottom: 266px !important;
}	
.callback__img {
    width: 40px !important;
    height: 53px !important;
    border-radius: 28px 0 0 9px !important;
    padding: 8px 0 0 10px !important;
    margin: -8px 10px 0px -15px;
}	
	
	.dream-section .dream-content {
    flex-direction: column;
}
	
	
	.whatsapp-btn img {
    width: 70%;

}
	.faq-container {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 0 0px;
}
	
	.consultation-left {
    width: 100%;

    padding: 10px 15px;
  
}
	
	.testimonial-author {
    display: none;
}
	
	.testimonial-quote {
    display: none;
}
	
.consultation-right {
    width: 100%;
    padding: 10px 8px;
}
	
	.consultation-wrapper {
    display: flex;
    flex-direction: column;
}
	

	
	.callback-btn {
    position: relative;
    right: -43px;
    top: 9%;
}
	
	form#budget_enquiry_form .form-row {
    display: block;
    gap: 0px;
    margin-bottom: 0;
}
	
	form#budget_enquiry_form .form-group {
    margin-bottom: 14px;
}

.phone-input #countryCode {
    width: 25%;
}

.phone-input {
    display: flex;
    gap: 3px;
    flex-direction: row;
}
	

	.consultation-left p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}
	
	.consultation-left h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
    color: white;
}
	.consultation-left p {
		display: none;
	}	
	.form-row.phone__number {
    display: flex !important;
}
.form-group.fst_clm {
    width: 30%;
    flex: unset !important;
    margin-right: 10px;
}	
.phone__number .phone-input #countryCode {
    width: 100%;
}	
.consultation-right {
    padding: 15px 20px !important;
    overflow: auto;
    height: auto !important;
}	
.consultation-right form {
    height: auto !important;
    overflow: scroll;
}	
	.consultation-container {
    width: 95%;
    margin: 10px;
    max-height: 95vh;
}
	.budget-option label {
    display: block;
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: normal;
    font-size: 11px;
}
	.consultation-submit-btn {
    margin-top: 0px;
}
	.consultation-right .form-group label {
    margin-bottom: 4px;

}
	.budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 10px;
}
	.testimonial-slider {
  
    display: none;
}
}


		
	
	@media only screen and (max-width: 992px) {
	.phon-hide{
    display:none
}
		
		
textarea#description {
    min-height: 100px;
    padding: 10px 10px !IMPORTANT;
}
		
}	
@media (max-width: 991px) {
 .cal_back_btn {
    display: none !important;
}
}			
@media (min-width: 992px) {
 .cal_back_btn {
    display: none !important;
}   
}


