/* Import Neue Haas Grotesk Display Pro Font */
@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');

/* Fallback fonts if the primary font is not available */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0033CC;
    --dark-blue: #001a66;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --border-color: rgba(255, 255, 255, 0.2);
    --card-bg: rgba(255, 255, 255, 0.1);
    --yellow: #FFD700;
}

body {
    font-family: 'Neue Haas Grotesk Display Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0033CC 0%, #001a66 100%);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header Styles */
.header {
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.navbar {
    padding: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

.contact-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
    color: var(--white);
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero-section {
    padding: 0rem 0rem 2rem 0rem;
    position: relative;
    overflow: hidden;
    background-image: url('../images/banner-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Decorative Dots */
.decorative-dots {
    position: absolute;
    width: 80px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 1;
}

.dots-left {
    top: 5%;
    left: 2%;
}

.dots-right {
    bottom: 15%;
    right: 2%;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 15px 0 0 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.hero-title .highlight {
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1.4rem;
    color: #fff;
    max-width: 90%;
}

.hero-subtitle strong {
    font-weight: 600;
}

/* Feature Cards */
.feature-cards {
    margin-bottom: 1.2rem;
}

.feature-cards .feature-card {
    background: var(--card-bg);
    background-image: url('../images/feature-card-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #FFF;
    border-radius: 12px;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    /* background: rgba(255, 255, 255, 0.15); */
    transform: translateY(-2px);
}

.hero-content .feature-icon {
    flex-shrink: 0;
    color: var(--white);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom:0px;
}
.hero-content .feature-icon img{
    max-width: 100%;
    width: 100%;
}
.hero-content .feature-text h3 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
}

.btn-demo {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    padding: 0.75rem 3rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-demo svg {
    transition: transform 0.3s ease;
}

.btn-demo:hover svg {
    transform: translateX(3px);
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.rating-badge img{
    max-width: 100%;
    width: 34%;
    margin: 0px 0px 0px -10px;
}

.benefits-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
    margin-bottom: 1rem;
}

.benefits-text i {
    font-size: 8px;
    margin: 0 0.5rem;
    vertical-align: middle;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-image-wrapper img {
    animation: heroGlow 3s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Banner Composite Styles */
.banner-composite {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 40px;
}

.woman-image {
    max-width: 200px;
    height: auto;
    z-index: 2;
    position: relative;
    margin-right: -100px;
    top: 100px;
}

.product-cards-overlay {
    position: absolute;
    top: 45%;
    left: 0%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.product-cards {
    width: 90%;
    height: auto;
    opacity: 0.9;
    /* max-width: 600px; */
}

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

@keyframes heroGlow {
    0% {
        filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 15px 40px rgba(255, 255, 255, 0.6));
    }
}

.hero-image-placeholder {
    width: 100%;
    /* max-width: 500px; */
    aspect-ratio: 1;
    /* background: rgba(255, 255, 255, 0.05); */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* overflow: hidden; */
    /* border: 2px solid rgba(255, 255, 255, 0.1); */
}

.image-content {
    position: relative;
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.person-silhouette {
    width: 200px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50% 50% 0 0;
    position: relative;
    margin-bottom: -50px;
    z-index: 2;
}

.laptop-screen {
    width: 280px;
    height: 180px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%);
    border-radius: 4px;
    position: relative;
}

.screen-content::before {
    content: '🚀';
    position: absolute;
    font-size: 3rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* VS Badge */
.vs-badge {
    position: absolute;
    bottom: -30px;
    right: 10%;
    z-index: 20;
}

.vs-content {
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.brand-name {
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.vs-text {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFA500 100%);
    color: var(--dark-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.competitor-name {
    color: #333;
    font-size: 0.95rem;
}



.ai-video-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #D4E3FB 0%, #FFFFFF 100%);
}

.ai-video-title {
    font-size: 2.25rem;
    color: #0B1F66;
    font-weight: 400;
    margin-bottom: 2.5rem;
}
.ai-video-title .highlight-stuck {
    color: #062074;
    font-weight: 600;
}
.ai-video-card {
    position: relative;
    border-radius: 32px;
    background: linear-gradient(135deg, #E3EBFF 0%, #CDEEFF 100%);
    padding: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 98, 254, 0.15);
    max-width: 85%;
    margin: 0 auto;
}

.ai-video-player {
    width: 100%;
    display: block;
    border-radius: 32px;
    border: none;
    background: transparent;
}

.ai-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: #0d6efd;
    padding: 1rem 1.75rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(15, 98, 254, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-video-overlay:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 18px 40px rgba(15, 98, 254, 0.3);
}

.ai-video-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.ai-video-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ai-video-icon svg {
    width: 100%;
    height: 100%;
}

.ai-video-label {
    font-size: 1rem;
    color: #FFF;
    font-weight: 500;
}

/* Features Bar Section */
.features-bar-section {
    background: #001D84;
    padding: 1rem 3rem;
    
}

.features-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #FFFFFF;
    font-size: 20px;
    flex: 1;
    min-width: 200px;
}

.feature-bar-item i {
    color: var(--yellow);
    font-size: 1.25rem;
}

.feature-bar-item span {
    font-weight: 500;
    white-space: nowrap;
}

/* Brands Carousel Section */
.brands-carousel-section {
    background: #fff;
    padding: 1.5rem 0;
}

.carousel-header {
    text-align: center;
    margin-bottom: 1rem;
}

.carousel-header h2 {
    font-size: 20px;
    font-weight: 500;
    color: #29394E;
    letter-spacing: 0.5px;
}

.brands-carousel {
    padding: 0;
}

.brand-item {
    padding: 0 2rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    outline: none;
    height: 80px;
}

.brand-item img {
    max-width: 150px;
    width: 70%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

.brand-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Slick Carousel Custom Styles */
.slick-slide {
    outline: none;
}


.slick-track {
    display: flex;
    align-items: center;
}

.slick-list {
    overflow: hidden;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #0033CC;
}

.slick-dots li.slick-active button:before {
    color: #0033CC;
}

/* Stuck Section */
.stuck-section {
    background: linear-gradient(165deg, #D4E3FB 0%, #FFFFFF 100%);
    padding: 3rem 0;
}

.stuck-header {
    margin-bottom: 3rem;
}

.stuck-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #062074;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.stuck-title .highlight-stuck {
    color: #062074;
    font-weight: 600;
}

.stuck-title .highlight-old {
    color: #062074;
    font-weight: 600;
}

.stuck-subtitle {
    font-size: 18px;
    color: #000;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

.stuck-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.doofinder-stuck-card {
    background: linear-gradient(165deg, #FFE5E5 0%, #FFE5E5 5%, #FFE5E5 20%, #FFFFFF 100%);
}

.conversionbox-stuck-card {
    background: linear-gradient(165deg, #D1FAE5 0%, #D1FAE5 5%, #D1FAE5 20%, #FFFFFF 100%);
}

.stuck-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1F2937;
}

.stuck-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stuck-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.6;
    font-weight: 500;
}

.stuck-list li:last-child {
    margin-bottom: 0;
}

.stuck-list li i {
    font-size: 1.25rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.doofinder-stuck-card .stuck-list li i {
    color: #EF4444;
}

.conversionbox-stuck-card .stuck-list li i {
    color: #10B981;
}

.vs-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1F2937;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    letter-spacing: 2px;
}

/* Comparison Section */
.comparison-section {
    background: #E8EDF5;
    padding: 4rem 0;
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #062074;
    margin-bottom: 0.5rem;
}

.comparison-header h2 strong {
    font-weight: 600;
}

.comparison-header p {
    font-size: 18px;
    color: #6B7280;
    margin: 0;
    font-weight: 500;
}

/* Comparison Table */
.comparison-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: solid;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #E8EDF5;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header-row {
    background: #fff;
    font-weight: 600;
}

.comparison-cell {
    padding: 0.8rem;
    font-size: 16px;
    line-height: 1.6;
}

.issue-cell {
    background: #F8F9FB;
    font-weight: 500;
    color: #000;
    border-right: 1px solid #E8EDF5;
}
.comparison-header-row .issue-cell{
    font-weight: 600;
    font-size: 18px;
    background: #E5E7EB;
}
.doofinder-cell {
    color: #666;
    border-right: 1px solid #E8EDF5;
    font-weight: 500;
}
.comparison-header-row .doofinder-cell{
    font-size: 18px;
    background: #E5E7EB;
}
.doofinder-cell i {
    color: #E74C3C;
    margin-right: 0.5rem;
    font-weight: 500;
}

/* Global xmark icon styling */
.xmark-icon {
    color: #EF4444 !important;
}

.conversionbox-cell {
    color: #000;
}
.comparison-header-row .conversionbox-cell{
    font-size: 18px;
    color: #062074;
    background: #E5E7EB;
}
.conversionbox-cell i {
    color: #27AE60;
    margin-right: 0.5rem;
}

/* Bottom Cards */
.comparison-bottom-cards {
    margin-top: 2rem;
}

.comparison-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.doofinder-card {
    background: linear-gradient(165deg, #ffc3c3 0%, #ffc3c3 5%, #ffc3c3 20%, #FFFFFF 100%);
}

.conversionbox-card {
    background: linear-gradient(165deg, #D6E9F5 0%, #D6E9F5 5%, #cae0f6 20%, #FFFFFF 100%);
}

.comparison-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.doofinder-card .card-icon {
    background: #E74C3C;
    color: #fff;
}

.conversionbox-card .card-icon {
    background: #0066CC;
    color: #fff;
}

.comparison-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #29394E;
    margin: 0;
}

.comparison-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Let's Connect Section */
.lets-connect-section {
    background: linear-gradient(135deg, #0033CC 0%, #001a66 100%);
    background-image: url('../images/lets-connect-section-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
}

.connect-card {
    background: #E8EDF5;
    border-radius: 20px;
    padding: 2rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.connect-content {
    padding-right: 0rem;
}

.connect-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #D6E9F5;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #062074;
    font-weight: 600;
    border: solid 1px #8fa3df;
}

.connect-badge img {
    max-width: 100%;
    width: 20%;
}

.connect-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A1D23;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.connect-content h2 .highlight {
    background: linear-gradient(90deg, #2463EB 0%, #00B8F5 50%, #2463EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.connect-content p {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.connect-content p strong {
    font-weight: 600;
    color: #1A1D23;
}

.btn-schedule-demo {
    background: #062074;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 204, 0.3);
    text-decoration: none;
}

.btn-schedule-demo:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 204, 0.4);
}

.btn-schedule-demo i {
    font-size: 1.1rem;
}

/* Profile Section */
.connect-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.profile-image img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 3px solid #062074;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.profile-icon {
    position: absolute;
    bottom: 0px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: #062074;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #062074;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.profile-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: #062074;
    margin-bottom: 0.5rem;
}

.profile-info  {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}
.profile-info p{
    font-weight: 500;
}



/* ========================================
   Seamless Integrations Section
   ======================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: #0041B3;
    color: #0041B3;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0px;
}

.integrations-section {
    background: url('../images/integrations-section-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 4rem 0 1rem 0;
    position: relative;
    overflow: hidden;
}

.floating-icons-wrapper {
    position: relative;
    height: 170px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon {
    position: absolute;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: circular-scroll;
}

.floating-icon img {
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.floating-icon:hover img {
    transform: scale(1.15);
    /* box-shadow: 0 0 30px rgba(128, 119, 250, 0.6), 
                0 0 60px rgba(121, 112, 247, 0.4), 
                0 0 90px rgba(91, 79, 255, 0.2),
                0 10px 40px rgba(0, 0, 0, 0.2); */
    filter: brightness(0.8);
    /* //animation: glow-pulse 1.5s ease-in-out infinite; */
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(132, 124, 252, 0.6), 
                    0 0 60px rgba(141, 133, 245, 0.4), 
                    0 0 90px rgba(91, 79, 255, 0.2),
                    0 10px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(141, 133, 241, 0.8), 
                    0 0 80px rgba(143, 136, 243, 0.6), 
                    0 0 120px rgba(151, 145, 243, 0.3),
                    0 10px 50px rgba(0, 0, 0, 0.3);
    }
}

/* Icon Delays for Sequential Movement - 4 Icons */
.icon-1 {
    animation-delay: 0s;
}

.icon-2 {
    animation-delay: 2.5s;
}

.icon-3 {
    animation-delay: 5s;
}

.icon-4 {
    animation-delay: 7.5s;
}
/* Half Arc Circular Scrolling Animation - Semicircle Path */
@keyframes circular-scroll {

    0% {
        left: 0%;
        top: 80%;
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
        filter: drop-shadow(0 0 0px rgba(91, 79, 255, 0));
    }
    5% {
        opacity: 0.5;
    }
    10% {
        left: 10%;
        top: 65%;
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.9);
        filter: drop-shadow(0 0 5px rgba(91, 79, 255, 0.2));
    }
    20% {
        left: 20%;
        top: 45%;
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 10px rgba(91, 79, 255, 0.3));
    }
    30% {
        left: 30%;
        top: 30%;
        transform: translate(-50%, -50%) scale(1.05);
        filter: drop-shadow(0 0 15px rgba(91, 79, 255, 0.4));
    }
    40% {
        left: 40%;
        top: 18%;
        transform: translate(-50%, -50%) scale(1.1);
        filter: drop-shadow(0 0 25px rgba(91, 79, 255, 0.6));
    }
    50% {
        left: 50%;
        top: 10%;
        transform: translate(-50%, -50%) scale(1.15);
        filter: drop-shadow(0 0 40px rgba(161, 156, 240, 0.9)) 
                drop-shadow(0 0 60px rgba(136, 128, 252, 0.6)) 
                drop-shadow(0 0 80px rgba(127, 118, 248, 0.4));
    }
    60% {
        left: 60%;
        top: 18%;
        transform: translate(-50%, -50%) scale(1.1);
        filter: drop-shadow(0 0 25px rgba(91, 79, 255, 0.6));
    }
    70% {
        left: 70%;
        top: 30%;
        transform: translate(-50%, -50%) scale(1.05);
        filter: drop-shadow(0 0 15px rgba(91, 79, 255, 0.4));
    }
    80% {
        left: 80%;
        top: 45%;
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 10px rgba(91, 79, 255, 0.3));
    }
    90% {
        left: 90%;
        top: 65%;
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(91, 79, 255, 0.2));
    }
    95% {
        opacity: 0.5;
    }
    100% {
        left: 95%;
        top: 80%;
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
        filter: drop-shadow(0 0 0px rgba(91, 79, 255, 0));
    }

    
}

.integrations-content h2 {
    color: #062074;
}
.integrations-content p{
    color: #000;
    font-weight: 500;
}
.integrations-content .btn-primary {
    background: #062074;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
}

.integrations-content .btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* AI-Powered Search Section */
.ai-search-section {
    background: linear-gradient(90deg, #D4E3FB 0%, #D4E3FB 50%, #FFFFFF 100%);
    padding: 5rem 0;
}

.ai-search-section .row.g-4 {
    align-items: stretch;
}

/* .ai-search-section .col-lg-4 {
    display: flex;
} */

.ai-search-title {
    font-size: 2.5rem;
    color: #062074;
    margin-bottom: 0;
    line-height: 1.3;
}

.ai-search-title .fw-bold {
    font-weight: 600;
}

.stat-card {
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    min-height: 470px;
}

.stat-card-content-wrapper {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.stat-card-blue {
    background: #062074;
    color: #fff;
}

.stat-card-dark {
    background: #1A1D23;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    top: -25px;
}

/* .stat-card-dark:hover {
    transform: translateY(-45px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} */

.stat-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.stat-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-description {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.stat-note {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.stat-cta {
    padding: .5rem 2rem;
    background: transparent;
    text-align: center;
    margin-top: -0.5rem;
}

.cta-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #000;
    text-align: center;
    font-weight: 500;
}
.btn-ai-action {
    background: #062074;
    color: #fff;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 32, 116, 0.5);
    margin: 0 auto;
    width: fit-content;
    text-decoration: none;
}

.btn-ai-action:hover {
    background: #0041B3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 32, 116, 0.6);
}

.btn-ai-action i {
    font-size: 0.85rem;
    background: #fff;
    color: #062074;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Platform Features Section */
.platform-features-section {
    background: #fff;
    padding: 5rem 0;
}

.platform-title {
    font-size: 2.5rem;
    color: #062074;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 400;
}

.platform-title .text-dark-blue {
    color: #062074;
    font-weight: 600;
}

.platform-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}

.platform-subtitle .brand-name {
    color: #6B7280;
    font-weight: 600;
    font-size: 18px;
}

.feature-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 2rem;
}

.feature-icon-blue {
    background: linear-gradient(135deg, #2463EB 0%, #9dbeef 100%);
    color: #fff;
}

.feature-icon-cyan {
    background: linear-gradient(135deg, #00B8F5 0%, #90d7e5 100%);
    color: #fff;
}

.feature-icon-purple {
    background: linear-gradient(135deg, #4B24EF 0%, #8d74f5 100%);
    color: #fff;
}

.feature-icon-indigo {
    background: linear-gradient(135deg, #062074 0%, #5368ad 100%);
    color: #fff;
}

.feature-icon-blue-light {
    background: linear-gradient(135deg, #2463EB 0%, #6788d1 100%);
    color: #fff;
}

.feature-icon-sky {
    background: linear-gradient(135deg, #06A9F3 0%, #80c4e3 100%);
    color: #fff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1D23;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1.1rem;
    color: #322e2e;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Compare Features and Pricing Section */
.compare-pricing-section {
    background: linear-gradient(180deg, #D4E3FB 0%, #F9FAFB 100%);
    padding: 3rem 0;
}

.compare-pricing-section .compare-title {
    font-size: 2.5rem;
    color: #062074;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 400;
}
.compare-pricing-section .compare-title .highlight-stuck{
    color: #062074;
    font-weight: 600;
}
.compare-pricing-section .compare-subtitle {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}

.compare-pricing-section .comparison-table {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.compare-pricing-section .comparison-headers {
    display: grid;
    grid-template-columns: 1.5fr 1.9fr 1.6fr 2fr;
    background: #F9FAFB;
    border-bottom: 2px solid #E5E7EB;
    font-weight: 600;
}

.compare-pricing-section .comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1.9fr 1.6fr 2fr;
    border-bottom: 1px solid #E5E7EB;
}

.compare-pricing-section .comparison-row:last-child {
    border-bottom: none;
}
.compare-pricing-section .comparison-headers .comparison-cell {
    padding: 0.5rem 1.5rem;
}
.compare-pricing-section .comparison-row.price-row .comparison-cell {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;  
    font-weight: 600;
}
.compare-pricing-section .comparison-row.price-row .comparison-cell.competitor-col.price-cell {
    font-size: 1.1rem;  
    font-weight: 600;
    color: #6B7280;
}
.compare-pricing-section .comparison-cell {
    padding: 1rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5;
}
.compare-pricing-section .comparison-headers .comparison-cell.feature-col
{
    font-weight: 600;
}
.compare-pricing-section .feature-col {
    color: #1A1D23;
    font-weight: 500;
    /* border-right: 1px solid #E5E7EB; */
}

.compare-pricing-section .brand-col {
    color: #000;
    font-weight: 500;
    /* border-right: 1px solid #E5E7EB; */
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.25rem;
}

.compare-pricing-section .competitor-col {
    color: #6B7280;
    /* border-right: 1px solid #E5E7EB; */
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0rem;
    font-weight: 500;
}

.compare-pricing-section .meaning-col {
    color: #1A1D23;
    font-size: 1rem;
    font-weight: 500;
}
.compare-pricing-section .comparison-headers .feature-col {
    color: #000 ;
    font-size: 1.1rem;
}
/* .compare-pricing-section .comparison-headers .comparison-cell {
    color: #6B7280;
    font-size: 1.1rem;
} */
.compare-pricing-section .comparison-headers .comparison-cell.brand-col {
    color: #062074;
    font-size: 1.1rem;
    font-weight: 600;
}
.compare-pricing-section .comparison-headers .comparison-cell.competitor-col {
    color: #6B7280;
    font-size: 1.1rem;
    font-weight: 600;
}
.compare-pricing-section .comparison-headers .comparison-cell.meaning-col{
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
}
.compare-pricing-section .check-icon {
    color: #10B981;
    font-size: 1.25rem;
}

.compare-pricing-section .xmark-icon {
    color: #EF4444;
    font-size: 1.25rem;
}

.compare-pricing-section .pricing-badge {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
}

.compare-pricing-section .price-row {
    background: #F4F7FE;
}

.compare-pricing-section .price-cell {
    font-size: 1.1rem;
    color: #062074;
}
.compare-pricing-section .price-row .price-cell {
    font-size: 1.1rem;
    color: #062074;
    font-weight: 600;
}
.compare-pricing-section .savings-badge {
    background: url('../images/savings-badge-bg.png');
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

/* .compare-pricing-section .savings-badge::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #062074;
} */

.compare-pricing-section .text-success {
    color: #10B981 !important;
    font-size: 1.25rem;
}

.compare-pricing-section .text-danger {
    color: #EF4444 !important;
    font-size: 1.25rem;
}

/* Limited-Time Offers Section */
.limited-offers-section {
    background: linear-gradient(180deg, #D4E3FB 0%, #F9FAFB 100%);
    padding: 3rem 0;
}

.offers-title {
    font-size: 2.5rem;
    color: #062074;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 400;
}

.offers-title .brand-highlight {
    color: #062074;
    font-weight: 600;
}

.offer-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.offer-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2463EB 0%, #00B8F5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: #fff;
}

.offer-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1A1D23;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.offer-description {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}
.limited-offers-section .cta-text {
    font-size: 18px;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #062074;
    text-align: center;
    font-weight: 500;
}
/* Success Stories Carousel Section */
.success-stories-section {
    background: linear-gradient(180deg, #D4E3FB 0%, #F9FAFB 100%);
    padding: 5rem 0;
}

.stories-title {
    font-size: 2.5rem;
    color: #062074;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 400;
}

.stories-title .stories-highlight {
    font-weight: 700;
}

.success-stories-carousel {
    position: relative;
}

.story-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    margin: 0 15px;
    /* display: flex !important; */
    flex-direction: row;
    height: auto;
}

.story-image {
    position: relative;
    /* width: 45%; */
    /* min-height: 400px; */
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #062074;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.story-content {
    /* width: 55%; */
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.story-meta {
    display: flex;
    /* flex-direction: column; */
    gap: 2rem;
    margin-bottom: 1rem;
}

.story-sector,
.story-industry {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.story-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A1D23;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.story-results {
    margin-top: auto;
}

.results-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10B981;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-header i {
    font-size: 1rem;
}

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

.stat-item {
    text-align: left;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 600;
    color: #062074;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #212224;
    line-height: 1.4;
    font-weight: 500;
}

.story-link {
    position: absolute;
    /* bottom: 2.5rem;*/
    right: 1.5rem; 
    top: 20px;
    width: 48px;
    height: 48px;
    /* background: #062074; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.story-link:hover {
    /* background: #0041B3; */
    transform: scale(1.1);
}

/* Slick Carousel Arrows */
.success-stories-carousel .slick-prev,
.success-stories-carousel .slick-next {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.success-stories-carousel .slick-prev:hover,
.success-stories-carousel .slick-next:hover {
    background: #062074;
    border-color: #062074;
}

.success-stories-carousel .slick-prev {
    left: -60px;
}

.success-stories-carousel .slick-next {
    right: -60px;
}

.success-stories-carousel .slick-prev:before,
.success-stories-carousel .slick-next:before {
    color: #062074;
    font-size: 20px;
}

.success-stories-carousel .slick-prev:hover:before,
.success-stories-carousel .slick-next:hover:before {
    color: #fff;
}

/* Slick Dots */
.success-stories-carousel .slick-dots {
    bottom: -50px;
}

.success-stories-carousel .slick-dots li button:before {
    font-size: 12px;
    color: #D1D5DB;
}

.success-stories-carousel .slick-dots li.slick-active button:before {
    color: #062074;
}


/* ========================================
   Product Suite Testimonials Section
   ======================================== */

.product-suite-testimonials-section {
    background: url('../images/testimonial-bg.webp') center center / cover no-repeat;
    padding: 3rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-main-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.testimonials-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* .testimonials-carousel-wrapper {
    max-width: 900px;
    margin: 0 auto;
} */

.product-suite-testimonials-section .badge {
    background: white !important;
    color: var(--text-dark) !important;
}
.testimonial-link {
    display: inline-block;
    padding: 12px 30px;
    width: fit-content;
    border-radius: 50px;
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFF;
    border: solid 1px #1e40af;
}

.testimonial-link:hover {
    background: #4860d9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 63, 255, 0.3);
}

.testimonial-content-card {
    background: transparent;
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.testimonial-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.testimonials-carousel {
    position: relative;
    padding: 0 60px;
    margin-bottom: 1rem;
}

.testimonials-carousel .slick-list {
    overflow: visible !important;
}

.testimonials-carousel .slick-track {
    display: flex !important;
    align-items: center;
}

.testimonials-carousel .slick-slide {
    outline: none;
    padding: 0 15px;
    transition: all 0.4s ease;
    opacity: 0.3;
    transform: scale(0.85);
    width: 100%;
}

.testimonials-carousel .slick-slide > div {
    height: 100%;
    width: 100%;
}

/* Center/Active slide is fully visible */
.testimonials-carousel .slick-slide.slick-current {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.testimonials-carousel .slick-slide .testimonial-card {
    transition: all 0.4s ease;
}
/* Navigation arrows - Bottom positioned */
.testimonials-carousel .slick-arrow {
    position: absolute;
    bottom: -54px;
    top: auto;
    transform: translateY(0);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E0E0E0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 0;
}

.testimonials-carousel .slick-arrow::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.testimonials-carousel .slick-prev {
    left: 50%;
    margin-left: -60px;
}

.testimonials-carousel .slick-prev::before {
    content: '\f053';
}

.testimonials-carousel .slick-next {
    right: 50%;
    margin-right: -60px;
}

.testimonials-carousel .slick-next::before {
    content: '\f054';
}

.testimonials-carousel .slick-arrow:hover {
    background: #5B4FFF;
    border-color: #5B4FFF;
}

.testimonials-carousel .slick-arrow:hover::before {
    color: white;
}

.testimonials-carousel .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
    padding: 0;
    list-style: none;
}

.testimonials-carousel .slick-dots li {
    margin: 0;
}

.testimonials-carousel .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D0D0D0;
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-carousel .slick-dots li.slick-active button {
    background: #5B4FFF;
    width: 30px;
    border-radius: 5px;
}

.testimonial-card {
    background: transparent;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.testimonial-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
} */

.quote-icon-large {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-icon-large i {
    font-size: 3rem;
    color: #5B4FFF;
    opacity: 0.3;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-stars-rating {
    display: flex;
    align-items: center;
}

.rating-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.testimonial-header {
    margin-bottom: 1rem;
}

.quote-icon {
    flex-shrink: 0;
}

.testimonial-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.text-purple {
    color: #6366F1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1a1a;
    text-align: center;
    margin: 0;
    position: relative;
    display: block;
    font-weight: 500;
}

.testimonial-text .quote-start {
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
}

.testimonial-text .quote-end {
    display: inline-block;
    vertical-align: bottom;
    margin-left: 8px;
    transform: rotate(180deg);
    position: absolute;
}

.testimonial-text .quote-start img,
.testimonial-text .quote-end img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.testimonial-author-section {
    text-align: center;
    margin-top: 0.5rem;
}

.testimonial-card .rating {
    margin: 0.5rem 0;
    text-align: center !important;
}

.testimonial-card .rating img {
    height: 20px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.author-avatar img {
    width: 48px;
    height: 48px;
}

.author-name {
    font-size: 22px;
    color: #062074;
    font-weight: 600;
    margin-bottom: 0.25rem; 
}

.author-role {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.author-social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: #5B4FFF;
    transform: translateY(-2px);
    color: white;
}


/* ========================================
   Main Footer
   ======================================== */

.main-footer {
    background: url('../images/footer-section-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: white;
    padding: 1rem 0 2rem;
    position: relative;
}

/* Footer CTA Section */
.footer-cta-wrapper {
    padding: 2rem 0rem 0rem 0rem;
    position: relative;
}

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

.footer-cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.footer-cta-title .highlight-text {
    font-weight: 700;
}

.footer-cta-subtitle {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-cta-subtitle strong {
    font-weight: 600;
}

.footer-cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-cta-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1rem;
}

.footer-cta-features .feature-item i {
    font-size: 1.25rem;
}

.btn-footer-cta {
    background: #fff;
    color: #062074;
    padding: 0.675rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-footer-cta:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.footer-logo {
    max-width: 180px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color:#FFFFFF;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #1E3A8A;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 400;
}

.footer-links a:hover {
    /* color:#ffc107; */
    transform: translateX(5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1.5rem;
}
.footer-divider-1{
   border-color: rgba(255, 255, 255, 9.2);
    margin: 1rem 0 2rem;
    border: solid 1px rgb(255 255 255 / 20%);
    opacity: 0.75;
}
    
.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    font-weight: 500;
}


/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
    
    .banner-composite {
        max-width: 600px;
        margin: 0 auto;
        padding-right: 10px;
    }
    
    .woman-image {
        max-width: 200px;
        margin-right: -50px;
    }
    
    .product-cards-overlay {
        left: -5%;
        width: 90%;
    }
    
    .product-cards {
        width: 100%;
        max-width: 500px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .contact-link {
        font-size: 0.9rem;
    }
    
    .separator {
        display: none;
    }
    
    .navbar .container {
        flex-direction: column;
    }
    
    .navbar-brand {
        margin-bottom: 0;
    }

    .testimonial-content-card {
        padding: 2rem;
        text-align: center;
    }
    
    .testimonial-main-title {
        font-size: 2rem;
    }
    
    .testimonial-description {
        font-size: 0.95rem;
    }
    
    .testimonials-carousel {
        height: auto;
        min-height: 400px;
    }
    
    .testimonial-link {
        margin: 0 auto;
    }
    
    /* Stuck Section Responsive */
    .stuck-section {
        padding: 3rem 0;
    }
    
    .stuck-title {
        font-size: 2rem;
    }
    
    .stuck-subtitle {
        font-size: 1rem;
    }
    
    .vs-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 2rem 0;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 0.75rem 0;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .contact-link {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .contact-link img {
        width: 16px;
        height: 16px;
    }
    
    .separator {
        display: none;
    }
    
    .banner-composite {
        max-width: 400px;
        justify-content: center;
        padding-right: 0;
    }
    
    .woman-image {
        max-width: 220px;
        margin-right: -20px;
    }
    
    .product-cards-overlay {
        left: 0;
        width: 85%;
    }
    
    .product-cards {
        width: 85%;
        max-width: 400px;
        opacity: 0.8;
    }
    
    .navbar .container {
        flex-direction: column;
        padding: 0 1rem !important;
    }
    
    .navbar-brand {
        margin-bottom: 0;
    }
    
    .logo-wrapper img {
        max-height: 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    .hero-content{
        padding: 40px 10px 0 10px;
    }
    .hero-content .feature-text h3 {
        font-size: 0.85rem;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .btn-demo {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-placeholder {
        max-width: 350px;
    }
    
     .ai-video-section {
        padding: 3.5rem 0;
    }

    .ai-video-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .ai-video-overlay {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.25rem;
    }

    .vs-badge {
        bottom: -20px;
        right: 5%;
    }
    
    .vs-content {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .brand-name,
    .competitor-name {
        font-size: 0.8rem;
    }
    
    .vs-text {
        font-size: 0.9rem;
        padding: 0.2rem 0.6rem;
    }
    .testimonial-content-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-main-title {
        font-size: 1.75rem;
    }
    
    .testimonials-carousel {
        height: auto;
        min-height: 350px;
    }
    
    .testimonials-grid {
        padding: 1rem;
    }
    
    /* Stuck Section Mobile */
    .stuck-section {
        padding: 2.5rem 0;
    }
    
    .stuck-title {
        font-size: 1.5rem;
    }
    
    .stuck-subtitle {
        font-size: 0.95rem;
    }
    
    .stuck-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stuck-card-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stuck-list li {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .vs-badge {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 2rem 0 4rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .banner-composite {
        max-width: 350px;
        justify-content: center;
    }
    
    .woman-image {
        max-width: 120px;
        margin-right: -200px;
        top: 20px;
    }
    
    .product-cards {
        width: 90%;
        opacity: 0.75;
    }
    
    .decorative-dots {
        width: 60px;
        height: 90px;
    }
    
    .features-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .feature-bar-item {
        justify-content: center;
        min-width: auto;
    }
    
    .comparison-header h2 {
        font-size: 1.75rem;
    }
    
    .comparison-header p {
        font-size: 1rem;
    }
    
    /* Comparison Section - Horizontal Scroll */
    .comparison-section {
        padding: 3rem 0;
    }
    
    .comparison-section .comparison-table {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #062074 #E5E7EB;
        margin-bottom: 1.5rem;
    }
    
    .comparison-section .comparison-table::-webkit-scrollbar {
        height: 8px;
    }
    
    .comparison-section .comparison-table::-webkit-scrollbar-track {
        background: #E5E7EB;
        border-radius: 10px;
    }
    
    .comparison-section .comparison-table::-webkit-scrollbar-thumb {
        background: #062074;
        border-radius: 10px;
    }
    
    .comparison-section .comparison-table::-webkit-scrollbar-thumb:hover {
        background: #0041B3;
    }
    
    .comparison-section .comparison-row {
        min-width: 800px;
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .comparison-section .comparison-cell {
        padding: 0.875rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .comparison-section .comparison-header-row .issue-cell,
    .comparison-section .comparison-header-row .doofinder-cell,
    .comparison-section .comparison-header-row .conversionbox-cell {
        font-size: 0.95rem;
    }
    
    .comparison-section .issue-cell {
        border-right: 1px solid #E8EDF5;
    }
    
    .comparison-section .doofinder-cell {
        border-right: 1px solid #E8EDF5;
    }
    
    /* Compare Pricing Section - Horizontal Scroll */
    .compare-pricing-section .compare-title {
        font-size: 1.75rem;
    }
    
    .compare-pricing-section .comparison-table {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #062074 #E5E7EB;
    }
    
    .compare-pricing-section .comparison-table::-webkit-scrollbar {
        height: 8px;
    }
    
    .compare-pricing-section .comparison-table::-webkit-scrollbar-track {
        background: #E5E7EB;
        border-radius: 10px;
    }
    
    .compare-pricing-section .comparison-table::-webkit-scrollbar-thumb {
        background: #062074;
        border-radius: 10px;
    }
    
    .compare-pricing-section .comparison-table::-webkit-scrollbar-thumb:hover {
        background: #0041B3;
    }
    
    .compare-pricing-section .comparison-headers,
    .compare-pricing-section .comparison-row {
        min-width: 800px;
    }
    
    .compare-pricing-section .comparison-headers .comparison-cell,
    .compare-pricing-section .comparison-row .comparison-cell {
        font-size: 0.85rem;
        padding: 1rem 0.75rem;
    }
    
    .compare-pricing-section .comparison-headers .feature-col {
        font-size: 0.95rem;
    }
    
    .compare-pricing-section .comparison-headers .comparison-cell.brand-col,
    .compare-pricing-section .comparison-headers .comparison-cell.competitor-col,
    .compare-pricing-section .comparison-headers .comparison-cell.meaning-col {
        font-size: 0.95rem;
    }
    
    .compare-pricing-section .pricing-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .compare-pricing-section .savings-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
    
    .compare-pricing-section .check-icon,
    .compare-pricing-section .xmark-icon {
        font-size: 1rem;
    }
    
    .connect-card {
        padding: 2rem;
    }
    
    .connect-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .connect-content h2 {
        font-size: 1.75rem;
    }
    
    .connect-content p {
        font-size: 1rem;
    }
    
    .ai-search-section .ai-search-title {
        font-size: 1.75rem;
    }
    
    .platform-title {
        font-size: 1.75rem;
    }
    
    .platform-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-description {
        font-size: 1rem;
    }
    
    .compare-title {
        font-size: 1.75rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        padding: 1rem;
        border-right: none !important;
        border-bottom: 1px solid #E5E7EB;
    }
    
    .feature-col,
    .brand-col,
    .competitor-col,
    .meaning-col {
        justify-content: flex-start;
        text-align: left;
    }
    
    .comparison-header .comparison-cell {
        background: #F3F4F6;
        font-weight: 700;
    }
    
    .offers-title {
        font-size: 1.75rem;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .offer-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .offer-title {
        font-size: 1.2rem;
    }
    
    .stories-title {
        font-size: 1.75rem;
    }
    
    .story-card {
        flex-direction: column;
        margin: 0 10px;
    }
    
    .story-image {
        width: 100%;
        /* min-height: 250px; */
    }
    
    .story-content {
        width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .story-title {
        font-size: 1.25rem;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .story-link {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .success-stories-carousel .slick-prev,
    .success-stories-carousel .slick-next {
        display: none !important;
    }
    
    .stat-note {
        font-size: 0.9rem;
    }
    
    .footer-cta-wrapper {
        padding: 3rem 0;
    }
    
    .footer-cta-title {
        font-size: 1.75rem;
    }
    
    .footer-cta-subtitle {
        font-size: 1rem;
    }
    
    .footer-cta-features {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .footer-cta-features .feature-item {
        font-size: 0.9rem;
    }
    
    .btn-footer-cta {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

.hero-image-wrapper {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    /* Testimonial Content Card Responsive */
    .testimonial-content-card {
        padding: 1.5rem;
    }
    
    .testimonial-main-title {
        font-size: 1.5rem;
    }
    
    .testimonial-description {
        font-size: 0.875rem;
    }
    
    .testimonial-link {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    /* Testimonials Carousel Mobile Fixes */
    .testimonials-carousel {
        padding: 0 10px;
        margin-bottom: 3rem;
    }
    
    .testimonials-carousel .slick-list {
        padding: 0 !important;
        overflow: hidden !important;
    }
    
    .testimonials-carousel .slick-slide {
        padding: 0 5px;
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    
    .testimonials-carousel .slick-slide.slick-current {
        opacity: 1;
        transform: scale(1);
    }
    
    .testimonials-carousel .slick-arrow {
        display: none !important;
    }
    
    .testimonials-carousel .slick-dots {
        margin-top: 1.5rem;
        position: static;
    }
    
    .testimonials-carousel .slick-dots li button {
        width: 8px;
        height: 8px;
    }
    
    .testimonials-carousel .slick-dots li.slick-active button {
        width: 24px;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
        border-radius: 14px;
        max-width: 100%;
    }
    
    .testimonial-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-text .quote-start,
    .testimonial-text .quote-end {
        display: none;
    }
    
    .testimonial-card .rating img {
        height: 16px;
    }
    
    .quote-icon-large i {
        font-size: 2rem;
    }
    
    .testimonial-author-section {
        margin-top: 0.5rem;
    }
}

.banner-thanks{
    padding: 50px 0;
}
.banner-thanks h1{
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.banner-thanks h3{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}