/* ==========================================================================
   Global Styles
   ========================================================================== */
:root {
    --primary-color: #565ADD;
    --primary-dark: #4A4EC0;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --background-dark: #2A1264;
    --background-purple: #2A1264;
    --form-bg: #EFEFFE;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.1s ease;
    width: 100%;
}

/* Homepage Header Styles */
.home-page .site-header {
    background: transparent;
    transition: all 0.1s ease;
}

.home-page .site-header .navbar {
    padding: 1rem 0;
}

.home-page .site-header .navbar-brand {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* Nav Pill Container Styles */
.home-page .site-header .nav-pill-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 100px;
    padding: 0.5rem;
    z-index: 1;
    transform: translate(-50%, -50%) !important;
    width: auto;
}

.home-page .site-header .navbar-nav {
    display: flex;
    gap: 0.5rem;
}

.home-page .site-header .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.home-page .site-header .nav-link:hover {
    color: #fff !important;
}

.home-page .site-header .nav-link.active {
    color: #fff !important;
}

.home-page .site-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20%;
    right: 20%;
    height: 5px;
    background: var(--primary-color);
    border-radius: 4px 4px 0 0;
}

/* Button Styles */
.home-page .site-header .nav-buttons {
    display: flex;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.home-page .site-header.scrolled .nav-link:hover,
.home-page .site-header.scrolled .nav-link.active {
    color: #fff !important;
}

/* Mobile Menu Adjustments */
@media (max-width: 991.98px) {
    .home-page .site-header .nav-pill-container {
        position: relative !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        background: transparent;
        margin: 1rem 0;
        padding: 0;
    }
    
    .home-page .site-header .navbar-collapse {
        background: #000000;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
    }
    
    .home-page .site-header .navbar-nav {
        gap: 0.25rem;
    }
    
    .home-page .site-header .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .home-page .site-header .nav-buttons {
        margin-top: 1rem;
        flex-direction: column;
        width: 100%;
    }
    
    .home-page .site-header .nav-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

.home-page .site-header .nav-buttons .btn {
    padding: 0.525rem 1.25rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.home-page .site-header .nav-buttons .btn-outline {
    color: #000000;
    border: 2px solid #565ADD;
    background: transparent;
}

.home-page .site-header .nav-buttons .btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.home-page .site-header .nav-buttons .btn-primary {
    background: var(--primary-color);
    border: 2px solid transparent;
    color: #fff;
}

.home-page .site-header .nav-buttons .btn-primary:hover {
    background: var(--primary-dark);
}

/* Homepage Sticky Header */
.home-page .site-header.scrolled {
    background: rgba(245, 244, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-page .site-header.scrolled .navbar-brand {
    color: #000;
    font-size: 30px;
}

.home-page .site-header.scrolled .nav-link {
    color: #fff !important;
}

.home-page .site-header.scrolled .nav-link:hover,
.home-page .site-header.scrolled .nav-link.active {
    color: #fff !important;
}

.home-page .site-header.scrolled .nav-buttons .btn-outline {
    color: #000;
    border: 1px solid var(--primary-color);
}

.home-page .site-header.scrolled .nav-buttons .btn-outline:hover {
    background: rgba(86, 90, 221, 0.1);
}

/* Inner Pages Header Style */
.blog-page .site-header,
.signup-page .site-header,
.signin-page .site-header,
.enterprise-page .site-header {
    background: linear-gradient(to right, #2A1264, #1F1937);
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Add scroll behavior for inner pages */
.blog-page .site-header.scrolled,
.signup-page .site-header.scrolled,
.signin-page .site-header.scrolled,
.enterprise-page .site-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(42, 18, 100, 0.95);
    backdrop-filter: blur(10px);
}

.blog-page .site-header .navbar-brand,
.signup-page .site-header .navbar-brand,
.signin-page .site-header .navbar-brand,
.enterprise-page .site-header .navbar-brand {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
}

.blog-page .site-header .nav-link,
.signup-page .site-header .nav-link,
.signin-page .site-header .nav-link,
.enterprise-page .site-header .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.3s ease;
}

.blog-page .site-header .nav-link:hover,
.signup-page .site-header .nav-link:hover,
.signin-page .site-header .nav-link:hover,
.enterprise-page .site-header .nav-link:hover {
    color: #fff !important;
}

.blog-page .site-header .nav-link.active,
.signup-page .site-header .nav-link.active,
.signin-page .site-header .nav-link.active,
.enterprise-page .site-header .nav-link.active {
    color: #fff !important;
    position: relative;
}

.blog-page .site-header .nav-link.active::after,
.signup-page .site-header .nav-link.active::after,
.signin-page .site-header .nav-link.active::after,
.enterprise-page .site-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.blog-page .site-header .nav-buttons .btn-outline,
.signup-page .site-header .nav-buttons .btn-outline,
.signin-page .site-header .nav-buttons .btn-outline,
.enterprise-page .site-header .nav-buttons .btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    padding: 0.625rem 1.5rem;
    font-weight: 500;
    border-radius: 4px;
}

.blog-page .site-header .nav-buttons .btn-outline:hover,
.signup-page .site-header .nav-buttons .btn-outline:hover,
.signin-page .site-header .nav-buttons .btn-outline:hover,
.enterprise-page .site-header .nav-buttons .btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.blog-page .site-header .nav-buttons .btn-primary,
.signup-page .site-header .nav-buttons .btn-primary,
.signin-page .site-header .nav-buttons .btn-primary,
.enterprise-page .site-header .nav-buttons .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.625rem 1.5rem;
    font-weight: 500;
    border-radius: 4px;
    color: #fff;
}

.blog-page .site-header .nav-buttons .btn-primary:hover,
.signup-page .site-header .nav-buttons .btn-primary:hover,
.signin-page .site-header .nav-buttons .btn-primary:hover,
.enterprise-page .site-header .nav-buttons .btn-primary:hover {
    background: var(--primary-dark);
}

/* Mobile Menu Styles for Inner Pages */
@media (max-width: 991.98px) {
    .blog-page .site-header .navbar-collapse,
    .signup-page .site-header .navbar-collapse,
    .signin-page .site-header .navbar-collapse,
    .enterprise-page .site-header .navbar-collapse {
        background: #2A1264;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .blog-page .site-header .navbar-toggler,
    .signup-page .site-header .navbar-toggler,
    .signin-page .site-header .navbar-toggler,
    .enterprise-page .site-header .navbar-toggler {
        /* border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.5rem; */
        color: #fff;
    }

    .blog-page .site-header .navbar-toggler-icon,
    .signup-page .site-header .navbar-toggler-icon,
    .signin-page .site-header .navbar-toggler-icon,
    .enterprise-page .site-header .navbar-toggler-icon {
        /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); */
    }
}

/* Adjust blog hero section padding to account for fixed header */
.blog-hero {
    padding-top: 10rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    background: url('../images/home-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-text {
    margin-top: 2rem;
    /*padding-bottom: 2rem;*/
}

.hero-phone {
    margin-top: 2rem;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 100%;
}

.phone-mockup {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
    z-index: 1;
    top: 35px;
}

.phone-frame {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    margin-bottom: -2px;
    vertical-align: bottom;
    display: block;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 18, 100, 0.2) 0%, rgba(72, 27, 165, 0.2) 100%);
    z-index: -2;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-gradient {
    background: #8A8DF9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .lead {
    font-size: 1.75rem;
    color: #000;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Grid Pattern Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    pointer-events: none;
}

.hero-text {
    text-align: center;
    /*margin-bottom: 1rem;*/
}

.hero-phone {
    margin: 0 auto;
    max-width: 660px;
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.phone-wave-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180px; /* Fixed height for the wave line */
    z-index: 0;
    overflow: hidden;
}

.phone-wave-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    right: -20%;
    height: 100%;
    background-image: url('../images/animated-music.gif');
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
    opacity: 1;
}

.phone-mockup {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.phone-frame {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: -5px; /* Remove any gap at bottom */
}

.phone-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    text-align: center;
    z-index: 3;
    border-radius: 30px;
    padding: 2rem;
}

.phone-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.phone-content p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}

.phone-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-form .form-control {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #F8F9FE;
    font-size: 0.9375rem;
    text-align: center;
}

.phone-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.btn-speak {
    padding: 0.875rem;
    border-radius: 8px;
    background: linear-gradient(90deg, #565ADD 20%, #2E3077 100%);
    color: #fff;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}
.btn-speak:hover {
    color: #fff;
    background: linear-gradient(90deg, #2E3077 20%, #565ADD 100%);
}


.wave-pattern-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image: url('../images/wave-pattern.gif');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #fff;
    overflow: hidden;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    background: linear-gradient(135deg, #2A1264 0%, #481BA5 100%);
    margin-bottom: 2rem;
}

.about-image .main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    bottom: -30px;
    right: -45px;
    max-width: 380px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-overlay:hover {
    transform: translateY(-5px);
}

.video-overlay .video-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding-top: 1rem;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 24px;
}

.section-label .line {
    width: 32%;
    height: 2px;
    background: var(--text-dark);
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header .text-primary {
    color: var(--primary-color) !important;
}

.subtitle {
    font-size: 1.5rem;
    color: #5E5D5D;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-buttons .btn {
    padding: .8rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    font-size: 1rem;
}

.cta-buttons .btn-outline {
    border: 2px solid var(--primary-color);
    color: #000000;
    background: transparent;
}

.cta-buttons .btn-outline:hover {
    background: rgba(86, 90, 221, 0.1);
}

.cta-buttons .btn-primary {
    background: var(--primary-color);
    border: 2px solid transparent;
    color: #fff;
}

.cta-buttons .btn-primary:hover {
    background: var(--primary-dark);
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #2B1C50 20%, #565ADD 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.serve-container-flex-top {
    z-index: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.serve-container-flex-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.industries-section .section-label {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    color: #fff;
    font-weight: 500;
    font-size: 28px;
}

.industries-section .section-label .line {
    width: 180px;
    height: 3px;
    background: #fff;
}

.industries-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #fff;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.5;
    position: relative;
}
.feature-list li:before {
    content: '';
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: url('../images/healthcare-points.svg') no-repeat;
    background-size: contain;
}

.feature-list .star-icon {
    color: #fff;
    font-size: 1.25rem;
    opacity: 0.9;
}

.industries-list {
    position: relative;
    padding: 0 0 2rem 5rem;
    background: transparent;
}

.industries-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(139, 141, 255, 0.1) 0%, #8B8DFF 50%, rgba(139, 141, 255, 0.1) 100%);
    border-radius: 2px;
}

.industries-list h3 {
    color: #8B8DFF;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.industries-list h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.industries-list ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.industries-list li {
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-weight: 500;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 8px;
}

.industries-list li:hover {
    color: var(--primary-color);
}

.industries-list li.active {
    color: var(--primary-color);
    font-weight: 700;
}

.industries-list li.active::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    width: 2.5rem;
    height: 3px;
    background: #8B8DFF;
    transform: translateY(-50%);
}

.industries-image {
    margin-top: 4rem;
    border-radius: 24px;
    overflow: hidden;
}

.industries-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.features-section h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.features-section h2 .text-primary {
    color: #565ADD !important;
}

.features-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-left: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 24px;
    height: 100%;
    background: rgba(139, 141, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.feature-card:hover {
    background: linear-gradient(135deg, #2A1264 0%, #481BA5 100%);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: #fff;
}

.features-section .btn-primary {
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    background: #565ADD;
    border: none;
    color: #fff;
    transition: background-color 0.3s ease;
}

.features-section .btn-primary:hover {
    background: #7779FF;
}
.blog-hero .btn-primary {
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    background: #565ADD;
    border: none;
    color: #fff;
    transition: background-color 0.3s ease;
}
/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .features-section h2 {
        font-size: 3rem;
    }
    
    .features-grid {
        padding-left: 1rem;
    }
}

@media (max-width: 991.98px) {
    .features-section h2{
        font-size: 2rem
    }
    
    .features-description {
        font-size: 1.125rem;
    }
    
    .features-grid {
        padding-left: 0;
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .features-section {
        padding: 2rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.video-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.video-section h2 .text-primary {
    color: var(--primary-color) !important;
}

.video-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.video-slider {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 4rem 0;
}

.video-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 2rem 0;
    min-height: 500px;
}

.video-slide {
    position: relative;
    flex: 0 0 auto;
    transition: all 0.5s ease;
    /*opacity: 0.4;*/
    transform: scale(0.8);
    width: 640px;
}

.video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.video-slide-prev,
.video-slide-next {
    width: 480px;
    z-index: 1;
}

.video-slide-current {
    opacity: 1;
    transform: scale(1.1);
    z-index: 2;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.slider-nav.prev {
    left: calc(50% - 600px);
}

.slider-nav.next {
    right: calc(50% - 600px);
}

/* Responsive adjustments */
@media (max-width: 1599.98px) {
    .video-slide {
        width: 560px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        width: 420px;
    }
    
    .slider-nav.prev {
        left: calc(50% - 520px);
    }
    
    .slider-nav.next {
        right: calc(50% - 520px);
    }
}

@media (max-width: 1399.98px) {
    .video-slide {
        width: 480px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        width: 360px;
    }
    
    .slider-nav.prev {
        left: calc(50% - 460px);
    }
    
    .slider-nav.next {
        right: calc(50% - 460px);
    }
}

@media (max-width: 1199.98px) {
    .video-slide {
        width: 400px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        width: 300px;
    }
    
    .slider-nav.prev {
        left: calc(50% - 380px);
    }
    
    .slider-nav.next {
        right: calc(50% - 380px);
    }
}

@media (max-width: 991.98px) {
    .video-section h2 {
        font-size: 2.75rem;
    }
    
    .video-slide {
        width: 360px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        width: 270px;
    }
    
    .slider-nav.prev {
        left: calc(50% - 340px);
    }
    
    .slider-nav.next {
        right: calc(50% - 340px);
    }
}

@media (max-width: 767.98px) {
    .video-section {
        padding: 2rem 0;
    }
    
    .video-section h2 {
        font-size: 2.25rem;
    }
    
    .video-description {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .video-slide {
        width: 300px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        width: 225px;
    }
    
    .slider-nav.prev {
        left: calc(50% - 280px);
    }
    
    .slider-nav.next {
        right: calc(50% - 280px);
    }
}

@media (max-width: 575.98px) {
    .video-slide {
        width: 280px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        display: none;
    }
    
    .slider-nav.prev {
        left: 1rem;
    }
    
    .slider-nav.next {
        right: 1rem;
    }
}

/* Integrations Section */
.integrations-section {
    padding: 6rem 0;
    background: #fff;
}

.integrations-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.integrations-section h2 .text-primary {
    color: var(--primary-color) !important;
}

.integration-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.1);
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.1);
}

.integration-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.integration-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 1rem;
    }
}

@media (max-width: 767.98px) {
    .integrations-section {
        padding: 2rem 0;
    }

    .integrations-section h2 {
        font-size: 2.5rem;
    }

    .integration-description {
        font-size: 1.125rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .integration-card {
        padding: 1.5rem;
    }

    .integration-logo {
        height: 32px;
    }
}

@media (max-width: 575.98px) {
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .integration-card {
        padding: 1rem;
    }

    .integration-logo {
        height: 28px;
    }

    .integration-card h3 {
        font-size: 0.875rem;
    }
}



/* ==========================================================================
   Blog Page Styles
   ========================================================================== */
.blog-page {
    background-color: #fff;
}

/* Blog Hero Section */
.blog-hero {
    padding: 12rem 0 0;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

.blog-hero h1 {
    font-size: 45px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-hero .text-primary {
    color: var(--primary-color) !important;
}

.blog-hero .lead {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.blog-hero .hero-image {
    position: relative;
    z-index: 1;
}

.blog-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Blog Grid Section */
.blog-grid {
    padding: 4rem 0 6rem;
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 250px;
}

.blog-featured-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.blog-image img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.read-more {
    margin-top: auto;
    align-self: flex-end;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.read-more .circle-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    transform: rotate(325deg);
    transition: all 0.3s ease;
}

.read-more:hover .circle-arrow {
    background: var(--primary-dark);
    transform: translateX(5px);
}

.read-more svg {
    width: 20px;
    height: 20px;
}

.btn-view-more {
    padding: .8rem 2.5rem;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    color: #000;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background: rgba(86, 90, 221, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.header-floating-circle-left {
    position: absolute;
    bottom: 0;
    left: 0;
}
.header-floating-circle-right {
    position: absolute;
    bottom: 0;
    right: 0;
}
.main-inner-blog-detail-container {
    background: #FAFAFB;
    padding: 20px;
}
/*.feature-card.card-safegaurde {
    height: 230px;
}*/
.feature-card ul {
    padding: 5px 18px;
    margin: 0;
}
.feature-card ul li {
    color: var(--text-light);
    margin-top: 10px;
}
.feature-card:hover ul li {
    color: #fff;
}
/* Blog Page Responsive Styles */
@media (max-width: 1399.98px) {
    .blog-hero h1 {
        font-size: 3.25rem;
    }
}

@media (max-width: 1199.98px) {
    .blog-hero h1 {
        font-size: 3rem;
    }

    .blog-content h2 {
        font-size: 1.35rem;
    }
}

@media (max-width: 991.98px) {
    .blog-hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }

    .blog-hero h1 {
        font-size: 2.75rem;
    }

    .blog-hero .hero-image {
        margin-top: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .blog-hero {
        padding: 8rem 0 2rem;
    }

    .blog-hero h1 {
        font-size: 2.25rem;
    }

    .blog-hero .lead {
        font-size: 1.125rem;
    }

    .blog-grid {
        padding: 3rem 0 4rem;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .blog-content h2 {
        font-size: 1.15rem;
    }

    .blog-meta {
        gap: 1rem;
        font-size: 0.8125rem;
    }
    
}

@media (max-width: 575.98px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero .lead {
        font-size: 1rem;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-content h2 {
        font-size: 1.1rem;
    }

    .btn-view-more {
        padding: 0.875rem 2rem;
    }
}

/* ==========================================================================
   Blog Detail Page Styles
   ========================================================================== */
.blog-detail-content {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: #fff;
}

.blog-featured-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-header {
    margin: 0 auto 2rem;
}

.blog-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Blog Meta Section */
.blog-meta-section {
    margin-bottom: 3rem;
}

.blog-meta {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.blog-meta .date {
    font-size: 1.125rem;
    color: #000;
}
.blog-meta-left span {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}
.blog-meta-left span:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    background: #c6c6c6;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}
.blog-meta-left span:last-child:after {
    display: none;
}
.author-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.blog-meta .author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
ul.blog-list li {
    position: relative;
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.5;
}
ul.blog-list li:before {
    content: '';
    position: relative;
    left: 0;
    top: 7px;
    bottom: 0;
    width: 20px;
    height: 15px;
    background: url(../images/arror-sub-inner.svg) no-repeat;
    background-size: contain;
}

.author-details h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.author-details h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.author-details p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    margin: 0;
}
.center-slider .slick-slide{
    background-color: #b32532;
    color: #FFF;
    height: 450px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
    overflow: hidden;
  }
  .center-slider .slick-slide,
  .center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] {
    transform: scale(0.8, 0.8);
    transition: all 0.4s ease-in-out;
  }
  
  /* Active center slide (You can change anything here for cenetr slide)*/
  .center-slider .slick-center,
  .center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] {
    transform: scale(1.1);
    background-color: #000000;
  }
  .center-slider .slick-current.slick-active{
    transform: scale(1.1);
    background-color: #000000;
  }
  
  .slick-next, .slick-prev{
    z-index: 5;
  }
  .slick-next{
    right: 15px;
  }
  .slick-prev{
    left: 15px;
  }
  .slick-next:before, .slick-prev:before{
    color: #000;
    font-size: 26px;
  }
  .blog-meta.blog-cst-bg-meta {
    background: #EBECFF;
    padding: 20px 20px;
    border-radius: 10px;
  }
  .blog-share {
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.share-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
a.share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    border: 1px solid #000;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
a.share-btn i {
    color: #000;
}
.author-box {
    border: 2px solid #22269e;
    border-radius: 20px;
    margin-top: 40px;
    background: #EBECFF;
    padding: 40px 30px;
}
.author-info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}
.author-info img.author-avatar {
    border-radius: 100%;
}
.blog-header h1 .text-primary {
    color: #565add !important;
  }
  .blog-page .site-header .nav-pill-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 100px;
    padding: 0.5rem;
    z-index: 1;
    transform: translate(-50%, -50%) !important;
    width: auto;
}
.blog-page .site-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20%;
    right: 20%;
    height: 5px;
    background: var(--primary-color);
    border-radius: 4px 4px 0 0;
}
/* Blog Detail Page Responsive Styles */
@media (max-width: 1199.98px) {
    .blog-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .blog-detail-content {
        padding-top: 5rem;
    }

    .blog-header h1 {
        font-size: 2.5rem;
    }

    .blog-meta {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .blog-detail-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

    .meta-left,
    .meta-right {
        width: 100%;
        justify-content: center;
    }

    .meta-right {
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 575.98px) {
    .blog-header h1 {
        font-size: 1.75rem;
    }

    .blog-meta {
        padding: 1rem;
    }

    .meta-right {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-featured-image {
        margin-bottom: 2rem;
        border-radius: 16px;
    }
} 

/* Why Choose CleverAI Section */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #2B1C50 20%, #565ADD 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-image {
    position: relative;
    padding-right: 2rem;
}

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

.why-choose-content {
    padding-left: 2rem;
}

.why-choose-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 4.5rem;
    color: #fff;
}

.why-choose-features {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1.3rem;
}

.feature-item {
    position: relative;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-box h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.feature-box h3 i {
    color: #fff;
    font-size: .5rem;
    font-weight: 500;
    margin: 0;
    background: #fff;
    border-radius: 100%;
}

/* Responsive styles for Why Choose section */
@media (max-width: 1199.98px) {
    .why-choose-title {
        font-size: 3rem;
    }
    .feature-box h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 4rem 0;
    }
    .why-choose-image {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    .why-choose-content {
        padding-left: 0;
        text-align: center;
    }
    .why-choose-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .why-choose-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    .why-choose-title {
        font-size: 1.75rem;
    }
    .feature-box {
        padding: 1rem;
    }
    .feature-box h3 {
        font-size: 1rem;
    }
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.video-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.video-section h2 .text-primary {
    color: var(--primary-color) !important;
}

.video-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.video-slider {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 4rem 0;
}

.video-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 2rem 0;
    min-height: 500px;
}

.video-slide {
    position: relative;
    flex: 0 0 auto;
    transition: all 0.5s ease;
    /*opacity: 0.4;*/
    transform: scale(0.8);
    width: 640px;
}

.video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.video-slide-prev,
.video-slide-next {
    width: 480px;
    z-index: 1;
}

.video-slide-current {
    opacity: 1;
    transform: scale(1.1);
    z-index: 2;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.slider-nav.prev {
    left: calc(50% - 600px);
}

.slider-nav.next {
    right: calc(50% - 600px);
}

/* Responsive adjustments */
@media (max-width: 1599.98px) {
    .video-slide {
        width: 560px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        width: 420px;
    }
    
    .slider-nav.prev {
        left: calc(50% - 520px);
    }
    
    .slider-nav.next {
        right: calc(50% - 520px);
    }
}

@media (max-width: 1399.98px) {
    .video-slide {
        width: 480px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        width: 360px;
    }
    
    .slider-nav.prev {
        left: calc(50% - 460px);
    }
    
    .slider-nav.next {
        right: calc(50% - 460px);
    }
}

@media (max-width: 1199.98px) {
    .video-slide {
        width: 400px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        width: 300px;
    }
    
    .slider-nav.prev {
        left: calc(50% - 380px);
    }
    
    .slider-nav.next {
        right: calc(50% - 380px);
    }
}

@media (max-width: 991.98px) {
    .video-section h2 {
        font-size: 2.75rem;
    }
    
    .video-slide {
        width: 360px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        width: 270px;
    }
    
    .slider-nav.prev {
        left: calc(50% - 340px);
    }
    
    .slider-nav.next {
        right: calc(50% - 340px);
    }
    .home-page .site-header.scrolled .nav-buttons .btn-outline {
        color: #fff;
    }
}

@media (max-width: 767.98px) {
    .video-section {
        padding: 4rem 0;
    }
    
    .video-section h2 {
        font-size: 2rem;
    }
    
    .video-description {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .video-slide {
        width: 300px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        width: 225px;
    }
    
    .slider-nav.prev {
        left: calc(50% - 280px);
    }
    
    .slider-nav.next {
        right: calc(50% - 280px);
    }
    
}

@media (max-width: 575.98px) {
    .video-slide {
        width: 280px;
    }
    
    .video-slide-prev,
    .video-slide-next {
        display: none;
    }
    
    .slider-nav.prev {
        left: 1rem;
    }
    
    .slider-nav.next {
        right: 1rem;
    }
}

/* Integrations Section */
.integrations-section {
    padding: 6rem 0;
    background: #fff;
}

.integrations-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.integrations-section h2 .text-primary {
    color: var(--primary-color) !important;
}

.integration-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-height: 202px;
    box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.1);
}

.integration-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.integration-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 1rem;
    }
}

@media (max-width: 767.98px) {
    .integrations-section {
        padding: 4rem 0;
    }

    .integrations-section h2 {
        font-size: 2.5rem;
    }

    .integration-description {
        font-size: 1.125rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .integration-card {
        padding: 1.5rem;
    }

    .integration-logo {
        height: 32px;
    }
}

@media (max-width: 575.98px) {
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .integration-card {
        padding: 1rem;
    }

    .integration-logo {
        height: 28px;
    }

    .integration-card h3 {
        font-size: 0.875rem;
    }
}

/* Footer */
.site-footer {
    position: relative;
    background: url('../images/footer-bg-img.png') no-repeat center top;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.footer-wave {
    position: relative;
    height: 180px;
    margin-bottom: -80px;
    overflow: visible;
    z-index: 2;
    text-align: center;
}

.footer-wave-img {
    height: 180px;
    width: auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    position: relative;
    padding: 6rem 0 1rem;
    background-size: 100px 100px;
}

.footer-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
    text-align: left;
}
.footer-wave-bg {
    background-image: url("../images/footer-top-music.png");
    background-size: contain;
    background-repeat: repeat;
    background-position: top;
    height: 100px;
    width: 100%;
    position: relative;
    top: 5px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer-content {
        padding: 5rem 0 2rem;
    }

    .footer-content h2 {
        font-size: 2.25rem;
    }

    .footer-description {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }

    .footer-links {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .footer-wave {
        height: 120px;
        margin-bottom: -60px;
    }

    .footer-wave-img {
        height: 120px;
    }

    .footer-content {
        padding: 4rem 0 2rem;
    }

    .footer-content h2 {
        font-size: 2rem;
    }

    .footer-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .footer-links {
        gap: 1rem;
        margin-bottom: 2.5rem;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .footer-bottom p {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .footer-wave {
        height: 100px;
        margin-bottom: -50px;
    }

    .footer-wave-img {
        height: 100px;
    }

    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    .footer-content h2 {
        font-size: 1.75rem;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1399.98px) {
    .hero-section h1 {
        font-size: 4rem;
    }

    .hero-section .lead {
        font-size: 1.5rem;
    }

    .hero-phone {
        max-width: 580px;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .integration-grid {
        gap: 20px;
    }
}

@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }

    .hero-section .lead {
        font-size: 1.35rem;
    }

    .hero-phone {
        max-width: 520px;
    }

    .section-header h2 {
        font-size: 2.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .navbar-nav {
        margin: 0 1rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 6rem 0 4rem;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section .lead {
        font-size: 1.25rem;
    }

    .hero-phone {
        max-width: 460px;
    }

    .animated-music-bg {
        width: 120%;
        height: 15%;
    }

    .navbar-collapse {
        background: rgba(42, 18, 100, 0.95);
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
    }

    .navbar-nav {
        margin: 1rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }

    .nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .nav-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 5rem 0 3rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }

    .hero-phone {
        max-width: 380px;
    }

    .animated-music-bg {
        width: 110%;
        height: 12%;
    }

    .phone-content h2 {
        font-size: 1.5rem;
    }

    .phone-content p {
        font-size: 0.9rem;
    }

    .phone-form .form-control {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .integration-card {
        padding: 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-wave-bg {
        height: 60px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 4rem 0 2rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-phone {
        max-width: 320px;
    }

    .animated-music-bg {
        width: 100%;
        height: 10%;
    }

    .phone-content {
        width: 90%;
    }

    .phone-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .phone-content p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .phone-form {
        gap: 0.5rem;
    }

    .phone-form .form-control {
        padding: 0.625rem;
    }

    .btn-speak {
        padding: 0.625rem;
        font-size: 0.875rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .integration-card {
        padding: 1rem;
    }

    .integration-card h3 {
        font-size: 0.875rem;
    }

    .footer-wave-bg {
        height: 40px;
    }

    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    .footer-content h2 {
        font-size: 1.75rem;
    }

    .footer-description {
        font-size: 0.875rem;
    }
}

/* Swiper Slider Responsive */
@media (max-width: 991.98px) {
    .swiper {
        width: 90%;
    }

    .swiper-slide {
        width: 260px;
        height: 360px;
    }
}

@media (max-width: 767.98px) {
    .swiper {
        width: 95%;
    }

    .swiper-slide {
        width: 240px;
        height: 320px;
    }
}

@media (max-width: 575.98px) {
    .swiper {
        width: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .swiper-slide {
        width: 220px;
        height: 300px;
    }
}

/* ==========================================================================
   Sign Up Page Styles (signup.html)
   ========================================================================== */
.signup-page {
    min-height: 100vh;
    background-color: #fff;
}

.bg-section {
    background: linear-gradient(to bottom, rgba(42, 18, 100, 0.85), rgba(72, 27, 165, 0.85)), url('../images/authenticate-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(72, 27, 165, 0.2) 0%, rgba(42, 18, 100, 0.4) 100%);
    pointer-events: none;
}

.content-wrapper {
    padding: 6rem;
    position: relative;
    z-index: 1;
}

.content-wrapper h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-wrapper p {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Form Section Styles */
.form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 4rem 2rem;
    background: #F9FAFB;
    position: relative;
}

.back-button {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F3F4F6;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.back-button:hover {
    background: #E5E7EB;
    color: var(--text-dark);
    transform: translateX(-2px);
}

.form-wrapper {
    width: 100%;
    max-width: 70%;
    padding: 2.5rem;
    background: var(--form-bg);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.signup-form-container h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.form-label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9375rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    background: #fff;
    width: 100%;
    font-size: 0.9375rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
}

/* Mobile Number Input Styling */
.input-group {
    display: flex;
    gap: 0.75rem;
}

.input-group .country-code {
    flex: 0 0 auto;
    width: auto;
    min-width: 100px;
}

.input-group .form-control {
    flex: 1;
}

/* Remove Bootstrap's default input group styling */
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.input-group > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.signup-btn {
    background: var(--primary-color);
    border: none;
    padding: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    color: white;
    font-size: 0.9375rem;
    transition: background-color 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.signup-btn:hover {
    background: var(--primary-dark);
}

.login-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-link:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .content-wrapper {
        padding: 4rem 2rem;
    }
    
    .content-wrapper h1 {
        font-size: 3.5rem;
    }
    
    .content-wrapper h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .content-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .content-wrapper h1 {
        font-size: 3rem;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .back-button {
        top: 1rem;
        left: 1rem;
    }
}

/* ==========================================================================
   Sign In Page Styles (signin.html)
   ========================================================================== */
.signin-page {
    min-height: 100vh;
    background-color: #fff;
}



.signin-form-container h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.signin-btn {
    background: var(--primary-color);
    border: none;
    padding: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    color: white;
    font-size: 0.9375rem;
    transition: background-color 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.signin-btn:hover {
    background: var(--primary-dark);
}

.signup-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Verification Page Styles (get-code.html)
   ========================================================================== */
.verify-page .form-wrapper {
    margin-top: -2rem;
}

.verify-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.otp-inputs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.otp-input {
    width: 3.5rem !important;
    height: 3.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0;
    border-radius: 0.5rem;
}

.otp-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

.verify-btn {
    background: var(--primary-color);
    border: none;
    padding: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    margin-top: 1rem;
    color: white;
    font-size: 0.9375rem;
    transition: background-color 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.verify-btn:hover {
    background: var(--primary-dark);
}

.resend-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.resend-link:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .otp-inputs {
        gap: 0.5rem;
    }

    .otp-input {
        width: 3rem !important;
        height: 3rem;
        font-size: 1.125rem;
    }

    .verify-form-container h2 {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Enterprise Page Styles (task-sales.html)
   ========================================================================== */
.enterprise-page .form-wrapper {
    padding: 2.5rem;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

.enterprise-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.enterprise-form-container .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: block;
}

.enterprise-form-container .form-text {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Custom Radio Buttons */
.radio-group {
    width: 100%;
}

.custom-radio {
    padding: 1rem 1.25rem;
    margin: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    position: relative;
}

.custom-radio:not(:last-child) {
    margin-bottom: 0.75rem;
}

.custom-radio:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.custom-radio .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    border-color: #D1D5DB;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    margin-left: -0.5em;
}

.custom-radio .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-radio .form-check-input:checked ~ .form-check-label {
    color: var(--primary-color);
}

.custom-radio .form-check-label {
    padding-left: 0.875rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.5;
    display: block;
    width: 100%;
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Form Section Spacing */
.enterprise-form-container .mb-4 {
    margin-bottom: 2rem !important;
}

.enterprise-form-container .form-label {
    margin-bottom: 1rem;
}

/* Agency Question Section */
.enterprise-form-container .form-text {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

/* Call Volume Section */
.enterprise-form-container .radio-group + .form-text {
    margin-top: 0.75rem;
}

/* Form Controls */
.enterprise-form-container .form-control,
.enterprise-form-container .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    background-color: #fff;
    width: 100%;
}

.enterprise-form-container .form-control:focus,
.enterprise-form-container .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.enterprise-form-container .input-group {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.enterprise-form-container .input-group .country-code {
    flex: 0 0 auto;
    width: auto;
    min-width: 100px;
}

.enterprise-form-container .input-group .form-control {
    flex: 1;
}

/* Submit Button */
.submit-btn {
    background: var(--primary-color);
    border: none;
    padding: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.9375rem;
    transition: background-color 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .enterprise-page .form-wrapper {
        padding: 2rem;
        max-width: 100%;
    }

    .enterprise-form-container h2 {
        font-size: 1.75rem;
    }

    .radio-group {
        padding: 0.375rem 1rem;
    }

    .custom-radio {
        padding: 0.875rem 1rem;
    }

    .custom-radio:not(:last-child) {
        margin-bottom: 0.5rem;
    }

    .form-section {
        padding: 3rem 1.5rem;
    }

    .enterprise-form-container .mb-4 {
        margin-bottom: 1.75rem !important;
    }
}

@media (max-width: 576px) {
    .enterprise-page .form-wrapper {
        padding: 1.5rem;
    }

    .radio-group {
        padding: 0.25rem 0.75rem;
    }

    .custom-radio {
        padding: 0.75rem 0.875rem;
    }

    .custom-radio:not(:last-child) {
        margin-bottom: 0.375rem;
    }

    .form-section {
        padding: 2rem 1rem;
    }

    .enterprise-form-container .mb-4 {
        margin-bottom: 1.5rem !important;
    }
}

/* ==========================================================================
   Blog Page Styles
   ========================================================================== */
.blog-page {
    background-color: #fff;
}

/* Blog Hero Section */
.blog-hero {
    padding: 12rem 0 0;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

.blog-hero h1 {
    font-size: 45px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-hero .text-primary {
    color: var(--primary-color) !important;
}

.blog-hero .lead {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.blog-hero .hero-image {
    position: relative;
    z-index: 1;
}

.blog-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Blog Grid Section */
.blog-grid {
    padding: 4rem 0 6rem;
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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



.blog-image img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}
.blog-image.blog-img-thumbnail img {
  height: 332px;
}

.read-more {
    margin-top: auto;
    align-self: flex-end;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.read-more .circle-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    transform: rotate(325deg);
    transition: all 0.3s ease;
}

.read-more:hover .circle-arrow {
    background: var(--primary-dark);
    transform: translateX(5px);
}

.read-more svg {
    width: 20px;
    height: 20px;
}

.btn-view-more {
    padding: .8rem 2.5rem;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    color: #000;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background: rgba(86, 90, 221, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.header-floating-circle-left {
    position: absolute;
    bottom: 0;
    left: 0;
}
.header-floating-circle-right {
    position: absolute;
    bottom: 0;
    right: 0;
}
.main-inner-blog-detail-container {
    background: #FAFAFB;
    padding: 20px;
}

/* Blog Page Responsive Styles */
@media (max-width: 1399.98px) {
    .blog-hero h1 {
        font-size: 3.25rem;
    }
}

@media (max-width: 1199.98px) {
    .blog-hero h1 {
        font-size: 3rem;
    }

    .blog-content h2 {
        font-size: 1.35rem;
    }
}

@media (max-width: 991.98px) {
    .blog-hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }

    .blog-hero h1 {
        font-size: 2.75rem;
    }

    .blog-hero .hero-image {
        margin-top: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h2 {
        font-size: 1.25rem;
    }
    .blog-image.blog-img-thumbnail img {
        height: 100%
    }
}

@media (max-width: 767.98px) {
    .blog-hero {
        padding: 8rem 0 2rem;
    }

    .blog-hero h1 {
        font-size: 2.25rem;
    }

    .blog-hero .lead {
        font-size: 1.125rem;
    }

    .blog-grid {
        padding: 3rem 0 4rem;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .blog-content h2 {
        font-size: 1.15rem;
    }

    .blog-meta {
        gap: 1rem;
        font-size: 0.8125rem;
    }
    .blog-image.blog-img-thumbnail img {
        height: 100%
    }
}

@media (max-width: 575.98px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero .lead {
        font-size: 1rem;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-content h2 {
        font-size: 1.1rem;
    }

    .btn-view-more {
        padding: 0.875rem 2rem;
    }
    .blog-image.blog-img-thumbnail img {
        height: 100%
    }
}

/* ==========================================================================
   Blog Detail Page Styles
   ========================================================================== */
.blog-detail-content {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: #fff;
}

.blog-featured-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-header {
    margin: 0 auto 2rem;
}

.blog-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Blog Meta Section */
.blog-meta-section {
    margin-bottom: 3rem;
}

.blog-meta {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.blog-meta .date {
    font-size: 1.125rem;
    color: #000;
}
.blog-meta-left span {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}
.blog-meta-left span:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    background: #c6c6c6;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}
.blog-meta-left span:last-child:after {
    display: none;
}
.author-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.blog-meta .author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
ul.blog-list li {
    position: relative;
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.5;
}
ul.blog-list li:before {
    content: '';
    position: relative;
    left: 0;
    top: 7px;
    bottom: 0;
    width: 20px;
    height: 15px;
    background: url(../images/arror-sub-inner.svg) no-repeat;
    background-size: contain;
}

.author-details h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.author-details h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.author-details p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    margin: 0;
}
.center-slider .slick-slide{
    background-color: #b32532;
    color: #FFF;
    height: 450px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
    overflow: hidden;
  }
  .center-slider .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .center-slider .slick-slide,
  .center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] {
    transform: scale(0.8, 0.8);
    transition: all 0.4s ease-in-out;
  }
  
  /* Active center slide (You can change anything here for cenetr slide)*/
  .center-slider .slick-center,
  .center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] {
    transform: scale(1.1);
    background-color: #000000;
  }
  .center-slider .slick-current.slick-active{
    transform: scale(1.1);
    background-color: #000000;
  }
  
  .slick-next, .slick-prev{
    z-index: 5;
  }
  .slick-next{
    right: 15px;
  }
  .slick-prev{
    left: 15px;
  }
  .slick-next:before, .slick-prev:before{
    color: #000;
    font-size: 26px;
  }
  .blog-meta.blog-cst-bg-meta {
    background: #EBECFF;
    padding: 20px 20px;
    border-radius: 10px;
  }
  .blog-share {
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.share-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
a.share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    border: 1px solid #000;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
a.share-btn i {
    color: #000;
}
.author-box {
    border: 2px solid #22269e;
    border-radius: 20px;
    margin-top: 40px;
    background: #EBECFF;
    padding: 40px 30px;
}
.author-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
  .blog-header h1 .text-primary {
    color: #565add !important;
  }
  .blog-page .site-header .nav-pill-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 100px;
    padding: 0.5rem;
    z-index: 1;
    transform: translate(-50%, -50%) !important;
    width: auto;
}
.blog-page .site-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20%;
    right: 20%;
    height: 5px;
    background: var(--primary-color);
    border-radius: 4px 4px 0 0;
}
/* Blog Detail Page Responsive Styles */
@media (max-width: 1199.98px) {
    .blog-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .blog-detail-content {
        padding-top: 5rem;
    }

    .blog-header h1 {
        font-size: 2.5rem;
    }

    .blog-meta {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .blog-detail-content {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: row;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }
    .blog-text ul {
        padding-left: 20px;
    }
    .blog-share {
        flex-direction: column;
        gap: 15px;
    }
    .share-text {
        text-align: center;
    }
    .author-info {
        flex-direction: column;
    }
    .author-details {
        text-align: center;
    }
    .meta-left,
    .meta-right {
        width: 100%;
        justify-content: center;
    }

    .meta-right {
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 575.98px) {
    .blog-header h1 {
        font-size: 1.75rem;
    }

    .blog-meta {
        padding: 1rem;
    }

    .meta-right {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-featured-image {
        margin-bottom: 2rem;
        border-radius: 16px;
    }
} 

/* Why Choose CleverAI Section */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #2B1C50 20%, #565ADD 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-image {
    position: relative;
    padding-right: 2rem;
}

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

.why-choose-content {
    padding-left: 2rem;
}

.why-choose-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 4.5rem;
    color: #fff;
}

.why-choose-features {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1.3rem;
}

.feature-item {
    position: relative;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-box h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.feature-box h3 i {
    color: #fff;
    font-size: .5rem;
    font-weight: 500;
    margin: 0;
    background: #fff;
    border-radius: 100%;
}

/* Responsive styles for Why Choose section */
@media (max-width: 1199.98px) {
    .why-choose-title {
        font-size: 3rem;
    }
    .feature-box h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 4rem 0;
    }
    .why-choose-image {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    .why-choose-content {
        padding-left: 0;
        text-align: center;
    }
    .why-choose-title {
        font-size: 2.5rem;
    }
    .why-choose-image {
        width: 70%;
        margin: 0 auto;
    }
    .why-choose-content {
        margin-top: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-choose-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    .why-choose-title {
        font-size: 1.75rem;
    }
    .feature-box {
        padding: 1rem;
    }
    .feature-box h3 {
        font-size: 1rem;
    }
}

/* Expert Engineers Section */
.expert-engineers-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #2B1C50 20%, #565ADD 100%);
    overflow: hidden;
    position: relative;
    margin-bottom: 100px;
}

.expert-engineers-content {
    position: relative;
    z-index: 2;
}

.expert-engineers-text {
    color: #ffffff;
    padding-right: 30px;
}

.expert-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.expert-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.expert-cta-btn {
    background-color: #ffffff;
    color: #000;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.expert-cta-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.expert-engineers-image {
    position: relative;
    text-align: right;
}

.expert-engineers-image img {
    max-width: 100%;
    height: auto;
}

.expert-banner {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 50%;
    z-index: 1;
}

.expert-banner img {
    width: 100%;
    height: auto;
    opacity: 0.1;
}
.serve-container-graphics-bottom {
    position: absolute;
    bottom: 0;
    right: 50px;
    z-index: 1;
}
@media (max-width: 991px) {
    .expert-engineers-section {
        padding: 60px 0;
    }
    
    .expert-title {
        font-size: 36px;
    }
    
    .expert-engineers-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .expert-engineers-image {
        text-align: center;
    }
    
    .expert-banner {
        display: none;
    }
}
.expert-banner-section-floating-points {
    position: relative;
    height: 160px;
}
.flaoting-below-img {
    position: absolute;
    top: 0;
    z-index: 1;
    right: 20%;
}

/* Video Tabs Section */
.video-tabs-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #2B1C50 20%, #565ADD 100%);
    position: relative;
    overflow: hidden;
}

.video-tabs-content {
    padding-right: 50px;
    position: relative;
}

.tab-navigation {
    margin-bottom: 80px;
    text-align: center;
}

.tab-navigation .nav-pills {
    display: inline-flex;
    padding: 8px;
    background: #ffffff;
    border-radius: 40px;
    gap: 8px;
}

.tab-navigation .nav-link {
    padding: 15px 34px !important;
    color: #000 !important;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.tab-navigation .nav-link:hover {
    color: #565ADD;
}

.tab-navigation .nav-link.active {
    background: linear-gradient(180deg, #2B1C50 20%, #565ADD 100%);
    color: #fff !important;
    font-size: 18px;
    border-radius: 40px;
}

.tab-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.tab-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.feature-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #2B1C50;
}

.feature-points li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('../images/check-circle.svg') no-repeat center;
    background-size: contain;
}

.tab-cta-btn {
    background: #565ADD;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-decoration: none;
}

.tab-cta-btn:hover {
    background: #4549B9;
    color: #fff;
    transform: translateY(-2px);
}

.video-tabs-image {
    position: relative;
    text-align: center;
}

.video-tabs-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}
.blog-hero.enterpises-sales-block {
    padding: 12rem 0 7rem;
}
.input-group .select2-container {
    width: 120px !important;
}
a.footer-logo img {
    width: 220px;
    margin-bottom: 30px;
}
/* Responsive Styles */
@media (max-width: 1199.98px) {
    .tab-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 991.98px) {
    .video-tabs-section {
        padding: 60px 0;
    }

    .video-tabs-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .tab-navigation .nav-pills {
        justify-content: center;
    }

    .feature-points li {
        text-align: left;
    }
    .home-page .site-header .nav-link.active::after {
        display: none;
    }
    .home-page .site-header .nav-buttons .btn-outline {
        color: #fff;
    }
    .hero-section {
        height: 700px;
        min-height: unset;
    }
    .phone-wave-container {
        width: 160%;
        height: 160px;
    }
    .section-label {
        margin-bottom: 3.5rem;
    }
    .expert-banner-section-floating-points {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .tab-content h2 {
        font-size: 28px;
    }

    .tab-navigation .nav-pills {
        flex-direction: row;
        width: 87%;
        padding: 8px;
        gap: 8px;
    }
    feature-card.card-safegaurde {
        height: 180px;
    }
    .tab-navigation .nav-link.active {
        font-size: 15px;
    }
    .tab-navigation .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 20px !important;
        font-size: 15px;
    }
    .hero-section {
        height: 500px;
        min-height: unset;
    }
    
    .phone-content {
        padding: 1rem;
    }
    .phone-wave-container {
        width: 120%;
        height: 160px;
    }
    .hero-text {
        /*margin-bottom: 1rem;*/
        margin-top: 3rem;
    }
    .about-section, .industries-section {
        padding: 2rem 0;
    }
    .about-image {
        width: 70%;
        margin: 0 auto;
    }
    .video-overlay {
        bottom: -20px;
        right: -25px;
        width: 60px;
    }
    .serve-container-flex-top, .serve-container-flex-bottom {
        display: none;
    }
    .industries-section h2 {
        font-size: 2.5rem;
    }
    .industries-section .section-label .line {
        width: 60px;
    }
    .industries-list::before {
        display: none;
    }
    .industries-list {
        padding: 0 0 2rem 3rem;
    }
    .feature-list li, .industries-list li {
        font-size: 1.1rem;
    }
    .industries-image {
        padding-top: 1.6rem;
    }
    .blog-hero.enterpises-sales-block {
        padding: 8rem 0 3rem;
    }
    .serve-container-graphics-bottom {
        right: -100px;
    }
    .serve-container-graphics-bottom img {
        width: 70%;
    } 
    .expert-title {
        font-size: 2rem;
    }
    a.footer-logo img {
        width: 160px;
    }
}

@media (max-width: 575.98px) {
    .video-tabs-section {
        padding: 40px 0;
    }

    .tab-content h2 {
        font-size: 24px;
    }

    .tab-content p {
        font-size: 16px;
    }

    .feature-points li {
        font-size: 14px;
    }
}

/* Responsive Header Menu Fixes */
@media (max-width: 991.98px) {
    /* Common styles for all pages */
    .site-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        z-index: 1000;
        margin: 10px 15px;
    }

    /* Dark theme pages (blog, enterprises) */
    .blog-page .site-header .navbar-collapse,
    .enterprises-page .site-header .navbar-collapse {
        background: linear-gradient(180deg, #2B1C50 20%, #565ADD 100%);
    }

    .site-header .navbar-nav {
        padding: 15px 0;
        margin: 0 !important;
    }

    .site-header .nav-link {
        padding: 12px 20px !important;
        color: #2B1C50 !important;
        font-size: 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        text-align: left;
    }

    .blog-page .site-header .nav-link,
    .enterprises-page .site-header .nav-link {
        color: #fff !important;
    }

    .site-header .nav-link:hover,
    .site-header .nav-link.active {
        background: rgba(86, 90, 221, 0.1);
    }

    .blog-page .site-header .nav-link:hover,
    .blog-page .site-header .nav-link.active,
    .enterprises-page .site-header .nav-link:hover,
    .enterprises-page .site-header .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Navigation Pills Container */
    .site-header .nav-pill-container {
        position: relative !important;
        transform: none !important;
        top: 0 !important;
        left: 0 !important;
        background: transparent !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .blog-page .site-header .nav-pill-container,
    .enterprises-page .site-header .nav-pill-container {
        background: transparent !important;
    }

    /* Buttons section */
    .site-header .nav-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .blog-page .site-header .nav-buttons,
    .enterprises-page .site-header .nav-buttons {
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    .site-header .nav-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        margin: 0 !important;
    }

    /* Hamburger menu */
    .site-header .navbar-toggler {
        padding: 0;
        border: none;
        outline: none !important;
        box-shadow: none !important;
        position: relative;
        width: 30px;
        height: 30px;
    }

    .site-header .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        background-image: none;
        position: relative;
        transition: all 0.3s ease;
    }

    .site-header .navbar-toggler-icon::before,
    .site-header .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background: #2B1C50;
        transition: all 0.3s ease;
    }

    .blog-page .site-header .navbar-toggler-icon::before,
    .blog-page .site-header .navbar-toggler-icon::after,
    .enterprises-page .site-header .navbar-toggler-icon::before,
    .enterprises-page .site-header .navbar-toggler-icon::after {
        background: #fff;
    }

    .site-header .navbar-toggler-icon::before {
        top: 8px;
    }

    .site-header .navbar-toggler-icon::after {
        bottom: 8px;
    }

    .site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 11px;
    }

    .site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        bottom: 11px;
    }
}

@media (max-width: 575.98px) {
    .site-header .navbar-collapse {
        margin: 10px 10px;
    }

    .site-header .nav-link {
        font-size: 15px;
        padding: 10px 16px !important;
    }

    .site-header .nav-buttons .btn {
        padding: 10px 16px;
        font-size: 15px;
    }
}

/* Inner Pages Responsive Menu Fixes */
@media (max-width: 991.98px) {
    /* Specific fixes for blog, blog detail and enterprises pages */
    .blog-page .site-header .navbar-collapse,
    .enterprises-page .site-header .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        margin: 15px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .blog-page .site-header .nav-pill-container,
    .enterprises-page .site-header .nav-pill-container {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
        transform: none !important;
    }

    .blog-page .site-header .nav-link,
    .enterprises-page .site-header .nav-link {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 16px;
        padding: 12px 20px !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .blog-page .site-header .nav-link:hover,
    .blog-page .site-header .nav-link.active,
    .enterprises-page .site-header .nav-link:hover,
    .enterprises-page .site-header .nav-link.active {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .blog-page .site-header .nav-link.active::after,
    .enterprises-page .site-header .nav-link.active::after {
        display: none;
    }

    .blog-page .site-header .nav-buttons,
    .enterprises-page .site-header .nav-buttons {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
        margin-top: 10px;
    }

    .blog-page .site-header .nav-buttons .btn,
    .enterprises-page .site-header .nav-buttons .btn {
        width: 100%;
        margin: 8px 0 !important;
    }

    .blog-page .site-header .nav-buttons .btn-outline,
    .enterprises-page .site-header .nav-buttons .btn-outline {
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff !important;
    }

    .blog-page .site-header .nav-buttons .btn-outline:hover,
    .enterprises-page .site-header .nav-buttons .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .blog-page .site-header .nav-buttons .btn-primary,
    .enterprises-page .site-header .nav-buttons .btn-primary {
        background: #565ADD;
        color: #fff;
    }

    /* Hamburger Menu */
    .blog-page .site-header .navbar-toggler,
    .enterprises-page .site-header .navbar-toggler {
        border: none;
        padding: 0;
        width: 30px;
        height: 30px;
        position: relative;
        margin-right: 10px;
    }

    .blog-page .site-header .navbar-toggler-icon,
    .enterprises-page .site-header .navbar-toggler-icon {
        background: none;
        position: relative;
        transition: all 0.3s ease;
    }

    .blog-page .site-header .navbar-toggler-icon::before,
    .blog-page .site-header .navbar-toggler-icon::after,
    .enterprises-page .site-header .navbar-toggler-icon::before,
    .enterprises-page .site-header .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: #fff;
        left: 0;
        transition: all 0.3s ease;
    }

    .blog-page .site-header .navbar-toggler-icon::before,
    .enterprises-page .site-header .navbar-toggler-icon::before {
        top: 8px;
    }

    .blog-page .site-header .navbar-toggler-icon::after,
    .enterprises-page .site-header .navbar-toggler-icon::after {
        bottom: 8px;
    }

    .blog-page .site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
    .enterprises-page .site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 11px;
    }

    .blog-page .site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after,
    .enterprises-page .site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        bottom: 11px;
    }
}

@media (max-width: 575.98px) {
    .blog-page .site-header .navbar-collapse,
    .enterprises-page .site-header .navbar-collapse {
        margin: 10px;
    }

    .blog-page .site-header .nav-link,
    .enterprises-page .site-header .nav-link {
        font-size: 15px;
        padding: 10px 16px !important;
    }
}

@media (max-width: 1920px) {
    .phone-mockup {
        top: 90px;
    }
}
/* 16-05-2025 new css added */
/* 404 Error Page Styles */
.error-section {
    padding: 150px 0 100px;
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-content {
    text-align: center;
    line-height: 30px;
}
.error-content h1 {
    font-size: 180px;
    font-weight: 900;
    background: -webkit-linear-gradient(125deg, #2B1C50 20%, #565ADD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(86, 90, 221, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(86, 90, 221, 0.4);
    }
    100% {
        text-shadow: 0 0 10px rgba(86, 90, 221, 0.2);
    }
}
.error-content h2 {
    color: #3d3d3d;
    font-size: 30px;
    font-weight: 600;
}
.error-content p {
    color: #3f3f3f;
}
.error-btn-flex {
    padding: 0.525rem 1.25rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #000000;
    border: 2px solid #565ADD;
    background: transparent;
}
.error-btn-flex:hover {
    border: 2px solid #565ADD;
    background: #565ADD;
    color: #fff;
}
/* Privacy Policy Page Styles */
.policy-content {
    padding: 130px 0 100px;
}
.policy-content-box {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}
.navbar-brand img {
    width: 180px;
}
@media (max-width: 991px) {
    .navbar-brand img {
        width: 140px;
    }
}
/* Testimonial Slider Spacing */
.intigrations-slider-active .single-testi {
    margin: 0 15px;
}
.slick-track {
    margin-bottom: 15px;
    margin-top: 15px;
}
.integration-card span {
    font-size: 14px;
    color: #5a5a5a;
    font-weight: 500;
}
.integration-logo {
    max-height: 60px;
    margin-bottom: 1rem;
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.integration-card:hover .integration-logo {
    filter: grayscale(0%);
}

/* Video Slider Styles */
.video-slide {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.video-slide:not(.slick-center) .play-overlay {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
}

.video-slide:not(.slick-center) .play-overlay:hover {
    transform: translate(-50%, -50%) scale(1);
    background: rgba(255,255,255,0.6);
}

.video-slide.slick-center .play-overlay {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: none;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 2;
}

.play-overlay:hover {
    background: rgba(255,255,255,1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.play-overlay i {
    margin-left: 3px; /* Slight adjustment for play icon centering */
}

/* Video Modal Styles */
#videoModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

#videoModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 2rem 1rem;
}

#videoModal .modal-title {
    font-weight: 600;
    color: var(--text-dark);
}

#videoModal .modal-body {
    padding: 0 2rem 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

#modalVideo {
    border-radius: 8px;
    aspect-ratio: 16/9;
}
.center-slider .slick-slide, .center-slider .slick-current.slick-active {
    background-color: transparent;
}
.video-container {
    box-shadow: none;
}
.back-button i {
    font-weight: 600;
    font-size: 15px;
}
/* Responsive adjustments for video slider */
@media (min-width: 2200px) {
    .hero-section {
        min-height: 400px;
    }
    .signup-form-container h2 {
        font-size: 2rem;
    }
    .form-label {
        font-size: 1.2rem;
    }
    .form-control {
        padding: 1.1rem 1rem;
        font-size: 1rem;
    }
    .form-wrapper {
        max-width: 700px;
    }
    .form-select {
        font-size: 1rem; 
    }
    .signup-btn {
        font-size: 1.2rem;
        padding: 1.1rem 0.875rem;
    }
}
@media (max-width: 1024px) {
    .hero-section {
        height: 700px;
        min-height: unset;
    }
    .phone-mockup {
        top: 20px;
    }
    .center-slider .slick-slide {
        height: 100%;
    }
    .video-container {
        height: 100%;
    }
    .integrations-section, .video-section, .features-section {
        padding: 3rem 0;
    }
    .integration-card {
        padding: 2rem 1rem;
    }
    .phone-content {
        top: 60%;
    }
    .content-wrapper h1 {
        font-size: 4rem;
    }
    .content-wrapper h2 {
        font-size: 2.5rem;
    }
    .bg-section {
        min-height: unset;
        height: 100%;
    }
    .signup-page, .form-section {
        min-height: 100%;
    }
    .form-wrapper {
        max-width: 60%;
    }
}
@media (max-width: 991.98px) {
    .video-thumbnail {
        height: 100%;
    }
    
    .play-overlay {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .center-slider .slick-slide {
        height: 100%;
    }
    .video-container {
        height: 100%;
    }
    
    .integration-card {
        padding: 2rem 1rem;
    }
    .slick-dots {
        bottom: -75px;
    }
    
    .form-section {
        min-height: 100%;
    }
    .signup-page {
        min-height: 100%;
    }
    .form-section {
        padding: 5rem 1rem;
    }
    .form-wrapper {
        max-width: 70%;
    }
    .blog-image {
        height: 190px;
    }
}
@media (max-width: 820px) {
    .phone-mockup {
        top: 90px;
    }
    .verify-form-container h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 767.98px) {
    .video-thumbnail {
        height: 100%;
    }
    
    .play-overlay {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    #videoModal .modal-header {
        padding: 1rem 1.5rem 0.5rem;
    }
    
    #videoModal .modal-body {
        padding: 0 1.5rem 1.5rem;
    }
    .center-slider .slick-slide {
        height: 100%;
    }
    .video-container {
        height: 100%;
    }
    .phone-mockup {
        top: 12px;
    }
    .hero-section {
        height: 520px;
        min-height: unset;
    }
    .content-wrapper h1 {
        font-size: 3rem;
    } 
    .content-wrapper h2 {
        font-size: 2rem;
    }
    .form-wrapper {
        max-width: 100%;
        padding: 2.5rem 1.8rem;
    } 
    .blog-image {
        height: 100%;
    }
    .blog-featured-image {
        height: 100%;
    }
}

@media (max-width: 575.98px) {
    .video-thumbnail {
        height: 100%;
    }
    
    .play-overlay {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .phone-mockup {
        top: 42px;
    }
    .cta-buttons .btn {
        padding: .8rem 1rem;
    }
    .cta-buttons {
        justify-content: center;    
    }
    .tab-navigation .nav-link {
        padding: 12px 12px !important;
    }
}
