/* 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;
    margin-bottom: 4rem;
}

.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 0rem 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.1;
    margin-bottom: 1.1rem;
    letter-spacing: 1px;
}

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

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1.1rem;
    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.1rem;
    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;
    margin-bottom: 3rem;
}
.rating-badge img{
    max-width: 100%;
    width: 34%;
    margin: 0 0 0 -10px;
}

.benefits-text  {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 1.1rem;
    font-style: italic;
}
.footer-cta-wrapper .benefits-text{
    margin-bottom: 2rem;
}
.benefits-text .footer-stars {
    margin-left: 5px;
    margin-right: 5px;
}
.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;
    padding: 40px 0px;
    
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: -15px;
    border-radius: 24px;
    background: radial-gradient(circle at 20% 0%, #0d6efd, transparent 100%), radial-gradient(circle at 80% 100%, #0d6efd, #ffc107 55%);
    filter: blur(25px);
    opacity: 0.5;
    z-index: 0;
}

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

.ai-video-title {
    font-size: 2.5rem;
    color: #0B1F66;
    font-weight: 500;
    margin-bottom: 2.5rem;
}
.ai-video-title .highlight {
    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;
}

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

.comparison-highlight-header .section-badge {
    display: inline-flex;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    background: rgba(15, 98, 254, 0.08);
    color: #0F62FE;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.comparison-highlight-header h2 {
    font-size: 2.4rem;
    color: #0B1F66;
    margin-bottom: 1rem;
}
.comparison-highlight-header .highlight{
    font-weight: 600;
}
.comparison-highlight-header .lead {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: #4B5563;
    font-weight: 500;
}

.comparison-highlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1.4fr;
    gap: 0rem;
}

.comparison-highlight-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #F9FAFB;
    border-radius: 1px;
    padding: 1.5rem;
}

.comparison-highlight-column span.column-label {
    font-weight: 600;
    color: #000;
    font-size: 1.1rem;
    padding: 1rem 0;
}

.comparison-highlight-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #111827;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}
.comparison-highlight-column.feature-col ul{
    gap: 2.1rem;
}
.comparison-highlight-column.feature-col ul li {
    color: #1F2937;
    font-weight: 500;
}

.comparison-highlight-column.conversionbox-col {
    background: linear-gradient(180deg, rgba(15, 98, 254, 0.08) 0%, rgba(15, 98, 254, 0.02) 100%);
    border-radius: 1px;
    padding: 1.5rem;
}

.comparison-highlight-column.other-col {
    background: #FFF;
    border-radius: 1px;
    padding: 1.5rem;
}

.comparison-highlight-column ul li {
    position: relative;
    padding-left: 1.75rem;
}

.comparison-highlight-column.conversionbox-col ul li::before,
.comparison-highlight-column.other-col ul li::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.45rem;
}

.comparison-highlight-column.conversionbox-col ul li::before {
    background: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.comparison-highlight-column.other-col ul li::before {
    background: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.comparison-highlight-column .brand-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #0B1F66;
    font-size: 1.1rem;
}
.comparison-highlight-column.other-col .brand-header{
    padding: 0.7rem 0;
}
.comparison-highlight-column .brand-header img {
    height: 32px;
}

.hero-video {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: block;
    background-color: #0033CC;
    object-fit: cover;
    aspect-ratio: 16/9;
     border: solid 3px #FFF;
         z-index: 1;
}

/* Video Player Container */
.video-player-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    background: #0033CC;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    padding: 0;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.play-icon {
    width: 40px;
    height: 40px;
    margin-left: 4px;
}

.video-player-text {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
}

.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%);
}

/* Features Bar Section */
.features-bar-section {
    background: #001D84;
    padding: 1.2rem 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: #FFF;
    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;
}

/* 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;
}

/* Ecommerce Integrations Section */
.ecommerce-integrations-section {
    background: linear-gradient(180deg, #D4E3FB 0%, #f6f8fb 100%);
    padding: 4rem 0;
}

.integrations-title {
    font-size: 2.5rem;
    color: #0B1F66;
    font-weight: 500;
    margin-bottom: 0;
}
.integrations-title .highlight{
    font-weight: 600;
}
.integration-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* border: 1px solid rgba(11, 31, 102, 0.1); */
}


    
.integration-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); */

    background: linear-gradient(135deg, #d7e5fb  0%, #FFFFFF 100%);
    /* border-radius: 10px; */
    /* padding: 2rem 1.5rem; */
    /* box-shadow: 0 12px 40px rgba(15, 98, 254, 0.3); */
    position: relative;
    z-index: 3;
    /* min-width: 250px; */
    transition: all 0.3s ease;

}

.integration-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.shopify-icon {
    background: linear-gradient(135deg, #96BF48 0%, #5E8E3E 100%);
    color: #FFFFFF;
}

.bigcommerce-icon {
    background: linear-gradient(135deg, #2D3E50 0%, #1A252F 100%);
    color: #FFFFFF;
}

.woocommerce-icon {
    background: linear-gradient(135deg, #7F54B1 0%, #7F54B1 100%);
    color: #FFFFFF;
}

.magento-icon {
    background: linear-gradient(135deg, #EE672F 0%, #D14E1F 100%);
    color: #FFFFFF;
}

.custom-icon {
    background: linear-gradient(135deg, #0F62FE 0%, #0043CE 100%);
    color: #FFFFFF;
}

.integration-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0B1F66;
    margin-bottom: 1rem;
}

.integration-description {
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ========================================
   Seamless Integrations Section
   ======================================== */
.seamless-integration-section {
    background: linear-gradient(180deg, #E8F1FF 0%, #FFFFFF 100%);
    padding: 3rem 0;
    overflow: hidden;
}

.seamless-title {
    font-size: 2.5rem;
    color: #0B1F66;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.seamless-title .highlight{
    font-weight:600;
}
.seamless-subtitle {
    font-size: 1.15rem;
    color: #4A5568;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.integration-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 1rem 0;
    max-width: 100%;
    margin: 0 auto;
    gap:25px;
}

.integration-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    min-width: 230px;
}
.integration-step:hover {
    background: linear-gradient(135deg, #0B50DA 0%, #25E2F4 100%);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 40px rgba(15, 98, 254, 0.3);
    position: relative;
    z-index: 3;
    /* min-width: 250px; */
    transition: all 0.3s ease;
}
.integration-step:hover .step-number{
    color:#FFFFFF;
}
.integration-step:hover .step-title{
    color:#FFFFFF;
}
.step-icon-wrapper {
    margin-bottom: 1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blue-icon {
    background: linear-gradient(135deg, #001D84 0%, #001D84 100%);
    color: #FFFFFF;
}

.cyan-icon {
    background: linear-gradient(135deg, #001D84 0%, #001D84 100%);
    color: #FFFFFF;
}

.purple-icon {
    background: linear-gradient(135deg, #001D84 0%, #001D84 100%);
    color: #FFFFFF;
}

.white-icon {
    background: #FFFFFF;
    color: #0F62FE;
}

.step-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B1F66;
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B1F66;
    /* max-width: 120px; */
    line-height: 1.3;
}

/* Center Card - Step 2 */
.center-card {
    /* background: linear-gradient(135deg, #0B50DA 0%, #25E2F4 100%); */
    border-radius: 10px;
    padding: 2rem 1.5rem;
    /* box-shadow: 0 12px 40px rgba(15, 98, 254, 0.3); */
    position: relative;
    z-index: 3;
    /* min-width: 250px; */
    transition: all 0.3s ease;
}

.center-card:hover {
    /* background: linear-gradient(135deg, #1c6fff 0%, #0052e6 100%); */
    /* background: linear-gradient(135deg, #0B50DA 0%, #25E2F4 100%);
    box-shadow: 0 16px 50px rgba(15, 98, 254, 0.45);
    transform: translateY(-5px); */
      background: linear-gradient(135deg, #0B50DA 0%, #25E2F4 100%);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 40px rgba(15, 98, 254, 0.3);
    position: relative;
    z-index: 3;
    /* min-width: 250px; */
    transition: all 0.3s ease;
}

.center-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-card .step-number,
.center-card .step-title {
    color: #0B1F66;
}

.center-card .step-icon-wrapper {
    margin-bottom: 1rem;
}

/* Curved Arrow Connectors */
.curved-arrow {
    flex: 1;
    height: 110px;
    min-width: 240px;
    margin: 0 0 0 -100px;
    align-self: center;
    margin-top: -30px;
    z-index: 1;
}

.curved-arrow path {
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 10 6;
    animation: arrow-run 2s linear infinite;
}

@keyframes arrow-run {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -64;
    }
}

/* Individual arrow adjustments */

.arrow-1{
    height: 110px;
    margin: 11% 0% 25% 12%;
    position: absolute;
}
.arrow-2 {
   height: 110px;
    margin: 18% 10% 11% 40%;
    position: absolute;
}
.arrow-3 {
    height: 110px;
    margin: 0% 10% 12% 67%;
    position: absolute;
}

.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;
}



/* ========================================
   Organizations Impact Section
   ======================================== */

.organizations-impact-section {
        background: linear-gradient(180deg, #D4E3FB 0%, #F9FAFB 100%);
        padding: 4rem 0;
}

.impact-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 3rem;
}

.organizations-carousel {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.organization-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    transition: all 0.3s ease;
    min-width: 320px;
    max-width: 410px;
    flex: 0 0 450px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 90px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
}

.organization-card:hover {
    transform: translateY(-8px);
}

.org-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 24px;
}

.org-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Specific background images per organization card */
.organizations-carousel .organization-card:nth-child(1) {
    background-image: url('../images/cover-img-2.webp');
}
.organizations-carousel .organization-card:nth-child(2) {
    background-image: url('../images/cover-img-3.webp');
}

.organizations-carousel .organization-card:nth-child(3) {
    background-image: url('../images/cover-img-4.webp');
}

.organizations-carousel .organization-card:nth-child(4) {
    background-image: url('../images/cover-img-1.webp');
}

.organizations-carousel .organization-card:nth-child(5) {
    background-image: url('../images/cover-img-2.webp');
}

.organizations-carousel .organization-card:nth-child(6) {
    background-image: url('../images/cover-img-3.webp');
}
.organizations-carousel .organization-card:nth-child(7) {
    background-image: url('../images/cover-img-4.webp');
}
.organizations-carousel .organization-card:nth-child(8) {
    background-image: url('../images/cover-img-1.webp');
}
.organizations-carousel .organization-card:nth-child(9) {
    background-image: url('../images/cover-img-2.webp');
}
.organizations-carousel .organization-card:nth-child(10) {
    background-image: url('../images/cover-img-3.webp');
}
.organizations-carousel .organization-card:nth-child(11) {
    background-image: url('../images/cover-img-4.webp');
}
.organizations-carousel .organization-card:nth-child(12) {
    background-image: url('../images/cover-img-1.webp');
}

.org-card-content {
    position: absolute;
    left: 50%;
    /* bottom: 0;
    top: 0%; */
    top: 35%;
    transform: translate(-50%, 50%);
    width: 90%;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.25);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.org-card-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.org-card-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.org-card-logo .org-card-title {
    margin-bottom: 0;
    padding: 0.5rem 1.75rem;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.org-card-metrics {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.org-card-badge {
    min-width: 64px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2F7BFF 0%, #10B5FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
}

.org-card-badge span {
    display: inline-block;
}

.org-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.org-card-description {
    font-size: 0.95rem;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 0;
    flex-grow: 1;
    font-weight: 500;
}
.org-card-content .org-card-btn{
    position: relative;
    text-align: end;
}
.org-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    color: #000000;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.org-card-link:hover {
    background: #0041B3;
    transform: scale(1);
    color: #FFFFFF;
}

/* Slick Carousel Custom Styles for Organizations */
.organizations-carousel .slick-prev,
.organizations-carousel .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.organizations-carousel .slick-prev:hover,
.organizations-carousel .slick-next:hover {
    background: #FFFFFF;
}

.organizations-carousel .slick-prev {
    left: -25px;
}

.organizations-carousel .slick-next {
    right: -25px;
}

.organizations-carousel .slick-prev i,
.organizations-carousel .slick-next i {
    color: #001B5E;
    font-size: 1.5rem;
}

.organizations-carousel .slick-prev:before,
.organizations-carousel .slick-next:before {
    content: '';
}

.organizations-carousel .slick-dots {
    bottom: -50px;
}

.organizations-carousel .slick-dots li button:before {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.organizations-carousel .slick-dots li.slick-active button:before {
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .impact-section-title {
        font-size: 2rem;
    }
    
    .organizations-carousel {
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .organization-card {
        min-width: 320px;
        max-width: 360px;
        flex: 0 0 320px;
        height: 400px;
        padding-bottom: 80px;
    }

    .org-card-content {
        top: 32%;
        width: 88%;
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .impact-section-title {
        font-size: 1.75rem;
    }
    
    .organization-card {
        min-width: 260px;
        max-width: 300px;
        flex: 0 0 300px;
        padding-bottom: 70px;
        height: 360px;
    }

    .org-card-content {
        top: 30%;
        width: 96%;
        padding: 1rem 1.25rem;
    }
}

/* 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: 4rem 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: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}

.platform-subtitle .brand-name {
    color: #1a1a1a;
    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: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* 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;
}

/* ========================================
   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: 2rem;
        padding: 24px 0px;
    }

    .hero-video {
        max-width: 100%;
    }

    .ai-video-card,
    .ai-video-player {
        border-radius: 24px;
    }

    .ai-video-card {
        max-width: 100%;
    }

    .comparison-highlight-grid {
        grid-template-columns: 1fr;
    }

    .comparison-highlight-column.conversionbox-col,
    .comparison-highlight-column.other-col {
        padding: 1.5rem;
    }
    
    .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;
    }
    
    /* Seamless Integration Responsive */
    .seamless-title {
        font-size: 2rem;
    }
    
    .seamless-subtitle {
        font-size: 1rem;
    }
    
    .integration-flow {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .curved-arrow {
        display: none;
    }
    
    .integration-step {
        width: 100%;
        max-width: 300px;
    }
    
    .step-title {
        max-width: 200px;
        font-size: 1.2rem;
    }
    
}

@media (max-width: 767px) {
    .header {
        padding: 0.75rem 0;
        margin-bottom: 0rem;
    }
    
    .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;
    }
    
    .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 .benefits-text {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    .hero-content .rating-badge img {
        width: 50%;
        margin: 0 auto;
    }
    .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;
    }

    .comparison-highlight-card {
        padding: 1.25rem;
    }

    .comparison-highlight-column ul {
        gap: 1rem;
    }

    .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;
    }
    
}

@media (max-width: 575px) {
    .hero-section {
        padding: 1.5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
        .hero-image-wrapper {
        margin-top: 0rem;
        padding: 24px 0px;
    }
    .decorative-dots {
        width: 60px;
        height: 90px;
    }
    
    .ai-video-overlay {
        padding: 0.75rem 1rem;
        max-width: 90%;
    }
    
    .ai-video-icon {
        width: 40px;
        height: 40px;
    }
    
    .ai-video-label {
        font-size: 0.9rem;
        display: none;
    }
    
    .features-bar-section {
        padding: 0.75rem 1.25rem;
    }
    
    .features-bar {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .feature-bar-item {
        justify-content: center;
        min-width: auto;
        font-size: 0.95rem;
    }
    
    .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;
    }
    
    .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;
    }
    
    .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;
    }
    
    /* Seamless Integration Mobile */
    .seamless-integration-section {
        padding: 3rem 0;
    }
    
    .seamless-title {
        font-size: 1.75rem;
    }
    
    .seamless-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .integration-flow {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .center-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
}

/* 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: 30px 0 50px 0px;
}
.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;
}


/* ========================================
   FAQ Accordion Section
   ======================================== */

.faq-section {
    background: linear-gradient(180deg, #E8EEFF 0%, #F5F7FF 100%);
    padding: 50px 0;
    position: relative;
}

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

.faq-title .text-primary-blue {
    color: #062074;
    font-weight: 700;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: #FFFFFF;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

.faq-question:not(.collapsed) {
    background: #F8F9FF;
}

.faq-number {
    font-size: 1rem;
    font-weight: 600;
    color: #062074;
    min-width: 25px;
}

.faq-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.faq-icon {
    font-size: 0.875rem;
    color: #062074;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-question:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    transition: all 0.3s ease;
}

.faq-answer-content {
    padding: 0.5rem 1.5rem 0.5rem 3.25rem;
    font-size: 16px;
    color: #22222A;
    line-height: 1.5;
    font-weight: 500;
}

/* Smooth collapse animation */
.faq-answer.collapsing {
    transition: height 0.35s ease;
}

.faq-answer.collapse:not(.show) {
    display: none;
}

.faq-answer.collapse.show {
    display: block;
}

/* Responsive adjustments for FAQ */
@media (max-width: 991px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1rem 2.75rem;
    }
}

@media (max-width: 767px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .faq-text {
        font-size: 0.9375rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem 2.25rem;
        font-size: 0.875rem;
    }
    
    .faq-number {
        font-size: 0.9375rem;
        min-width: 20px;
    }
}
