/* Modern AI-Powered Design Styles */

/* Enhanced Hero Section Styling - Optimized for All Pages */
/* Compact Hero Section with Visual Elements */
.breadcrumb-wrapper {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%) !important;
    position: relative;
    overflow: hidden;
    min-height: 0vh;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(74, 111, 255, 0.15) 0%, transparent 60%),
        /* Additional subtle overlay for better text contrast */
        linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

/* Floating Visual Elements */
.breadcrumb-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(74,111,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(74,111,255,0.15)"/><circle cx="40" cy="70" r="1" fill="rgba(74,111,255,0.2)"/><circle cx="90" cy="80" r="2.5" fill="rgba(74,111,255,0.1)"/><circle cx="10" cy="90" r="1.8" fill="rgba(74,111,255,0.12)"/></svg>');
    background-size: 200px 200px;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.breadcrumb-wrapper .page-heading h1 {
    background: linear-gradient(45deg, #ffffff, #f0f4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: 700 !important;
    font-size: 2.4rem !important;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    position: relative;
}

.breadcrumb-wrapper .page-heading h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.8rem auto 1rem;
    line-height: 1.5;
    max-width: 700px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* CTA button styles removed - no longer needed */

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 1.5rem;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Additional Visual Elements for Hero Sections */
.hero-visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-visual-elements .floating-icon {
    position: absolute;
    color: rgba(74, 111, 255, 0.1);
    font-size: 2rem;
    animation: floatIcon 15s ease-in-out infinite;
}

.hero-visual-elements .floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-visual-elements .floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.hero-visual-elements .floating-icon:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: 10s;
}

@keyframes floatIcon {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Our Story Section */
.our-story-section {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(74,111,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.our-story-section .section-title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 2.5rem;
}

.our-story-section .section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    position: relative;
}

.our-story-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 2px;
}

.our-story-section .section-title p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-image-wrapper {
    position: relative;
    padding: 0.5rem;
}

.story-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(74, 111, 255, 0.15);
    transition: all 0.3s ease;
}

.story-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(74, 111, 255, 0.25);
}

.story-image-1 {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.story-image-2 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 180px;
    height: 140px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.story-image-2:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.story-content-wrapper {
    padding: 1rem 1rem 1rem 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.story-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 100%;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(74, 111, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 255, 0.02), rgba(43, 77, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 111, 255, 0.15);
    border-color: rgba(74, 111, 255, 0.3);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(74, 111, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(74, 111, 255, 0.4);
}

.highlight-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.highlight-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.highlight-item:hover .highlight-content h4 {
    color: #4A6FFF;
}

.highlight-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: #ffffff;
}

.mission-card,
.vision-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 111, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 255, 0.02), rgba(43, 77, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 1;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 111, 255, 0.15);
    border-color: rgba(74, 111, 255, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(74, 111, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(74, 111, 255, 0.4);
}

.card-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

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

.card-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.mission-card:hover .card-content h4,
.vision-card:hover .card-content h4 {
    color: #4A6FFF;
}

.card-content p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Key Features Section */
.key-features-section {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.key-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(74,111,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(74, 111, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 255, 0.02), rgba(43, 77, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 111, 255, 0.15);
    border-color: rgba(74, 111, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(74, 111, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(74, 111, 255, 0.4);
}

.feature-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

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

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content h4 {
    color: #4A6FFF;
}

.feature-content p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    color: #4A6FFF;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: #ffffff;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.secondary-cta .btn-outline {
    background: transparent;
    color: #4A6FFF;
    border: 2px solid #4A6FFF;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-cta .btn-outline:hover {
    background: #4A6FFF;
    color: #ffffff;
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #4A6FFF;
    font-size: 1rem;
}

/* Responsive Design for CTA Section */
@media (max-width: 768px) {
    .cta-buttons {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }
    
    .cta-buttons .theme-btn,
    .secondary-cta .btn-outline {
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 111, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 255, 0.02), rgba(43, 77, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 111, 255, 0.15);
    border-color: rgba(74, 111, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 20px rgba(74, 111, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(74, 111, 255, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover h4 {
    color: #4A6FFF;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(74,111,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.why-choose-section .section-title {
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.why-choose-section .section-title h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 1rem !important;
    position: relative;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.why-choose-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 2px;
}

.why-choose-section .section-title p {
    font-size: 1.1rem !important;
    color: #4a5568 !important;
    max-width: 600px;
    margin: 0 auto !important;
    line-height: 1.6;
    z-index: 10;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(74, 111, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 255, 0.02), rgba(43, 77, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 111, 255, 0.15);
    border-color: rgba(74, 111, 255, 0.3);
}

.why-choose-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(74, 111, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.why-choose-item:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(74, 111, 255, 0.4);
}

.why-choose-item .icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.why-choose-item .content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.why-choose-item .content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.why-choose-item:hover .content h4 {
    color: #4A6FFF;
}

.why-choose-item .content p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Process Section Styling */
.process-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 50%, #dde8ff 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(74,111,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.process-section .section-title {
    position: relative;
    z-index: 2;
}

.process-section .section-title h2,
.process-section .section-title p {
    color: #1a202c;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(74, 111, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(74, 111, 255, 0.1);
}

.process-step:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 111, 255, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #4A6FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-step h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.process-step p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Industries Section Styling */
.industries-section {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(74,111,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.industry-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(74, 111, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 255, 0.02), rgba(43, 77, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-item:hover::before {
    opacity: 1;
}

.industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 111, 255, 0.15);
    border-color: rgba(74, 111, 255, 0.3);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 20px rgba(74, 111, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(74, 111, 255, 0.4);
}

.industry-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.industry-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.industry-item:hover h4 {
    color: #4A6FFF;
}

.industry-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Case Studies Section Styling */
.case-studies-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 50%, #dde8ff 100%);
    position: relative;
    overflow: hidden;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(74,111,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.case-studies-section .section-title {
    position: relative;
    z-index: 2;
}

.case-studies-section .section-title h2,
.case-studies-section .section-title p {
    color: #1a202c;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 111, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(74, 111, 255, 0.1);
}

.case-study-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 111, 255, 0.2);
}

.case-study-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(74, 111, 255, 0.3);
}

.case-study-card:hover .case-study-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(74, 111, 255, 0.4);
}

.case-study-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.case-study-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.case-study-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-study-metrics {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric {
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(74, 111, 255, 0.3);
}

/* Testimonials Section Styling */
.testimonials-section {
    background: #ffffff;
}

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 111, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 255, 0.02), rgba(43, 77, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 111, 255, 0.15);
    border-color: rgba(74, 111, 255, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #4A6FFF;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.2rem;
}

.testimonial-author-info p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        min-height: 70vh;
    }
    
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta .theme-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .our-story-section {
        padding: 3rem 0;
    }
    
    .our-story-section .section-title {
        margin-bottom: 2rem;
    }
    
    .our-story-section .section-title h2 {
        font-size: 2.2rem;
    }
    
    .our-story-section .section-title p {
        font-size: 1.1rem;
    }
    
    .story-image-wrapper {
        padding: 0.5rem;
    }
    
    .story-image-container {
        height: 300px;
    }
    
    .story-image-2 {
        width: 100px;
        height: 80px;
        bottom: 10px;
        right: 10px;
    }
    
    .story-content-wrapper {
        padding: 0.8rem;
        margin-top: 1.5rem;
        min-height: auto;
    }
    
    .story-description p {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .story-highlights {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
    }
    
    .highlight-icon i {
        font-size: 0.9rem;
    }
    
    .highlight-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .highlight-content p {
        font-size: 0.85rem;
    }
    
    .service-card,
    .industry-item,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .why-choose-section .section-title h2 {
        font-size: 2rem;
    }
    
    .why-choose-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .why-choose-item .icon {
        margin: 0 auto 1rem auto;
    }
    
    .theme-btn-outline {
        margin-left: 0 !important;
    }
}

/* Font Family Management for Asquare Tech Lab */

/* Main Text - Plus Jakarta Sans */
body,
h1, h2, h3, h4, h5, h6,
.hero-content,
.hero-title,
.section-title h2,
.about-content h2,
.service-box h3,
.project-content h3,
.testimonial-content h3,
.cta-content h2,
.main-button .theme-btn,
.ai-main-heading,
.ai-tagline,
.ai-btn-primary,
.ai-btn-secondary,
.hero-badge,
.stat-number,
.nav-menu a,
.logo,
.footer-title {
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Sub Text - Inter */
p,
.sub-text,
.secondary-text,
.description,
.caption,
.small-text,
.hero-content p,
.section-title p,
.service-box p,
.about-content p,
.stat-item p,
.project-content p,
.testimonial-content p,
.cta-content p,
.ai-description,
.ai-card,
.ai-feature-item,
.ai-trust-signals,
.ai-contact-details p,
.ai-footer-description,
.hero-description,
.stat-label,
.professional-form-label,
.professional-form-input,
.professional-form-select,
.professional-form-textarea,
.footer-description,
.contact-info p,
.blog-meta,
.post-meta,
.author-info,
.comment-text,
.form-label,
.form-control,
.form-select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"] {
    font-family: "Inter", sans-serif;
}

/* Ensure headings maintain Plus Jakarta Sans */
h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

/* Ensure paragraphs and descriptive text use Inter */
p, .description, .sub-text, .secondary-text {
    font-family: "Inter", sans-serif !important;
}

/* About Page Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 111, 255, 0.2) 0%, transparent 50%);
    animation: aboutGlow 8s ease-in-out infinite alternate;
}

@keyframes aboutGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    gap: 8px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A6FFF;
    display: block;
    margin-bottom: 5px;
}

.about-stat-label {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

/* About Page Content Sections */
.about-content-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.about-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(74, 111, 255, 0.1) 0%, transparent 50%);
}

.about-content-wrapper {
    position: relative;
    z-index: 2;
}

.about-content-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-content-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-feature-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 111, 255, 0.3);
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.about-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.about-feature-description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* About Page Team Section */
.about-team-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.about-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 30%, rgba(74, 111, 255, 0.1) 0%, transparent 60%);
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-team-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.about-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 111, 255, 0.3);
}

.about-team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.about-team-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.about-team-role {
    color: #4A6FFF;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-team-description {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 14px;
}

/* About Page Values Section */
.about-values-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.about-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(74, 111, 255, 0.1) 0%, transparent 50%);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-value-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 111, 255, 0.3);
}

.about-value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.about-value-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.about-value-description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* About Page CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.18) 0%, transparent 50%);
}

.about-cta-content {
    position: relative;
    z-index: 2;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-cta-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

/* About Page Contact Form */
.about-contact-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    margin-top: 40px;
}

.about-contact-form input,
.about-contact-form textarea,
.about-contact-form select {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: white;
    padding: 18px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 15px;
}

.about-contact-form input:focus,
.about-contact-form textarea:focus,
.about-contact-form select:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: #4A6FFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 111, 255, 0.15);
    transform: translateY(-2px);
}

.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.about-form-group {
    margin-bottom: 25px;
}

.about-form-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.about-form-input,
.about-form-select,
.about-form-textarea {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: white;
    padding: 18px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 15px;
}

.about-form-input:focus,
.about-form-select:focus,
.about-form-textarea:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: #4A6FFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 111, 255, 0.15);
    transform: translateY(-2px);
}

.about-form-input::placeholder,
.about-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.about-form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.about-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.about-form-checkbox label {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
}

.about-form-note {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
}

/* About Page Button Styles */
.about-btn-primary {
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 111, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 111, 255, 0.4);
    background: linear-gradient(45deg, #2B4DFF, #4A6FFF);
    color: white;
}

.about-btn-primary:active {
    transform: translateY(-1px);
}

.about-btn-primary i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.about-btn-primary:hover i:last-child {
    transform: translateX(5px);
}

.about-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .about-hero-section {
        text-align: center;
        padding: 120px 0 70px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .about-feature-grid,
    .about-team-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .about-btn-primary,
    .about-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .about-hero-description {
        font-size: 0.9rem;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
    
    .about-content-title {
        font-size: 2rem;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-contact-form {
        padding: 30px 20px;
    }
}

/* AI Hero Section */
.ai-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ai-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 111, 255, 0.2) 0%, transparent 50%);
    animation: aiGlow 8s ease-in-out infinite alternate;
}

@keyframes aiGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Floating AI Elements */
.ai-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ai-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    color: white;
    font-size: 14px;
    transform: rotate(-5deg);
    animation: aiFloat 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ai-card:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.ai-card:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.ai-card:nth-child(3) {
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes aiFloat {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-3deg); }
}

.ai-card .ai-percentage {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-card .ai-status {
    color: #4ade80;
    font-size: 12px;
}

/* Hero Content */
.ai-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.ai-tagline {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    gap: 8px;
}

.ai-main-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* CTA Buttons */
.ai-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.ai-cta-buttons .main-button {
    margin: 0;
}

.ai-cta-buttons .main-button a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Global theme-btn styling */
.theme-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 18px 36px !important;
    min-width: 200px !important;
    height: 56px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #4A6FFF 0%, #2B4DFF 100%) !important;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(74, 111, 255, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
}

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

.theme-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(74, 111, 255, 0.4) !important;
    color: white !important;
}

.theme-btn:hover::before {
    left: 100%;
}

.theme-btn i {
    font-size: 14px !important;
    transition: transform 0.3s ease !important;
    margin-left: 8px !important;
}

.theme-btn:hover i {
    transform: translateX(4px) !important;
}

/* Secondary button style */
.ai-cta-buttons .theme-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 36px;
    min-width: 200px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

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

.ai-cta-buttons .theme-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.ai-cta-buttons .theme-btn-secondary:hover::before {
    left: 100%;
}

/* Hide separate arrow buttons */
.arrow-btn {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-main-heading {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .ai-description {
        font-size: 1rem;
    }
    
    .ai-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .ai-floating-elements {
        display: none;
    }
    
    /* Global responsive for all theme-btn buttons */
    .theme-btn {
        padding: 14px 28px !important;
        font-size: 15px !important;
        min-width: 180px !important;
        height: 50px !important;
    }
    
    .ai-cta-buttons .theme-btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
        min-width: 180px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .ai-main-heading {
        font-size: 2rem;
    }
    
    .ai-tagline {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .ai-description {
        font-size: 0.9rem;
    }
    
    /* Global responsive for all theme-btn buttons */
    .theme-btn {
        padding: 12px 24px !important;
        font-size: 14px !important;
        min-width: 160px !important;
        height: 48px !important;
    }
    
    .ai-cta-buttons .theme-btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 160px;
        height: 48px;
    }
}

/* Animation for elements */
.ai-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: aiFadeIn 0.8s ease-out forwards;
}

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

/* Universal theme color overrides */
* {
    --theme-primary: #4A6FFF !important;
    --theme-secondary: #2B4DFF !important;
    --theme-dark: #1a1a2e !important;
    --theme-shadow: rgba(74, 111, 255, 0.3) !important;
    --theme-shadow-hover: rgba(74, 111, 255, 0.4) !important;
}

/* Force override all old gradient colors */
[style*="linear-gradient(45deg, #667eea, #764ba2)"],
[style*="linear-gradient(45deg, #3b82f6, #8b5cf6)"],
[style*="linear-gradient(45deg, #2563eb, #7c3aed)"] {
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF) !important;
}

/* FINAL OVERRIDE - Maximum specificity */
html body .ai-tagline,
html body .ai-card .ai-percentage,
html body .ai-btn-primary,
html body .ai-btn-secondary {
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF) !important;
    color: white !important;
    border-color: rgba(74, 111, 255, 0.3) !important;
}

.ai-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 111, 255, 0.2) 0%, transparent 50%);
    animation: aiGlow 8s ease-in-out infinite alternate;
}

@keyframes aiGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Floating AI Elements */
.ai-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ai-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    color: white;
    font-size: 14px;
    transform: rotate(-5deg);
    animation: aiFloat 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ai-card:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.ai-card:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.ai-card:nth-child(3) {
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes aiFloat {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-3deg); }
}

.ai-card .ai-percentage {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-card .ai-status {
    color: #4ade80;
    font-size: 12px;
}

/* Hero Content */
.ai-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.ai-tagline {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    gap: 8px;
}

.ai-main-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* CTA Buttons */
.ai-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.ai-cta-buttons .main-button {
    margin: 0;
}

.ai-cta-buttons .main-button a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Global theme-btn styling */
.theme-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 18px 36px !important;
    min-width: 200px !important;
    height: 56px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #4A6FFF 0%, #2B4DFF 100%) !important;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(74, 111, 255, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
}

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

.theme-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(74, 111, 255, 0.4) !important;
    color: white !important;
}

.theme-btn:hover::before {
    left: 100%;
}

.theme-btn i {
    font-size: 14px !important;
    transition: transform 0.3s ease !important;
    margin-left: 8px !important;
}

.theme-btn:hover i {
    transform: translateX(4px) !important;
}

/* Secondary button style */
.ai-cta-buttons .theme-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 36px;
    min-width: 200px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

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

.ai-cta-buttons .theme-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.ai-cta-buttons .theme-btn-secondary:hover::before {
    left: 100%;
}

/* Hide separate arrow buttons */
.arrow-btn {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-main-heading {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .ai-description {
        font-size: 1rem;
    }
    
    .ai-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .ai-floating-elements {
        display: none;
    }
    
    /* Global responsive for all theme-btn buttons */
    .theme-btn {
        padding: 14px 28px !important;
        font-size: 15px !important;
        min-width: 180px !important;
        height: 50px !important;
    }
    
    .ai-cta-buttons .theme-btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
        min-width: 180px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .ai-main-heading {
        font-size: 2rem;
    }
    
    .ai-tagline {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .ai-description {
        font-size: 0.9rem;
    }
    
    /* Global responsive for all theme-btn buttons */
    .theme-btn {
        padding: 12px 24px !important;
        font-size: 14px !important;
        min-width: 160px !important;
        height: 48px !important;
    }
    
    .ai-cta-buttons .theme-btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 160px;
        height: 48px;
    }
}

/* Animation for elements */
.ai-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: aiFadeIn 0.8s ease-out forwards;
}

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

/* Universal theme color overrides */
* {
    --theme-primary: #4A6FFF !important;
    --theme-secondary: #2B4DFF !important;
    --theme-dark: #1a1a2e !important;
    --theme-shadow: rgba(74, 111, 255, 0.3) !important;
    --theme-shadow-hover: rgba(74, 111, 255, 0.4) !important;
}

/* Force override all old gradient colors */
[style*="linear-gradient(45deg, #667eea, #764ba2)"],
[style*="linear-gradient(45deg, #3b82f6, #8b5cf6)"],
[style*="linear-gradient(45deg, #2563eb, #7c3aed)"] {
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF) !important;
}

/* FINAL OVERRIDE - Maximum specificity */
html body .ai-tagline,
html body .ai-card .ai-percentage,
html body .ai-btn-primary,
html body .ai-btn-secondary {
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF) !important;
    color: white !important;
    border-color: rgba(74, 111, 255, 0.3) !important;
}

/* Unlimited Package Page Styles */
.modern-hero-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.modern-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 111, 255, 0.2) 0%, transparent 50%);
    animation: modernGlow 8s ease-in-out infinite alternate;
}

@keyframes modernGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    gap: 8px;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-highlight {
    color: #4A6FFF;
}

.hero-subheading {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Mobile-first responsive design */
@media (max-width: 991px) {
    .modern-hero-section {
        text-align: center;
        padding: 120px 0 70px;
    }
    
    .modern-hero-section .hero-content {
        text-align: center;
    }
    
    .modern-hero-section .hero-illustration {
        margin-top: 40px;
    }
}

/* Critical CSS for all pages */
body {
    visibility: hidden;
}

img { 
    height: auto; 
}

/* AI Card specific styles */
.ai-card .ai-dots {
    font-size: 20px;
    margin: 5px 0;
}

.ai-card .ai-emoji {
    font-size: 12px;
    margin-top: 5px;
}

/* Unlimited Package Page Additional Styles */
.hero-cta-buttons .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-cta-buttons .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 111, 255, 0.4);
    color: white;
}

.hero-cta-buttons .theme-btn:hover::before {
    left: 100%;
}

.hero-cta-buttons .theme-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-cta-buttons .theme-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

.hero-main-image {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.center-icon {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(74, 111, 255, 0.1) 0%, transparent 50%);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 111, 255, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subtitles on dark sections - all sections are now dark */
.section-subtitle {
    color: #93c5fd;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 111, 255, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(74, 111, 255, 0.1), rgba(43, 77, 255, 0.1));
    border-color: rgba(74, 111, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    line-height: 1.2;
}

.pricing-subtitle {
    color: #4A6FFF;
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
}

.pricing-prices {
    margin-bottom: 25px;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.price-label {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

.price-current {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4A6FFF;
}

.price-original {
    font-size: 1.2rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.price-period {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
}

.delivery-promise {
    background: rgba(74, 111, 255, 0.08);
    border: 1px solid rgba(74, 111, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.delivery-promise h4 {
    color: #4A6FFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.delivery-promise ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-promise li {
    color: #cbd5e1;
    font-size: 0.9rem;
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
    line-height: 1.4;
}

.delivery-promise li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(74, 222, 128, 0.3);
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.pricing-features li i {
    color: #4ade80;
    margin-right: 10px;
}

.pricing-cta-wrapper {
    text-align: center;
}

.pricing-cta {
    background: linear-gradient(135deg, #2B4DFF 0%, #1a1a2e 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(43, 77, 255, 0.3);
    margin-bottom: 15px;
}

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

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 77, 255, 0.4);
    color: white;
}

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

.pricing-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.pricing-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.pricing-note {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(74, 222, 128, 0.3);
}


/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.18) 0%, transparent 50%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.final-cta-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section */
.how-works-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.how-works-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(74, 111, 255, 0.1) 0%, transparent 50%);
}

.how-works-content { position: relative; z-index: 1; }

.how-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 111, 255, 0.3);
}

.how-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4A6FFF, #2B4DFF);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(43, 77, 255, 0.25);
}

.how-title { font-weight: 700; color: #ffffff; margin-bottom: 8px; }
.how-desc { color: #cbd5e1; margin: 0; }

/* Capabilities Section */
.capabilities-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
}

.capabilities-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 30%, rgba(74, 111, 255, 0.1) 0%, transparent 60%);
}

.capabilities-content { position: relative; z-index: 1; }

.capability-badge {
    display: inline-block;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #93c5fd;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    margin-bottom: 16px;
}

.capability-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.25); }

.capability-title { color: #fff; font-weight: 700; margin-bottom: 8px; }
.capability-desc { color: #cbd5e1; margin: 0; }

/* Value Props Section */
.value-props-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.value-props-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(74, 111, 255, 0.1) 0%, transparent 50%);
}

.value-prop-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-prop-card:hover { transform: translateY(-6px); border-color: rgba(74, 111, 255, 0.3); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3); }

.value-prop-icon { color: #4A6FFF; font-size: 22px; margin-bottom: 10px; }
.value-prop-title { color: #ffffff; font-weight: 700; margin-bottom: 6px; }
.value-prop-desc { color: #cbd5e1; margin: 0; }

/* FAQ Section */

.faq-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

/* Ensure FAQ text is always visible */
.faq-section .accordion-body p,
.faq-section .accordion-button,
.faq-section h2,
.faq-section h6 {
    color: #ffffff !important;
}

.faq-section .section-title h2,
.faq-section .section-title h6 {
    color: #ffffff !important;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(74, 111, 255, 0.12) 0%, transparent 60%);
}

.faq-accordion { position: relative; z-index: 1; }

.faq-item,
.faq-accordion details {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-accordion details summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
}

.faq-accordion details summary::-webkit-details-marker { display: none; }

.faq-accordion details[open] summary { border-bottom: 1px solid rgba(255,255,255,0.12); }

.faq-accordion .faq-answer { padding: 16px 22px 20px; color: #cbd5e1; }

.faq-q { font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.faq-a { color: #cbd5e1; margin: 0; }

/* Contact Page Styles */
.ai-contact-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ai-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 111, 255, 0.1) 0%, transparent 50%);
}

/* Contact Information Section */
.ai-contact-info {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
}

.ai-contact-info .ai-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 10px 0;
}

.ai-contact-info .ai-contact-item:last-child {
    margin-bottom: 0;
}

.ai-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ai-contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(74, 111, 255, 0.3);
}

.ai-contact-details h5 {
    color: white;
    margin-bottom: 5px;
    font-size: 16px;
}

.ai-contact-details p {
    color: #cbd5e1;
    margin: 0;
}

.ai-contact-details a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ai-contact-details a:hover {
    color: #4A6FFF;
}

/* AI Contact Form Styles */
.ai-contact-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

.ai-contact-form input,
.ai-contact-form textarea,
.ai-contact-form select {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: white;
    padding: 18px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 15px;
}

.ai-contact-form input:focus,
.ai-contact-form textarea:focus,
.ai-contact-form select:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: #4A6FFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 111, 255, 0.15);
    transform: translateY(-2px);
}

.ai-contact-form input::placeholder,
.ai-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.ai-form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ai-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.ai-form-checkbox label {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
}

/* AI Footer Styles */
.ai-footer-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.ai-footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.1) 0%, transparent 50%);
}

.ai-footer-bg {
    position: relative;
    z-index: 2;
    padding: 80px 0 40px !important;
}

.ai-footer-content {
    position: relative;
    z-index: 3;
}

.ai-footer-widget {
    margin-bottom: 30px;
}

/* Footer logo styling handled by existing styles */

.ai-footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.ai-footer-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.ai-footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 1px;
}

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

.ai-footer-links li {
    margin-bottom: 12px;
}

.ai-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    padding-left: 0;
}

.ai-footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #4A6FFF;
}

.ai-footer-links a:hover {
    color: #4A6FFF;
    padding-left: 15px;
}

.ai-footer-links a:hover::before {
    opacity: 1;
}



/* Social Links */
.ai-social-links {
    display: flex;
    gap: 15px;
}

.ai-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai-social-link:hover {
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
}

/* Contact Info in Footer */
.ai-contact-info .ai-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.ai-contact-info .ai-contact-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.ai-contact-info .ai-contact-details h6 {
    color: white;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 500;
}

.ai-contact-info .ai-contact-details p,
.ai-contact-info .ai-contact-details a {
    color: #cbd5e1;
    font-size: 13px;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ai-contact-info .ai-contact-details a:hover {
    color: #4A6FFF;
}

/* Footer Bottom */
.ai-footer-bottom {
    background: rgba(0, 0, 0, 0.3) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 25px 0 !important;
    position: relative;
    z-index: 2;
}

.ai-copyright {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0;
}

/* Contact Form Success/Error Messages */
.ai-success-message,
.ai-error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: 400px;
    animation: slideInRight 0.5s ease-out;
}

.ai-success-message {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: white;
}

.ai-error-message {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}



/* Form validation styles */
.ai-contact-form input:invalid,
.ai-contact-form select:invalid,
.ai-contact-form textarea:invalid {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.ai-contact-form input:valid,
.ai-contact-form select:valid,
.ai-contact-form textarea:valid {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

/* Character counter styles */
.ai-char-counter {
    color: #cbd5e1;
    font-size: 12px;
    text-align: right;
    margin-top: 5px;
    transition: color 0.3s ease;
}



/* About page specific form styles */
.about-page .ai-contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.about-page .ai-main-heading {
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-page .ai-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-page .ai-form-note {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
}

/* Enhanced button styles for about page */
.about-page .ai-btn-primary {
    background: linear-gradient(45deg, #4A6FFF, #2B4DFF);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 111, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.about-page .ai-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 111, 255, 0.4);
    background: linear-gradient(45deg, #2B4DFF, #4A6FFF);
}

.about-page .ai-btn-primary:active {
    transform: translateY(-1px);
}

.about-page .ai-btn-primary i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.about-page .ai-btn-primary:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .ai-footer-bg {
        padding: 60px 0 30px !important;
    }
    
    .ai-footer-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .ai-footer-description {
        font-size: 14px;
    }
    

    
    .ai-copyright {
        text-align: center;
    }
    
    /* Mobile responsive for success/error messages */
    .ai-success-message,
    .ai-error-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Mobile responsive for modern-hero-section */
    html body .modern-hero-section {
        padding: 100px 0 60px !important;
        text-align: center !important;
    }
    
    html body .modern-hero-section .hero-content {
        text-align: center !important;
    }
    
    html body .modern-hero-section .hero-heading {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    html body .modern-hero-section .hero-subheading {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }
    
    html body .modern-hero-section .hero-cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }
    
    html body .modern-hero-section .hero-illustration {
        display: none !important;
    }
    
    .modern-hero-section .col-lg-6:first-child {
        order: 1;
    }
    
    .modern-hero-section .col-lg-6:last-child {
        order: 2;
    }
    
    /* Ensure proper mobile layout */
    .modern-hero-section .row {
        justify-content: center !important;
    }
    
    .modern-hero-section .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    /* Center align all text elements */
    .modern-hero-section .hero-badge {
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .modern-hero-section .hero-cta-buttons .theme-btn {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
    
    /* Ensure buttons are properly centered on mobile */
    .modern-hero-section .hero-cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    /* Mobile centering for section titles and content */
    .section-title {
        text-align: center;
    }
    
    .section-subtitle {
        justify-content: center;
    }
    
    .section-heading {
        text-align: center;
    }
    
    .section-description {
        text-align: center;
    }
    
    /* Mobile centering for cards and other content */
    .how-card,
    .benefit-card,
    .capability-card {
        text-align: center;
    }
    
    .how-card .how-icon,
    .benefit-card .benefit-icon,
    .capability-card .capability-badge {
        margin: 0 auto;
    }
    
    /* Mobile centering for pricing section */
    .pricing-section .section-title {
        text-align: center;
    }
    
    .pricing-section .pricing-card {
        text-align: center;
    }
    
    /* Mobile centering for form elements */
    .ai-contact-form {
        text-align: center;
    }
    
    .ai-contact-form .form-group {
        text-align: left;
    }
    
    .ai-contact-form .theme-btn {
        margin: 0 auto;
    }
    
    /* Additional mobile optimizations */
    .modern-hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .modern-hero-section .hero-content {
        padding: 0 10px;
    }
}

/* Responsive Design for Hero Sections */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        min-height: 30vh;
        padding: 40px 0;
    }
    
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* CTA button styles removed */
    
    .hero-visual-elements .floating-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-wrapper {
        min-height: 25vh;
        padding: 30px 0;
    }
    
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 1.6rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin: 0.6rem auto 0.8rem;
    }
    
    /* CTA button styles removed */
}

@media (max-width: 480px) {
    .modern-hero-section .hero-heading {
        font-size: 2rem;
    }
    
    .modern-hero-section .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .modern-hero-section .hero-subheading {
        font-size: 1rem;
    }
    
    .modern-hero-section .hero-cta-buttons .theme-btn {
        max-width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .modern-hero-section {
        padding: 80px 0 50px;
    }
    
    /* Additional mobile centering for very small screens */
    .modern-hero-section .hero-content {
        padding: 0 5px;
    }
    
    .modern-hero-section .hero-cta-buttons .theme-btn {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    /* Ensure all section content is centered on very small screens */
    .section-title,
    .section-subtitle,
    .section-heading,
    .section-description {
        text-align: center;
    }
    
    /* Center all card content on very small screens */
    .how-card,
    .benefit-card,
    .capability-card,
    .pricing-card {
        text-align: center;
        padding: 15px 10px;
    }
}

/* ========================================
   CHAT SESSION CHANGES - ALL OPTIMIZATIONS
   ======================================== */

/* CTA Counter Section Optimization - Hero Section Improvements */
.cta-counter-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%) !important;
    position: relative;
    overflow: hidden;
}

.cta-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 111, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-counter-section .title {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin-bottom: 3rem !important;
    text-align: center !important;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: 0.5px !important;
    text-transform: capitalize !important;
}

.cta-counter-section .counter-box-items {
    position: relative;
    z-index: 2;
}

.cta-counter-section .counter-box {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    padding: 2rem 1.5rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.cta-counter-section .counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 255, 0.1) 0%, rgba(43, 77, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-counter-section .counter-box:hover::before {
    opacity: 1;
}

.cta-counter-section .counter-box:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(74, 111, 255, 0.4) !important;
}

.cta-counter-section .counter-box h2 {
    color: #4A6FFF !important;
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.8rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    z-index: 2;
}

.cta-counter-section .counter-box p {
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    z-index: 2;
}

/* Enhanced Testimonial Section - Index Page */
.testimonial-section-3 {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%) !important;
    position: relative;
    overflow: hidden;
}

.testimonial-section-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 111, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 77, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-wrapper-3 {
    position: relative;
    z-index: 2;
}

.testimonial-box-items {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(74, 111, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 3rem 2.5rem !important;
    box-shadow: 0 8px 32px rgba(74, 111, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.testimonial-box-items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 255, 0.02) 0%, rgba(43, 77, 255, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-box-items:hover::before {
    opacity: 1;
}

.testimonial-box-items:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(74, 111, 255, 0.15) !important;
    border-color: rgba(74, 111, 255, 0.2) !important;
}

.testimonial-box-items h2 {
    color: #1a202c !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    position: relative;
    z-index: 2;
}

.testimonial-box-items p {
    color: #4a5568 !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
    font-style: italic !important;
    position: relative;
    z-index: 2;
}

/* 5-Star Rating System */
.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.testimonial-star {
    color: #fbbf24;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(251, 191, 36, 0.3);
}

.testimonial-rating-text {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.client-info {
    position: relative;
    z-index: 2;
}

.client-info .content h3 {
    color: #4A6FFF !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.3rem !important;
}

.client-info .content p {
    color: #6b7280 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin: 0 !important;
    font-style: normal !important;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0.1;
    z-index: 1;
}

.quote-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

/* Navigation Buttons */
.array-button {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.array-prev,
.array-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(74, 111, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    cursor: pointer;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 15px rgba(74, 111, 255, 0.1) !important;
}

.array-prev:hover,
.array-next:hover {
    background: rgba(74, 111, 255, 0.1) !important;
    border-color: rgba(74, 111, 255, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(74, 111, 255, 0.2) !important;
}

.array-prev svg path,
.array-next svg path {
    fill: #4A6FFF !important;
    transition: fill 0.3s ease !important;
}

.array-prev:hover svg path,
.array-next:hover svg path {
    fill: #2B4DFF !important;
}

/* Testimonial Image */
.testimonial-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(74, 111, 255, 0.15);
    transition: all 0.3s ease;
}

.testimonial-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(74, 111, 255, 0.2);
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

/* Responsive Design for Testimonial Section */
@media (max-width: 768px) {
    .testimonial-section-3 {
        padding: 60px 0 !important;
    }
    
    .testimonial-box-items {
        padding: 2rem 1.5rem !important;
        margin-bottom: 2rem;
    }
    
    .testimonial-box-items h2 {
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
    }
    
    .testimonial-rating {
        margin-bottom: 1rem;
    }
    
    .testimonial-stars {
        gap: 0.1rem;
    }
    
    .testimonial-star {
        font-size: 1rem;
    }
    
    .testimonial-rating-text {
        font-size: 0.8rem;
    }
    
    .testimonial-box-items p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .client-info .content h3 {
        font-size: 1.1rem !important;
    }
    
    .client-info .content p {
        font-size: 0.9rem !important;
    }
    
    .quote-icon {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .quote-icon img {
        width: 30px;
        height: 30px;
    }
    
    .array-button {
        justify-content: center !important;
        margin-top: 1.5rem;
    }
    
    .array-prev,
    .array-next {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-image {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonial-box-items {
        padding: 1.5rem 1rem !important;
    }
    
    .testimonial-box-items h2 {
        font-size: 1.4rem !important;
    }
    
    .testimonial-star {
        font-size: 0.9rem;
    }
    
    .testimonial-rating-text {
        font-size: 0.75rem;
    }
    
    .testimonial-box-items p {
        font-size: 0.95rem !important;
    }
    
    .array-prev,
    .array-next {
        width: 40px;
        height: 40px;
    }
}
