@font-face {
    font-family: 'Onest';
    src: url('../fonts/onest/Onest-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/onest/Onest-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/onest/Onest-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #0aec33;
    --dark-blue: #012641;
    --light-gray: #f2f2f2;
    --deep-black: #0f0f0f;
    --soft-gray: #eaeaea;
    --text-black: #0f0f0f;
    --marquee-speed: 8s;

    --font-family: 'Onest', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-black);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--dark-blue);
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

/* Navigation Bar */


.navbar {
    position: sticky;
    top: 0;
    background: white;
    padding: 16px 0;
    z-index: 1000;
    width: 100%;
    border-bottom: var(--primary-color) 1px solid;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo {
    flex: 0;
}

.logo img {
    height: 45px;
    width: auto;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1002;
}

.profile-container {
    position: relative;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: var(--color-green) 2px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

/* For desktop - show on hover and click */
@media (min-width: 769px) {
    .profile-container:hover .profile-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* For mobile - show on click only */
@media (max-width: 768px) {
    .profile-container.active .profile-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}

.nav-and-profile {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1002;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 19px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-green);
}

.login-btn {
    background: var(--deep-black);
    color: white;
    padding: 10px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

.login-btn:hover {
    background: var(--deep-black);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.hamburger span {
    background: #333;
    height: 3px;
    width: 30px;
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -2px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 2px);
}

@media (max-width: 768px) {
    .nav-and-profile {
        gap: 0;
    }

    .right-section {
        order: -1;
        margin-left: auto;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        background: white;
        width: 100%;
        height: 100vh;
        padding: 80px 20px 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: right 0.3s ease;
        justify-content: flex-start;
        gap: 20px;
        margin-left: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-link {
        font-size: 24px;
        padding: 15px 0;
    }

    .contact-btn {
        margin-top: 20px;
        padding: 15px 30px;
        font-size: 18px;
    }
}

/* ============================================
   ANIMATED BACKGROUND
============================================ */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.animated-bg canvas {
    display: block;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 236, 51, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 236, 51, 0.1);
    border: 1px solid rgba(10, 236, 51, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 30px;
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-family);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--dark-blue);
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #00d930);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--deep-black);
    line-height: 1.8;
    animation: slideUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease 0.4s backwards;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom a {
    color: white;
    text-decoration: none;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 236, 51, 0.4);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--dark-blue);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--dark-blue);
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background: var(--dark-blue);
    color: white;
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: slideUp 0.8s ease 0.6s backwards;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-size: 13px;
    font-weight: 400;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-main-card {
    position: relative;
    overflow: hidden;
}

.hero-main-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: floatCard 6s infinite ease-in-out;
    z-index: 2;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-card-1 {
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 10%;
    left: -50px;
    animation-delay: 2s;
}

.floating-card i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.floating-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.floating-card p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* ============================================
   BENEFITS SECTION
============================================ */
.benefits-section {
    padding: 60px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}



.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: rgba(10, 236, 51, 0.1);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.benefit-card {

    border: 2px solid rgba(10, 236, 51, 0.15);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(1, 38, 65, 0.2);
    position: relative;
}

.benefit-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(1, 38, 65, 0.15);
    border-radius: 50%;
}

.benefit-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.15rem;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.875rem;
    margin: 0;
}

.benefit-tag {
    display: inline-block;
    background: rgba(10, 236, 51, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   TRUSTED CLIENTS SECTION
============================================ */
.trusted-clients-section {
    position: relative;
    padding: 4rem 2rem;
    background: white;
    overflow: hidden;
}

.trusted-section-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trusted-clients-header {
    text-align: center;
    margin-bottom: 3rem;
}



.clients-marquee-wrapper {
    position: relative;
    overflow: hidden;
    background: white;
    margin: 0 -2rem;
    padding: 0 2rem;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.clients-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.clients-marquee-track {
    display: flex;
    padding: 15px;
    gap: 2rem;
    width: fit-content;
    animation: clients-scroll-left 40s linear infinite;
}

@keyframes clients-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * (200px + 2rem) * 7));
    }
}

.trusted-client-card {
    flex-shrink: 0;
    width: 200px;
    height: 8rem;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(10, 236, 51, 0.15);
}

.trusted-client-logo {
    max-width: 75%;
    max-height: 70%;
    object-fit: contain;
}

/* ============================================
   STEPS SECTION
============================================ */
.steps-section {
    padding: 70px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 236, 51, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.steps-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 33%, var(--primary-color) 66%, var(--primary-color) 100%);
    z-index: 0;
}

.step-item {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
    position: relative;
}

.step-icon-circle {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(10, 236, 51, 0.2);
    border: 4px solid var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-icon-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 236, 51, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-item:hover .step-icon-circle {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(10, 236, 51, 0.3);
}

.step-item:hover .step-icon-circle::before {
    opacity: 1;
}

.step-icon-circle i {
    font-size: 60px;
    background: linear-gradient(135deg, var(--primary-color), #00d930);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--dark-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(1, 38, 65, 0.3);
    z-index: 2;
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    padding: 70px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 236, 51, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 80px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(10, 236, 51, 0.05), rgba(1, 38, 65, 0.02));
    border-radius: 30px;
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(10, 236, 51, 0.1);
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Small Quote Icons */
.quote-icon-top {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), #00d930);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(10, 236, 51, 0.3);
}

.quote-icon-top i {
    font-size: 16px;
    color: white;
}

.quote-icon-bottom {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), #00d930);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(10, 236, 51, 0.3);
    transform: rotate(180deg);
}

.quote-icon-bottom i {
    font-size: 16px;
    color: white;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--dark-blue);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 400;
    padding: 0 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(10, 236, 51, 0.3);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.125rem;
}

.author-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
}

/* Navigation Arrows */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(10, 236, 51, 0.2);
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(10, 236, 51, 0.4);
}

.testimonial-nav i {
    font-size: 20px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.testimonial-nav:hover i {
    color: white;
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

/* Dots Indicator */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* Fade Animation */
.testimonial-card.fade-out {
    opacity: 0;
    transform: translateX(-30px);
}

.testimonial-card.fade-in {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-container {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 40px 30px;
        min-height: 280px;
    }

    .quote-icon-top {
        top: 15px;
        left: 20px;
        width: 30px;
        height: 30px;
    }

    .quote-icon-bottom {
        bottom: 15px;
        right: 20px;
        width: 30px;
        height: 30px;
    }

    .quote-icon-top i,
    .quote-icon-bottom i {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* Tablet - 992px and below */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .floating-card-1,
    .floating-card-2 {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .steps-timeline {
        flex-direction: column;
        align-items: center;
    }

    .steps-timeline::before {
        display: none;
    }

    .step-item {
        max-width: 400px;
        margin-bottom: 40px;
    }

    .testimonial-container {
        padding: 0 60px;
    }

    .testimonial-card {
        padding: 50px 40px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .stat-item {
        text-align: center;
        min-width: 120px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .hero-main-card {
        padding: 0;
    }

    .benefits-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .steps-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 40px 30px;
    }

    .benefit-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .benefit-icon-wrapper i {
        font-size: 35px;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
    }

    .step-icon-wrapper {
        width: 130px;
        height: 130px;
    }

    .step-icon-circle {
        width: 130px;
        height: 130px;
    }

    .step-icon-circle i {
        font-size: 50px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .testimonial-container {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 40px 30px;
        min-height: 350px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav i {
        font-size: 16px;
    }

    .trusted-clients-header h2 {
        font-size: 2rem;
    }

    .trusted-clients-header p {
        font-size: 1rem;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
    }

    .quote-icon i {
        font-size: 20px;
    }
}

/* Lead Capture Section */

.lead-capture-section {
    background: linear-gradient(180deg, #ffffff 0%, #0aec33 100%);
    padding: 2rem 0;
}

.content-container {
    background-color: var(--dark-blue);
    border-radius: 16px;
    color: white;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.subheading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.features-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.form-container {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--text-black);
}

.form-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-black);
}

.form-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-black);
    font-weight: 500;
}

.form-control {
    border: 1px solid var(--soft-gray);
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    background-color: var(--light-gray);
}

.form-input:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 236, 51, 0.1);
}

.alert {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 15px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

    /* Company box styling */
.company-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  background: #f8f8f8;
  transition: all 0.2s ease;
  user-select: none;
  text-align: center;
  width: 100%;
}

/* Hide default checkboxes */
.company-option input[type="checkbox"] {
  display: none;
}

/* City Autocomplete Styles */
.city-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: -1px;
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background-color: #f8f9fa;
}

.autocomplete-item .city-name {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.autocomplete-item .state-name {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.autocomplete-item.no-results {
    color: #999;
    cursor: default;
    text-align: center;
    font-size: 0.9rem;
}

.autocomplete-item.no-results:hover {
    background-color: transparent;
}

/* Make the city input container position relative */
.mb-3:has(input[name="city"]) {
    position: relative;
}

/* Custom scrollbar for autocomplete */
.city-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.city-autocomplete::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 0 8px 0;
}

.city-autocomplete::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.city-autocomplete::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .autocomplete-item {
        padding: 10px 12px;
    }
    
    .autocomplete-item .city-name {
        font-size: 0.9rem;
    }
    
    .autocomplete-item .state-name {
        font-size: 0.75rem;
    }
    
    .city-autocomplete {
        max-height: 200px;
    }
}

/* Selected state */
.company-option.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* Grid: 2 per row on all screens */
.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* +91 prefix height fix */
.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #f1f1f1;
  border: 1px solid var(--soft-gray);
  border-radius: 6px;
  font-size: 15px;
  height: 50px; /* match input height */
  white-space: nowrap;
}


.submit-btn {
    background-color: var(--primary-color);
    color: var(--dark-blue);
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 0.75rem;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #09d42e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .content-container {
        padding: 1.5rem;
    }

    .heading {
        font-size: 1.8rem;
    }

    .form-container {
        margin-top: 2rem;
    }
}

/* Footer Section */

.footer {
    background-color: var(--text-black);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    max-height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    margin-bottom: 30px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.newsletter form {
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.newsletter-input {
    display: flex;
}

.newsletter-input input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px 0 0 4px;
}

.newsletter-input input:focus {
    outline: none;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-input button:hover {
    background-color: #09d62d;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
}

@media (max-width: 767px) {
    .footer-section {
        margin-bottom: 30px;
    }


    .footer .row {
        display: flex;
        flex-wrap: wrap;
    }


    .footer-about {
        width: 100%;
    }


    .footer-links {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }


    .newsletter {
        width: 100%;
        margin-top: 15px;
    }
}

.static a {
    color: var(--dark-blue);
}

.static a:hover {
    color: var(--primary-color);
}

/* Pricing Page */

.pricing-section {
    padding: 50px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.pricing-card {
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--soft-gray);
    transition: all 0.3s ease;
    max-width: 90%;
    margin: 0 auto;
}

.pricing-card.highlighted {
    border: 2px solid var(--primary-color);
    background-color: rgba(10, 236, 51, 0.03);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-card p {
    color: #666;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.pricing-card ul li:before {
    font-family: "Font Awesome 6 Free";
    content: "\f00c";
    font-weight: 900;
    color: white;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 10px;
}

.contact-button {
    background-color: var(--primary-color);
    color: var(--deep-black);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #09d82e;
    transform: translateY(-2px);
}

.strategic-projects {
    margin-top: 80px;
}

.strategic-projects h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.strategic-projects p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.project-card {
    border: 1px solid var(--soft-gray);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.project-card h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.project-card p {
    color: #666;
}