* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: '__Public_Sans_d2b1e6', '__Public_Sans_Fallback_d2b1e6';
    line-height: 1.6;
    color: #333;
}




.Headertitle {
    background: linear-gradient(135deg, #1a1544 0%, #2d1b69 50%, #4a2c85 100%);
    min-height: 81vh;
    position: relative;
    overflow: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: relative;
    z-index: 10;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo::before {
    content: "∞";
    color: #00d4ff;
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00d4ff;
}

.contact-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00d4ff;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 180px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.header-text {
    flex: 1;
    max-width: 600px;
}

.header-text h1 {
    color: white;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.header-text .highlight {
    background: linear-gradient(45deg, #ff6b9d, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.header-text .subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b9d, #00d4ff);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button::after {
    content: "→";
    font-size: 18px;
}

.header-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.agent-img {
    max-width: 400px;
    width: 100%;
    height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .header-text h1 {
        font-size: 42px;
    }

    .header-text {
        margin-bottom: 40px;
    }

    .agent-img {
        max-width: 350px;
    }
}


.ai-conversations {
    background: linear-gradient(135deg, #1a1544 0%, #2d1b69 50%, #4a2c85 100%);
    padding: 0px 0;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
}

.conversations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    margin-top: 70px;
    justify-content: space-between;
    gap: 80px;
}

.conversations-content {
    flex: 1;
    max-width: 700px;
}

.conversations-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 2px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.section-title {
    color: white;
    font-size: 39px;
    line-height: 45px;

    font-weight: 700;

    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon .icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(86%) saturate(3151%) hue-rotate(170deg) brightness(101%) contrast(101%);
}

.feature-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.conversations-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lines-img {
    max-width: 100%;
    width: 600px;
    height: auto;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .conversations-container {
        gap: 50px;
        padding: 0 30px;
    }

    .section-title {
        font-size: 42px;
    }

    .lines-img {
        width: 500px;
    }
}

@media (max-width: 768px) {
    .conversations-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lines-img {
        width: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .ai-conversations {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-item {
        padding: 25px;
    }

    .lines-img {
        width: 300px;
    }
}



.hero-section {
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    /* padding: 20px 5px; */
    background: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tagline1 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #a7a7ae;
    margin-bottom: 0px;
    opacity: 0.8;
}

.hero-title {
    font-size: 38px;
    /* Changed from clamp(2.5rem, 5vw, 4.5rem) */
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 0px;
    letter-spacing: -0.02em;
    padding: 8px;

}

.hero-subtitle1 {
    font-size: 15px;
    color: #64748b;
    /* max-width: 850px; */
    margin: 0 auto 70px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-subtitle-2 {
    font-size: 16px;
    color: #64748b;
    max-width: 850px;
    margin: 11 auto 50px;
    line-height: 1.7;
    font-weight: 300;
    padding: 0px;
    margin: 0px;
}

.divider-lines {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin-top: 60px;
}

.line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    flex: 1;
    margin: 0 20px;
}

/* Animations */
.hero-section {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.divider-lines {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
    }

    .divider-lines {
        margin-top: 40px;
    }

    .line {
        margin: 0 10px;
    }
}


/* Slider Section */
.slider-section {
    padding: 0px 10px;
    background: white;
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.slide {
    min-width: 404px;
    /* 384px + 20px for gap */
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.slide-content {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 384px;
    /* Fixed width */
    height: 483px;
    /* Fixed height */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    /* Center the slide */
}

.slide-image {
    width: 384px;
    /* Exact width */
    height: 483px;
    /* Exact height */
    object-fit: cover;
    /* This will crop if needed to fit exact dimensions */
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-start;
    /* Changed from flex-end to flex-start */
    padding: 30px;
}

.slide-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Added text shadow for better readability */
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    margin-bottom: 10px;
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Dots Indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1e293b;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .slide {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .slide {
        min-width: 100%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slide-title {
        font-size: 1rem;
    }
}


/* Language Features Section............................................................... */
.language-features-section {
    padding: 10px 5px;
    background: #ffffff;
    overflow: hidden;

}

.language-features-section .features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.language-features-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.language-features-section .foundation-text {
    font-size: 1.5rem;
    color: #6366f1;
    font-weight: 600;
    margin: 0;
}

.language-features-section .features-grid {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.language-features-section .feature-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.language-features-section .feature-card {
    text-align: center;
    padding: 20px 10px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.language-features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.language-features-section .feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.language-features-section .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.language-features-section .icon-circle.purple {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.language-features-section .icon-circle.blue {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.language-features-section .icon-circle.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.language-features-section .icon-circle.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.language-features-section .feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.language-features-section .feature-card p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Chat Demo */
.language-features-section .chat-demo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-features-section .chat-window {
    width: 400px;
    height: 600px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.language-features-section .chat-scroll-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.language-features-section .scrolling-chat-image {
    width: 400px;
    height: auto;
    display: block;
    animation: scrollChat 20s linear infinite;
}

@keyframes scrollChat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-100% + 600px));
    }
}

/* Responsive Design for Language Features */
@media (max-width: 1200px) {
    .language-features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .language-features-section .feature-column {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .language-features-section .feature-card {
        flex: 1;
        min-width: 250px;
        max-width: 300px;
    }

    .language-features-section .chat-window {
        width: 350px;
        height: 500px;
    }

    .language-features-section .scrolling-chat-image {
        width: 350px;
    }

    @keyframes scrollChat {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(calc(-100% + 500px));
        }
    }
}

@media (max-width: 768px) {
    .language-features-section .foundation-text {
        font-size: 1.2rem;
    }

    .language-features-section .feature-column {
        flex-direction: column;
    }

    .language-features-section .chat-window {
        width: 300px;
        height: 400px;
    }

    .language-features-section .scrolling-chat-image {
        width: 300px;
    }

    @keyframes scrollChat {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(calc(-100% + 400px));
        }
    }
}



/* Language Features Section........................................................................................................ */

/* Chat Demo */
.chat-demo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-window {
    width: 400px;
    height: 600px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.chat-scroll-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.scrolling-chat-image {
    width: 400px;
    height: auto;
    display: block;
    animation: scrollChat 20s linear infinite;
}

@keyframes scrollChat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-100% + 600px));
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-column {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 1;
        min-width: 250px;
        max-width: 300px;
    }

    .chat-window {
        width: 350px;
        height: 500px;
    }

    .scrolling-chat-image {
        width: 350px;
    }

    @keyframes scrollChat {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(calc(-100% + 500px));
        }
    }
}

@media (max-width: 768px) {
    .foundation-text {
        font-size: 1.2rem;
    }

    .feature-column {
        flex-direction: column;
    }

    .chat-window {
        width: 300px;
        height: 400px;
    }

    .scrolling-chat-image {
        width: 300px;
    }

    @keyframes scrollChat {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(calc(-100% + 400px));
        }
    }
}

/* Statistics Section */
.statistics-section {
    padding: 20px 20px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 600;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .statistics-section {
        padding: 60px 20px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}


/* Omnichannel Section */
.omnichannel-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.omnichannel-container {
    position: relative;
    width: 2048px;
    height: 90vh;
    margin: 0 auto;
}

/* Background Image - Original Size */
.bg-image {
    width: 2048px;
    height: 90%;
    object-fit: none;
    object-position: center;
    display: block;
}

/* Content Overlay */
.omnichannel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 2;
}

.omnichannel-text {
    position: absolute;
    top: 100px;
    left: 100px;
    max-width: 600px;
background: transparent;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.section-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 20px;
}

.omnichannel-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 25px;
}

.omnichannel-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.omnichannel-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.omnichannel-description strong {
    color: #1e293b;
    font-weight: 600;
}

/* Interactive Tags */
.interaction-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.interaction-tag:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tag-icon {
    font-size: 18px;
}

.tag-text {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

/* Tag Positions - Scaled for 2048x1325 */
.voice-tag {
    top: 200px;
    right: 300px;
    animation-delay: 0s;
}

.text-tag {
    top: 400px;
    right: 250px;
    animation-delay: 0.5s;
}

.social-tag {
    top: 600px;
    right: 300px;
    animation-delay: 1s;
}

.messaging-tag {
    bottom: 400px;
    right: 500px;
    animation-delay: 1.5s;
}

.cta-tag {
    bottom: 200px;
    right: 700px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    animation-delay: 2s;
}

.cta-tag .tag-text {
    color: white;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Tooltip Styles */
.interaction-tag::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.interaction-tag::after {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1e293b;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.interaction-tag:hover::before,
.interaction-tag:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 2048px) {
    .omnichannel-container {
        width: 100vw;
        height: calc(100vw * 1325 / 2048);
        max-width: 2048px;
        max-height: 1325px;
    }

    .bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Scale positions proportionally */
    .voice-tag {
        top: 15%;
        right: 15%;
    }

    .text-tag {
        top: 30%;
        right: 12%;
    }

    .social-tag {
        top: 45%;
        right: 15%;
    }

    .messaging-tag {
        bottom: 30%;
        right: 25%;
    }

    .cta-tag {
        bottom: 15%;
        right: 35%;
    }

    .omnichannel-text {
        top: 8%;
        left: 5%;
        max-width: 30%;
    }
}

@media (max-width: 1024px) {
    .omnichannel-text {
        position: relative;
        top: auto;
        left: auto;
        max-width: 90%;
        margin: 20px auto 40px;
    }

    .omnichannel-content {
        position: relative;
    }
}

/* No-Code Solutions Section */
.no-code-section {
    padding: 80px 220px;
    background: linear-gradient(135deg, #1a1544 0%, #2d1b69 50%, #4a2c85 100%);
    overflow: hidden;
    
}

.no-code-container {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 90vh;
}

.no-code-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    
}

/* Dashboard Image */
.dashboard-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-image {
    width: 100%;
    max-width: 505px;
    height: 638px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.dashboard-image:hover {
    transform: translateY(-10px);
}

/* Content */
.no-code-text {
    color: white;
}

.no-code-section .section-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.no-code-title {
    font-size: 32px;
    font-weight: 680;
    color: white;
    line-height: 1.1;
    margin-bottom: 5px;
}

.no-code-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    /* line-height: 1.6; */
    margin-bottom: 10px;
}

.no-code-subtitle strong {
    color: white;
    font-weight: 700;
}

/* Features List */
.no-code-features-list {
    margin-bottom: 20px;
}

.no-code-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 5px;
    padding: 5px;
    /* background: rgba(255, 255, 255, 0.1); */
   
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    transition: all 0.3s ease;
}

.no-code-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.no-code-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.no-code-feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.no-code-feature-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* CTA Button */
.no-code-cta {
    margin-top: 40px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    font-size: 18px;
}

.cta-text {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .no-code-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .dashboard-wrapper {
        order: 2;
    }

    .no-code-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .no-code-section {
        padding: 80px 20px;
    }

    .no-code-content {
        gap: 40px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        margin-bottom: 15px;
    }

    .dashboard-image {
        max-width: 100%;
    }
}

/* Animation for features */
.feature-item {
    animation: slideInRight 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Integration Section */
.integration-section {
    padding: 20px 20px;
    background: #ffffff;
    overflow: hidden;
}

.integration-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.integration-header {
    margin-bottom: 80px;
    margin-top: 70px;
}

.integration-title {
    font-size: 46px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.0;
    margin-bottom: 5px;
    
}

.integration-subtitle {
    font-size: 17px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.integration-subtitle strong {
    color: #3b82f6;
    font-weight: 700;
}

/* Integration Grid */
.integration-grid {
    position: relative;
    width: 700px;
    height: 500px;
    margin: 0 auto;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 50%, transparent 80%);
    border-radius: 40px;
    padding: 40px;
}

/* Center Wittify Logo */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.wittify-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    border: 3px solid white;
}

.logo-icon {
    color: white;
    font-size: 20px;
    font-weight: 800;
}

/* Integration Icons */
.integration-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.integration-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
    z-index: 5;
}

/* Perfect Grid Alignment - 5 rows */

/* Row 1 - Top (3 icons) */
.integration-icon[data-company="Microsoft"] {
    top: 20px;
    left: 50%;
    transform: translateX(-150px);
}

.integration-icon[data-company="Salesforce"] {
    top: 20px;
    left: 50%;
    transform: translateX(-22px);
}

.integration-icon[data-company="Slack"] {
    top: 20px;
    left: 50%;
    transform: translateX(105px);
}

/* Row 2 - Second (4 icons) */
.integration-icon[data-company="Google"] {
    top: 90px;
    left: 50%;
    transform: translateX(-200px);
}

.integration-icon[data-company="SAP"] {
    top: 90px;
    left: 50%;
    transform: translateX(-70px);
}

.integration-icon[data-company="Zendesk"] {
    top: 90px;
    left: 50%;
    transform: translateX(55px);
}

.integration-icon[data-company="Adobe"] {
    top: 90px;
    left: 50%;
    transform: translateX(155px);
}

/* Row 3 - Middle with center logo (4 icons) */
.integration-icon[data-company="Zoom"] {
    top: 160px;
    left: 50%;
    transform: translateX(-240px);
}

.integration-icon[data-company="Atlassian"] {
    top: 160px;
    left: 50%;
    transform: translateX(-120px);
}

.integration-icon[data-company="AWS"] {
    top: 160px;
    left: 50%;
    transform: translateX(75px);
}

.integration-icon[data-company="Facebook"] {
    top: 160px;
    left: 50%;
    transform: translateX(195px);
}

/* Row 4 - Fourth (4 icons) */
.integration-icon[data-company="LinkedIn"] {
    top: 230px;
    left: 50%;
    transform: translateX(-200px);
}

.integration-icon[data-company="Oracle"] {
    top: 230px;
    left: 50%;
    transform: translateX(-70px);
}

.integration-icon[data-company="Shopify"] {
    top: 230px;
    left: 50%;
    transform: translateX(55px);
}

.integration-icon[data-company="HubSpot"] {
    top: 230px;
    left: 50%;
    transform: translateX(155px);
}

/* Row 5 - Bottom (3 icons) */
.integration-icon[data-company="Cisco"] {
    top: 300px;
    left: 50%;
    transform: translateX(-150px);
}

.integration-icon[data-company="Nexus"] {
    top: 300px;
    left: 50%;
    transform: translateX(-22px);
}

.integration-icon[data-company="Dropbox"] {
    top: 300px;
    left: 50%;
    transform: translateX(105px);
}

/* Icon Content */
.icon-default {
    font-size: 18px;
    transition: all 0.3s ease;
}

.icon-hover {
    position: absolute;
    font-size: 8px;
    font-weight: 700;
    color: #3b82f6;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

.integration-icon:hover .icon-default {
    opacity: 0;
    transform: scale(0.8);
}

.integration-icon:hover .icon-hover {
    opacity: 1;
    transform: scale(1);
}

/* Hover Effects Enhancement */
.integration-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integration-icon:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .integration-section {
        padding: 80px 20px;
    }

    .integration-header {
        margin-bottom: 60px;
    }

    .integration-grid {
        width: 90%;
        max-width: 500px;
        height: 400px;
        transform: scale(0.8);
    }

    .integration-icon {
        width: 38px;
        height: 38px;
    }

    .icon-default {
        font-size: 14px;
    }

    .icon-hover {
        font-size: 7px;
    }

    .wittify-logo {
        width: 55px;
        height: 55px;
    }

    .logo-icon {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .integration-grid {
        transform: scale(0.65);
        height: 350px;
    }

    .integration-title {
        font-size: 2rem;
    }

    .integration-subtitle {
        font-size: 1rem;
    }
}

/* Animation on scroll (optional) */
@media (prefers-reduced-motion: no-preference) {
    .integration-icon {
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }

    .integration-icon:nth-child(2) {
        animation-delay: 0.1s;
    }

    .integration-icon:nth-child(3) {
        animation-delay: 0.2s;
    }

    .integration-icon:nth-child(4) {
        animation-delay: 0.3s;
    }

    .integration-icon:nth-child(5) {
        animation-delay: 0.4s;
    }

    .integration-icon:nth-child(6) {
        animation-delay: 0.5s;
    }

    .integration-icon:nth-child(7) {
        animation-delay: 0.6s;
    }

    .integration-icon:nth-child(8) {
        animation-delay: 0.7s;
    }

    .integration-icon:nth-child(9) {
        animation-delay: 0.8s;
    }

    .integration-icon:nth-child(10) {
        animation-delay: 0.9s;
    }

    .integration-icon:nth-child(11) {
        animation-delay: 1.0s;
    }

    .integration-icon:nth-child(12) {
        animation-delay: 1.1s;
    }

    .integration-icon:nth-child(13) {
        animation-delay: 1.2s;
    }

    .integration-icon:nth-child(14) {
        animation-delay: 1.3s;
    }

    .integration-icon:nth-child(15) {
        animation-delay: 1.4s;
    }

    .integration-icon:nth-child(16) {
        animation-delay: 1.5s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Data-Driven Analytics Section */
.analytics-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.analytics-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.analytics-header {
    margin-bottom: 5px;
}

.analytics-section .section-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 5px;
}

.analytics-title {
    font-size: 50px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.0;
    margin-bottom: 15px;
}

.analytics-subtitle {
    font-size: 14px;
    color: #8b8d90;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.0;
}

.analytics-subtitle strong {
    color: #3b82f6;
    font-weight: 700;
}

/* Dashboard Section */
.dashboard-section {
    margin-top: 40px;
}

.analytics-dashboard {
    width: 100%;
    max-width: 1040px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.analytics-dashboard:hover {
    transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .analytics-section {
        padding: 80px 20px;
    }

    .analytics-header {
        margin-bottom: 40px;
    }

    .analytics-dashboard {
        border-radius: 15px;
    }
}

/* Scalability Section */
.scalability-section {
    padding: 0;
    background: linear-gradient(135deg, #1a1544 0%, #2d1b69 50%, #4a2c85 100%);
    color: white;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.scalability-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scalability-header {
    margin-bottom: 40px;
}

.scalability-section .section-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.scalability-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 5px;
}

.scalability-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Scalability Features */
.scalability-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
    flex: 1;
    align-items: center;
}

.scalability-feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    
    
    
    
    transition: all 0.3s ease;
    height: 160px;
    justify-content: center;
}

.scalability-feature-box:hover {
  
    transform: translateY(-5px);
   
}

.scalability-feature-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.scalability-feature-icon {
    font-size: 20px;
    filter: grayscale(100%) brightness(0) invert(1);
}

.scalability-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.scalability-feature-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .scalability-container {
        height: auto;
        min-height: 400px;
    }

    .scalability-features {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 350px;
        margin: 30px auto 0;
    }

    .feature-box {
        height: auto;
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .scalability-section {
        min-height: 350px;
    }

    .scalability-container {
        height: auto;
        min-height: 350px;
        padding: 40px 20px;
    }

    .scalability-header {
        margin-bottom: 30px;
    }

    .scalability-features {
        gap: 20px;
        margin-top: 25px;
    }

    .feature-box {
        padding: 20px 15px;
        height: auto;
    }

    .feature-icon-box {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .feature-icon {
        font-size: 18px;
    }

    .feature-title {
        font-size: 0.9rem;
    }

    .feature-description {
        font-size: 0.75rem;
    }
}

/* Animation on scroll */
.feature-box {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-box:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-box:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-box:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced glassmorphism effect */
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box {
    position: relative;
    overflow: hidden;
}

/* Data Security Section */
.security-section {
    padding: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.security-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.security-header {
    margin-bottom: 50px;
}

.security-section .section-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 15px;
}

.security-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 5px;
}

.security-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.security-subtitle strong {
    color: #3b82f6;
    font-weight: 700;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    flex: 1;
    align-items: center;
}

.security-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    
    
    
    transition: all 0.3s ease;
    
    height: 140px;
    justify-content: center;
}

.security-feature:hover {
    transform: translateY(-5px);
    
}

.security-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.security-icon .icon {
    font-size: 30px;
    
    
}

.security-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.security-feature-description {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Compliance Badges */
.compliance-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: auto;
}

.badge {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.badge-text {
    font-size: 9px;
    font-weight: 800;
    color: #3b82f6;
    text-align: center;
    line-height: 1.1;
}

/* Badge Colors */
.badge:nth-child(1) {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.badge:nth-child(1) .badge-text {
    color: white;
}

.badge:nth-child(2) {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.badge:nth-child(2) .badge-text {
    color: white;
}

.badge:nth-child(3) {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.badge:nth-child(3) .badge-text {
    color: white;
}

.badge:nth-child(4) {
    background: linear-gradient(135deg, #10b981, #059669);
}

.badge:nth-child(4) .badge-text {
    color: white;
}

.badge:nth-child(5) {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.badge:nth-child(5) .badge-text {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .security-container {
        height: auto;
        min-height: 500px;
    }

    .security-features {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 30px auto 30px;
    }

    .security-feature {
        height: auto;
        padding: 25px 20px;
    }

    .compliance-badges {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .security-section {
        min-height: 450px;
    }

    .security-container {
        height: auto;
        min-height: 450px;
        padding: 60px 20px;
    }

    .security-header {
        margin-bottom: 40px;
    }

    .security-features {
        gap: 20px;
        margin: 25px auto 25px;
    }

    .security-feature {
        padding: 20px 15px;
        height: auto;
    }

    .security-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .security-icon .icon {
        font-size: 18px;
    }

    .security-feature-title {
        font-size: 0.9rem;
    }

    .security-feature-description {
        font-size: 0.75rem;
    }

    .badge {
        width: 50px;
        height: 50px;
    }

    .badge-text {
        font-size: 8px;
    }

    .compliance-badges {
        gap: 12px;
    }
}

/* Animation on scroll */
.security-feature {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.security-feature:nth-child(1) {
    animation-delay: 0.2s;
}

.security-feature:nth-child(2) {
    animation-delay: 0.4s;
}

.security-feature:nth-child(3) {
    animation-delay: 0.6s;
}

.badge {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.badge:nth-child(1) {
    animation-delay: 0.8s;
}

.badge:nth-child(2) {
    animation-delay: 0.9s;
}

.badge:nth-child(3) {
    animation-delay: 1.0s;
}

.badge:nth-child(4) {
    animation-delay: 1.1s;
}

.badge:nth-child(5) {
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #ffffff;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Background Image */
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Agent Image */
.cta-agent {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: center right;
    z-index: 2;
    max-width: 50%;
}

/* Content Overlay */
.cta-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 500px;
    color: white;
}

.cta-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-description strong {
    color: white;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-card {
        height: 350px;
    }

    .cta-content {
        left: 40px;
        max-width: 400px;
    }

    .cta-agent {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-card {
        height: 300px;
        border-radius: 20px;
    }

    .cta-content {
        left: 30px;
        max-width: 60%;
    }

    .cta-tagline {
        font-size: 10px;
        margin-bottom: 15px;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-description {
        font-size: 0.9rem;
    }

    .cta-agent {
        max-width: 40%;
    }
}

@media (max-width: 480px) {
    .cta-card {
        height: 250px;
    }

    .cta-content {
        left: 20px;
        max-width: 65%;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 0.8rem;
    }
}

/* Hover Effect */
.cta-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.cta-card:hover .cta-agent {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Gradient Overlay for better text readability */
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    z-index: 2;
}


/* Why Choose Section */
.why-choose-section {
    padding: 0px 20px;
    background: #ffffff;
    text-align: center;
}

.why-choose-container {
    max-width: 900px;
    max-height: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 540px;
    justify-content: space-between;
}

.why-choose-section .section-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 40px;
    padding-top: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0px 0;
    flex: 1;
    align-content: center;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 20px 25px;
    background: #f1eefd;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    min-height: 75px;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #e0e7ff;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon .icon {
    font-size: 18px;
    color: #6366f1;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

/* Bottom CTA */
.bottom-cta {
    text-align: center;
    padding-bottom: 20px;
}

.wittify-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.logo-infinity {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 800;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

/* Join Waitlist Button */
.join-waitlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.join-waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.join-waitlist-btn:active {
    transform: translateY(-1px);
}

.btn-text {
    font-size: 15px;
}

.btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.join-waitlist-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Button shine effect */
.join-waitlist-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.join-waitlist-btn:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 20px;
    }

    .why-choose-container {
        height: auto;
        max-height: none;
        max-width: 100%;
    }

    .why-choose-section .section-tagline {
        padding-top: 0;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0 30px;
    }

    .feature-card {
        padding: 18px 20px;
        gap: 12px;
        min-height: 65px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon .icon {
        font-size: 16px;
    }

    .feature-title {
        font-size: 0.9rem;
    }

    .bottom-cta {
        padding-bottom: 0;
    }

    .wittify-logo {
        margin-bottom: 20px;
    }

    .logo-infinity {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .cta-title {
        margin-bottom: 25px;
    }

    .join-waitlist-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .btn-text {
        font-size: 14px;
    }

    .btn-arrow {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 15px 18px;
        gap: 10px;
        min-height: 60px;
    }

    .feature-title {
        font-size: 0.85rem;
    }

    .wittify-logo {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
}

/* Animation on scroll */
.feature-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Contact Form Section */
.contact-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-section .section-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 20px;
}

.contact-title {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin: 0;
}

/* Contact Form */
.contact-form {
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    flex: 1;
}

.input-group.full-width {
    width: 100%;
}

.input-group.half-width {
    width: calc(50% - 10px);
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 18px 50px 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    color: #1e293b;
}

.input-group textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 120px;
    padding-top: 18px;
    line-height: 1.5;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Input Icons */
.input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #94a3b8;
    pointer-events: none;
}

.textarea-icon {
    top: 24px;
    transform: none;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.contact-submit-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    min-width: 150px;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

/* Form Validation Styles */
.input-group input:invalid:not(:placeholder-shown),
.input-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.input-group input:valid:not(:placeholder-shown),
.input-group textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 20px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .input-group.half-width {
        width: 100%;
    }

    .input-group input,
    .input-group textarea {
        padding: 15px 45px 15px 18px;
        font-size: 15px;
    }

    .input-group textarea {
        min-height: 100px;
    }

    .input-icon {
        right: 15px;
        font-size: 14px;
    }

    .textarea-icon {
        top: 20px;
    }

    .contact-submit-btn {
        padding: 12px 35px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        max-width: 100%;
    }

    .input-group input,
    .input-group textarea {
        padding: 14px 40px 14px 16px;
        font-size: 14px;
    }

    .input-group textarea {
        min-height: 90px;
    }

    .contact-submit-btn {
        padding: 11px 30px;
        font-size: 12px;
        min-width: 130px;
    }
}

/* Form Animation */
.input-group {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.input-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-row:nth-child(2) .input-group:nth-child(1) {
    animation-delay: 0.2s;
}

.form-row:nth-child(2) .input-group:nth-child(2) {
    animation-delay: 0.3s;
}

.form-row:nth-child(3) .input-group {
    animation-delay: 0.4s;
}

.form-submit {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.input-group:hover input,
.input-group:hover textarea {
    border-color: #cbd5e1;
}

.input-group input:focus+.input-icon,
.input-group textarea:focus+.input-icon {
    color: #8b5cf6;
}

/* Footer Section */
.footer-section {
    background: #2d1b69;
    color: white;
}

/* Newsletter Section */
.newsletter-section {
    background: #3d2a7a;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.newsletter-signup {
    display: flex;
    gap: 15px;
    align-items: center;
}

.email-input-group {
    position: relative;
    flex: 1;
}

.email-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #94a3b8;
}

.newsletter-email {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-email::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-email:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.signup-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Main Footer */
.main-footer {
    padding: 10px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 20px;
}

/* Company Info */
.company-info {
    max-width: 500px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo .logo-infinity {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 800;
}

.footer-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}

.company-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
}

.ask-wittify-btn {
    margin-top: 25px;
}

.ask-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ask-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-icon {
    font-size: 14px;
}

.btn-text {
    font-size: 14px;
}

/* Social Section */
.social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.social-link.twitter .social-icon {
    font-family: 'Arial', sans-serif;
}

.social-link.linkedin .social-icon {
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-section {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .newsletter-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .newsletter-signup {
        flex-direction: column;
        gap: 15px;
    }

    .main-footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .company-info {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 25px 20px;
    }

    .newsletter-title {
        font-size: 1rem;
    }

    .newsletter-email {
        padding: 10px 12px 10px 40px;
        font-size: 13px;
    }

    .signup-btn {
        padding: 10px 20px;
        font-size: 11px;
    }

    .company-description {
        font-size: 0.85rem;
    }

    .footer-logo .logo-infinity {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footer-logo .logo-text {
        font-size: 1.1rem;
    }
}
.ai_conversation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0px;
    max-width: 1200px;
    margin: 0 auto;
}

.ai_conversation-item {
    background: transparent;
    border: none;
    border-radius: 0;
    
    transition: all 0.3s ease;
    position: relative;
}

.ai_conversation-item:hover {
    background: transparent;
    transform: translateY(-2px);
}

.ai_conversation-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ai_conversation-icon .icon {
    width: 38px;
    height: 38px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    opacity: 0.8;
}

.ai_conversation-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.0;
    letter-spacing: -0.02em;
}

.ai_conversation-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
    .ai_conversation-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ai_conversation-item {
        padding: 30px 24px;
    }
    
    .ai_conversation-title {
        font-size: 20px;
    }
    
    .ai_conversation-description {
        font-size: 15px;
    }
}

.icon567 {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}