
a {
    text-decoration: none;
    color: inherit;
}
.paragraph {
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

/* Buttons */
.btn-custom {
    background: #449C8B;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #077F82;
}
.btn-custom:hover {
    background: #2e6358;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.img-services {
    height: 200px;
    width: 200px;
    display: block;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
[data-animate="fadeInUp"] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fadeInUp"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button: Get Free Demo */
.btn-ws {
    background: #449C8B;
    color: #fff;
    width: 150px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.btn-ws:hover {
    background: rgb(255, 255, 255);
    color: #333;
    border: 1px solid #333;
}
.webinfo {
    width: 80px;
    height: 50px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Services Section */
.services-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
}
.services-section .card-title {
    color: #449C8B;
    font-weight: 600;
    margin-bottom: 15px;
}


/* Responsive Design */
@media (max-width: 992px) {
    .section-padding {
        padding: 50px 0;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .webinfo {
        margin-left: -7px;
        width: 50px;
        height: 40px;
    }
}
.get-quote h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
}

:root {
            --primary: #077F82;
            --primary-dark: #2E6358;
            --primary-light: #80cbc4;
            --primary-ultra-light: #e0f2f1;
            --secondary: #26c6da;
            --accent: #ff7043;
            --dark: #263238;
            --light: #fafafa;
            --gray: #546e7a;
            --gray-light: #90a4ae;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #4db6ac 0%, #26a69a 100%);
            --gradient-secondary: linear-gradient(135deg, #26c6da 0%, #4db6ac 100%);
            --gradient-hero: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
            --shadow-soft: 0 10px 40px rgba(77, 182, 172, 0.15);
            --shadow-medium: 0 20px 60px rgba(77, 182, 172, 0.2);
            --shadow-strong: 0 30px 80px rgba(77, 182, 172, 0.25);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--white);
            line-height: 1.6;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* Loading Screen */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s ease;
        }

        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 80px;
            height: 80px;
            position: relative;
            margin-bottom: 2rem;
        }

        .loader::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 4px solid var(--primary-ultra-light);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        }

        .loader::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 1.2s ease-in-out infinite;
        }

        .loading-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

            50% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0.7;
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(77, 182, 172, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        nav.scrolled {
            padding: 0.75rem 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(77, 182, 172, 0.15);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo i {
            font-size: 2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a:not(.cta-button):hover {
            color: var(--primary);
        }

        .nav-links a:not(.cta-button)::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:not(.cta-button):hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--gradient-primary);
            color: white !important;
            padding: 0.875rem 2.25rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
            background: white;
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
            background: white;
        }

       

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 1rem 0 6rem;
            background: #CCDCD9;
            position: relative;
            overflow: hidden;
        }

       

     

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .hero-content {
            opacity: 0;
            transform: translateX(-50px);
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .hero-content p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--gray);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .primary-button {
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .primary-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .primary-button:hover::before {
            left: 100%;
        }

        .primary-button:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-strong);
        }

        .secondary-button {
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            border: 2px solid var(--primary);
            backdrop-filter: blur(10px);
        }

        .secondary-button:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-4px);
            box-shadow: var(--shadow-medium);
        }

        .hero-image {
            position: relative;
            opacity: 0;
            transform: translateX(50px);
        }

        .hero-image img {
            width: 100%;
            max-width: 100%;
            height: auto;
            
            border-radius: 20px;
        }

       

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border-bottom: 4px solid #3DAFA5;
            transition: all 0.3s ease;
            min-width: 205px;
        }

        .stat:hover {
            transform: translateY(-5px) !important;
            box-shadow: var(--shadow-soft);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            margin-bottom: 0.5rem;
        }




       


        .stat-label {
            color: var(--gray);
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Features Section */
        .features {
            padding: 3rem 0;
            background: var(--white);
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 5rem;
            padding: 0 2rem;
        }

        .section-header h2 {
            /* font-size: clamp(2rem, 4vw, 3rem); */
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark);
            line-height: 1.2;
        }

        .section-header p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--gray);
            line-height: 1.7;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
           box-shadow: 0 8px 30px #343a404a;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(77, 182, 172, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-medium);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: white;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) ;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }

        .feature-screenshot {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(77, 182, 172, 0.15);
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-screenshot {
            transform: scale(1.02);
        }

        .feature-screenshot img {
            width: 100%;
            display: block;
            transition: all 0.3s ease;
        }

        /* Integrations Section */
        .integrations {
            padding: 6rem 0;
            background: var(--primary-ultra-light);
        }

        .integrations-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 4rem;
        }

        .integration-logo {
            width: 180px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border-radius: 16px;
            padding: 1rem;
            box-shadow: 0 4px 20px rgba(77, 182, 172, 0.08);
            filter: grayscale(100%);
            transition:
                filter 0.4s ease,
                opacity 0.4s ease,
                transform 0.4s ease,
                box-shadow 0.4s ease;
        }

        .integration-logo:hover {
            filter: grayscale(0%);
            transform: scale(1.1) translateY(-5px);
            box-shadow: var(--shadow-soft);
        }

        .integration-logo img {
            max-width: 100%;
            max-height: 100%;
        }

        /* Partnership Section */
        .partnership {
            padding: 6rem 0;
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .partnership::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 30s infinite ease-in-out reverse;
        }

        .partnership-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .partnership h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
            font-weight: 800;
        }

        .partnership p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .partnership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .partner-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-align: center;
        }

        .partner-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .partner-card i {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .partner-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .partner-card p {
            font-size: 1.05rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Reviews Section */
        .reviews {
            padding: 6rem 0;
            background: var(--light);
        }

        .reviews-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
        }

        .review-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 8px 30px rgba(77, 182, 172, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(77, 182, 172, 0.05);
            position: relative;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: var(--primary);
            font-family: serif;
            opacity: 0.3;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        .review-stars {
            color: #ffc107;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .review-text {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-style: italic;
            font-size: 1.05rem;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .reviewer-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            font-weight: 600;
        }

        .reviewer-info p {
            font-size: 0.9rem;
            color: var(--gray-light);
        }

        /* Demo Section */
        .demo {
            padding: 6rem 0;
            background: var(--white);
        }

        .demo-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .demo-form {
            background: var(--light);
            border-radius: 32px;
            padding: 4rem;
            box-shadow: 0 20px 60px rgba(77, 182, 172, 0.1);
            border: 1px solid rgba(77, 182, 172, 0.05);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--dark);
            font-size: 1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem 1.25rem;
            border: 2px solid #e1e8ed;
            border-radius: 16px;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s ease;
            background: var(--white);
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(77, 182, 172, 0.1);
            transform: translateY(-2px);
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .submit-button {
            width: 100%;
            padding: 1.25rem;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .submit-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .submit-button:hover::before {
            left: 100%;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .submit-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .contact-info {
            margin-top: 4rem;
            text-align: center;
            padding-top: 3rem;
            border-top: 2px solid rgba(77, 182, 172, 0.1);
        }

        .contact-info h3 {
            margin-bottom: 2rem;
            font-size: 1.5rem;
            color: var(--dark);
            font-weight: 700;
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--gray);
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            background: rgba(77, 182, 172, 0.05);
        }

        .contact-method span a{
            color: var(--gray);
            text-decoration: none;
            transition: 0.3s;
        }

        .contact-method:hover span a{
            color: var(--primary);
        }

        .contact-method:hover {
            color: var(--primary);
            transform: translateY(-2px);
            background: rgba(77, 182, 172, 0.1);
        }

        .contact-method i {
            color: var(--primary);
            font-size: 1.2rem;
        }

       
        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                gap: 3rem;
            }

            .features-grid,
            .reviews-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }

            .partnership-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            /* .nav-links {
                display: none;
            } */

            .mobile-menu-toggle {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }


            .hero-buttons {
                justify-content: center;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .features-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .integrations-logos {
                gap: 2rem;
            }

            .integration-logo {
                width: 100px;
                height: 60px;
            }

            .contact-methods {
                flex-direction: column;
                gap: 1rem;
            }

            .demo-form {
                padding: 2rem;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .hero-container,
            .section-header,
            .demo-container {
                padding: 0 1rem;
            }

            .features-grid,
            .reviews-grid {
                padding: 0 1rem;
            }

            .partnership-content {
                padding: 0 1rem;
            }

            .feature-card,
            .review-card {
                padding: 2rem 1.5rem;
            }

            .demo-form {
                padding: 1.5rem;
                border-radius: 20px;
            }

            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 50px;
                height: 50px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
        }

        /* Custom Animations */
        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        .shimmer {
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            background-size: 200% 100%;
            animation: shimmer 2s infinite;
        }

        /* Additional styles for partner logos in the partnership section */
        .partnership .partner-logo:hover {
            background: rgba(255, 255, 255, 0.25) !important;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .partnership .partner-logo {
                width: 140px !important;
                height: 70px !important;
            }

            .partnership .partner-logo div {
                font-size: 0.8rem !important;
            }

            .partnership .partner-logo i {
                font-size: 1.5rem !important;
            }
        }

        @media (max-width: 480px) {
            .partnership .partner-logo {
                width: 120px !important;
                height: 60px !important;
            }
        }

         @media (min-width:769px) and (max-width: 1150px) {
                .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-buttons {
    justify-content: center;
}

        }

        /* Partnership logos block */
        .partnership-logos {
            margin: 4rem 0;
        }

        /* Headings left-aligned */
        .partnership-logos h3 {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            text-align: center;
            font-size: 26px;
        }

        /* Grid of logos */
        .logos-grid {
            display: flex;
            flex-wrap: wrap;
            column-gap: 3rem;
            row-gap: 1rem;
            align-items: center;
            justify-content: center;
        }

        /* Individual logo styling */
        .partner-logo-img {
            width: 22%;
            height: auto;
            object-fit: contain;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
         @media (max-width: 600px) {
            .partner-logo-img {
            padding: 0;
        }
         }

        /* Hover pop */
        .partner-logo-img:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .nav-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 1rem;
    background-color: #ccc; /* change color as needed */
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #40B0A6;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px !important;
        padding: 2rem;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        padding: 0.8rem 0;
        text-align: center;
        text-decoration: none;
        opacity: 0;
        transform: translateX(-30px);

        text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.3rem;
    position: relative;
    transition: all 0.3s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }

    .nav-links a:not(.cta-button):hover {
        color: #fff !important;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .nav-links a:not(.cta-button)::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: white;
        transition: width 0.3s ease;
    }

    .nav-links a:not(.cta-button):hover::after {
        width: 100%;
    }

    .cta-button {
    padding: 0.875rem 2.25rem !important;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
        font-size: 1.1rem !important;

        margin-top: 2rem;
        background: white !important;
        color: #3cafa4 !important;
        font-size: 1.1rem;
        border-radius: 50px;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active .cta-button {
        transform: translateY(0);
        transition-delay: 0.5s;
    }

    .cta-button:hover {
        background: transparent !important;
        color: white !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .mobile-menu-toggle {
        display: flex;
    }
}