/* ========================================
   AskBee - Custom Styles for Bootstrap 5
   ======================================== */

/* CSS Variables */
:root {
    --primary-blue: #0d6efd;
    --dark-blue: #1a1f3a;
    --medium-blue: #2a3f6f;
    --orange: #FF6B35;
    --purple: #8B5CF6;
	
	--primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #3b82f6;
    --secondary-yellow: #fbbf24;
    --gray-50: #f9fafb;
   	--gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-900: #111827;

}

  :root {
            --primary-blue: #2563eb;
            --primary-blue-dark: #1d4ed8;
            --primary-blue-light: #3b82f6;
            --secondary-yellow: #fbbf24;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-600: #4b5563;
            --gray-900: #111827;
        }


/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Custom Colors */
.text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.bg-purple {
    background-color: var(--purple) !important;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(10deg) scale(1.05);
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}
.text-success {
    --bs-text-opacity: 1;
    color: rgb(14 197 112) !important;
}
.nav-link:hover {
    color: #111827;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 12px;
    margin-top: 8px;
    min-width: 240px;
    animation: dropdownSlideIn 0.3s ease;
}
.metric-card div.small { word-wrap: break-word;}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.lead {
    font-size: 1rem;
    font-weight: 300;
}
.dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    color: #374151;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
    color: var(--primary-blue);
    transform: translateX(4px);
}

.dropdown-item:active {
    background-color: #e5e7eb;
    color: var(--primary-blue);
}

.dropdown-divider {
    margin: 8px 0;
    opacity: 0.1;
}

.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: 
        radial-gradient(circle at 10% 20%, white 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, #06b6d4 0%, transparent 50%);
    pointer-events: none;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    color: white;
    font-size: 14px;
}

/* Hero Image Section */
.hero-image-wrapper {
    position: relative;
    animation: fadeIn 1s ease;
}

.hero-dashboard-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Floating Social Icons */
.floating-social-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    font-size: 24px;
    animation: floatSocial 3s ease-in-out infinite;
}

.floating-linkedin {
    top: 10%;
    right: 15%;
    color: #0077b5;
    animation-delay: 0s;
}

.floating-google {
    top: 5%;
    right: 35%;
    color: #db4437;
    animation-delay: 0.5s;
}

.floating-facebook {
    top: 25%;
    left: 5%;
    color: #1877f2;
    animation-delay: 1s;
}

.floating-instagram {
    top: 45%;
    left: 10%;
    color: #e4405f;
    animation-delay: 1.5s;
}

@keyframes floatSocial {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
    }
}

.floating-social-icon:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* Hero Chat Interface */
.hero-chat-interface {
    animation: fadeInUp 1s ease;
}

.chat-input-card {
    background: rgba(1, 61, 128, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: slideInRight 0.8s ease;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-input-field {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 20px;
    color: white;
    font-size: 15px;
    outline: none;
}

.chat-input-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}



.chat-send-button {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
}

/* Suggested Questions */
.suggested-questions {
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s both;
}

.suggestion-chip {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
	font-size: 0.8rem;
}
.fs-6{font-size: 1.1rem !important;}
.fs-7{font-size: 0.9rem !important;}
.fs-8{font-size: 0.8rem !important;}
.fs-9{font-size: 0.7rem !important;}
.fs-10{font-size: 0.7rem !important;}

.suggestion-chip:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Chat Response Card */
.chat-response-card {
    background: rgba(1, 61, 128, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.response-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.response-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.response-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 15px;
}

.response-text strong {
    color: white;
    font-weight: 700;
}

.response-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.metric-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.metric-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 8px;
}

.metric-value {
    color:#000;
    font-size: 20px;
    font-weight: 700;
}
.metric-value1 {
    color:#fff;
    font-size: 20px;
    font-weight: 700;
}
.imgm-top{margin-top:-150px }

.response-source {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.source-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease infinite;margin-top: 10px;
}

/* ========================================
   Stats Section
   ======================================== */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
}

.stat-icon {
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stats-section {
            background: var(--gray-50);
            padding: 4rem 0;
        }

        .stat-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .stat-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .stat-icon {
            width: 64px;
            height: 64px;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
        }

        .stat-value {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }

.hero-section {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
    color: white;
    
    position: relative;
    overflow: hidden;
}

.chat-interface, .chat-interface:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(30, 64, 175, 0.4) 100%);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.chat-input {
    background: rgba(29, 78, 216, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.suggestion-btn {
    background: rgba(29, 78, 216, 0.5);
    color: white;
    border: none;
    padding: 0.5rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}
.result-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 1.5rem;
}
.stat-card-mini {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 0.75rem;
    padding: 1rem;
}
/* ========================================
   How It Works Section
   ======================================== */
.how-it-works-section {
    background: linear-gradient(180deg, #f9fafb 0%, white 100%);
}

.how-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease both;
}

.how-card:nth-child(1) { animation-delay: 0.1s; }
.how-card:nth-child(2) { animation-delay: 0.2s; }
.how-card:nth-child(3) { animation-delay: 0.3s; }

.how-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
}

.how-it-works {
            padding: 5rem 0;
            background: white;
        }

        .step-card {
            background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
            border-radius: 1rem;
            padding: 2rem;
            height: 100%;
            position: relative;
        }

        .step-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .step-number {
            position: absolute;
            top: -12px;
            left: -12px;
            width: 32px;
            height: 32px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .step-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-blue);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }

        .time-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-blue);
            font-size: 0.875rem;
        }


/* ========================================
   Platform Showcase Section
   ======================================== */
.platform-tab {
    transition: all 0.3s ease;
}

.platform-tab:hover {
    transform: translateY(-2px);
}

.platform-tab.active {
    background-color: var(--primary-blue) !important;
    color: white !important;
    border-color: var(--primary-blue) !important;
}

.platform-content-card {
    animation: fadeIn 0.5s ease;
}

.platform-title,
.platform-description {
    transition: opacity 0.3s ease;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-check {
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-check {
    transform: scale(1.15);
}

/* Dashboard Mockup */
.dashboard-mockup {
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: scale(1.02);
}

.chat-avatar {
    transition: transform 0.3s ease;
}

.chat-avatar:hover {
    transform: rotate(360deg);
}

.chat-question {
    animation: slideInRight 0.5s ease;
}

.chat-response {
    animation: slideInLeft 0.5s ease 0.2s both;
}

.metric-card {
    transition: transform 0.5s ease;
}

.metric-card:hover {
    transform: scale(1.05);
}

.chart-bar {
    transition: all 0.3s ease;
    animation: growUp 0.8s ease both;
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.15s; }
.chart-bar:nth-child(3) { animation-delay: 0.2s; }
.chart-bar:nth-child(4) { animation-delay: 0.25s; }
.chart-bar:nth-child(5) { animation-delay: 0.3s; }
.chart-bar:nth-child(6) { animation-delay: 0.35s; }
.chart-bar:nth-child(7) { animation-delay: 0.4s; }
.chart-bar:nth-child(8) { animation-delay: 0.45s; }
.chart-bar:nth-child(9) { animation-delay: 0.5s; }
.chart-bar:nth-child(10) { animation-delay: 0.55s; }
.chart-bar:nth-child(11) { animation-delay: 0.6s; }
.chart-bar:nth-child(12) { animation-delay: 0.65s; }

.chart-bar:hover {
    filter: brightness(1.1);
    transform: scaleY(1.05);
}

.send-btn {
    transition: transform 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
}

.floating-badge {
    animation: bounce 2s ease infinite;
}


/* Platform Demo */
        .platform-demo {
            background: linear-gradient(to bottom, var(--gray-50), white);
            padding: 5rem 0;
        }

        .platform-tabs {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .platform-tab {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 2px solid #e5e7eb;
            background: white;
            color: var(--gray-600);
            cursor: pointer;
            font-weight: 500;
        }

        .platform-tab:hover {
            background: var(--primary-blue);
			Color:#fff;
        }

        .platform-tab.active {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }

        .demo-interface {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border: 1px solid #e5e7eb;
        }

        .demo-sidebar {
           
            padding: 2rem;
           
        }

        .ai-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #dbeafe;
            color: #1d4ed8;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--primary-blue);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .feature-item {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .feature-check {
            width: 20px;
            height: 20px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .demo-content {
            padding: 2rem;
        }

        .assistant-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .assistant-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            margin-right: 0.25rem;
        }

        .question-bubble {
            background: var(--primary-blue);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 1rem;
            border-bottom-right-radius: 0.25rem;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .answer-card {
           /* background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
*/            border-radius: 1rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .chart-container {
            display: flex;
            align-items: flex-end;
            gap: 2px;
            height: 100px;
            margin-top: 1rem;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(to top, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
            border-radius: 4px 4px 0 0;
            cursor: pointer;
        }

        .chart-bar:hover {
            background: linear-gradient(to top, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
        }





/* ========================================
   Integration Section
   ======================================== */
.integration-center {
    animation: pulse 3s ease infinite;
}

.integration-item {
    animation: float 4s ease-in-out infinite;
}

.integration-item:nth-child(odd) {
    animation-delay: -2s;
}

.integration-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
}


/*  ========================================
	Real Questions Section 
 	======================================== */

        .real-questions {
/*            background: linear-gradient(to bottom, white, var(--gray-50));
*/            padding: 5rem 0;
        }

        .question-card {
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e7eb;
            margin-bottom: 2rem;
        }

        .question-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .platform-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }

        .question-section {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .answer-section {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-radius: 1rem;
            padding: 1.5rem;
        }

        .answer-icon {
            width: 48px;
            height: 32px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .data-viz {
            background: var(--gray-50);
            border-radius: 1rem;
            padding: 1.5rem;
        }

        .metric-card {
            background: white;
            border-radius: 0.75rem;
            padding: 1rem;
            text-align: center;
        }

        .progress-item {
            background: white;
            border-radius: 0.75rem;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .progress-bar-custom {
            height: 8px;
            background: #e5e7eb;
            border-radius: 50px;
            overflow: hidden;
            margin-top: 0.5rem;
        }

        .progress-fill {
            height: 100%;
            border-radius: 50px;
            transition: width 1s ease;
        }



/* ========================================
   CTA Section
   ======================================== */
.cta-card {
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: scale(1.02);
}

.company-logo {
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.1);
}

 /* CTA Section */
        .cta-section1 {
            /*background: var(--gray-50);*/
            padding: 5rem 0;
        }

        .cta-card {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            border-radius: 1.5rem;
            padding: 4rem 2rem;
            text-align: center;
            color: white;
            box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
            margin-bottom: 4rem;
        }

        .btn-yellow {
            background: var(--secondary-yellow);
            color: var(--gray-900);
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            border: none;
        }

        .btn-yellow:hover {
            background: #f59e0b;
            color: var(--gray-900);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
        }

        .company-logo {
            background: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .company-logo:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }


   
/* ========================================
Testimonials
======================================== */

        .testimonials {
            padding: 5rem 0;
            background: white;
        }

        .testimonial-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e7eb;
            height: 100%;
        }

        .testimonial-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }


/* ========================================
   Footer
   ======================================== */
.footer-links a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: white !important;
}

.social-icon {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-3px);
}


/*Careers End*/

/Privacy policy start/
.pcontent h4 {font-size: 19px;font-weight: 700;}
.pcontent p {margin-bottom: 20px;}
.pcontent strong {margin-bottom: 10px;}
.pcontent ul {line-height: 30px;}
.privacy-ban{min-height:240px;}
.maincontent1 h4{font-size:1.3rem;}


/Privacy policy end/


/* ========================================
   Animations & Keyframes
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes growUp {
    from { transform: scaleY(0); transform-origin: bottom; }
    to { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    .display-3 { font-size: 2.5rem; }
    .display-5 { font-size: 2rem; }
    
    .hero-section {
        min-height: auto;
    }
    
    .integration-circle-wrapper {
        height: 400px !important;
        max-width: 400px !important;
    }
    
    .integration-icon {
        width: 48px !important;
        height: 48px !important;
    }
    
    .integration-center {
        width: 100px !important;
        height: 100px !important;
    }
}

@media (max-width: 767px) {
    .display-3 { font-size: 2rem; }
    .display-5 { font-size: 1.75rem; }
    
    
    .platform-content-card {
        padding: 24px !important;
    }
    
    .dashboard-mockup {
        padding: 16px !important;
    }
    
    .integration-circle-wrapper {
        height: 350px !important;
        max-width: 350px !important;
    }
    
    .integration-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
    
    .integration-center {
        width: 80px !important;
        height: 80px !important;
    }
    
    .integration-center .fs-1 {
        font-size: 1.5rem !important;
    }
}

 @media (max-width: 768px) {
            hero-section {
                padding: 3rem 0;
            }
            .how-it-works, .platform-demo, .real-questions, .testimonials, .stats-section { padding: 2rem 0;}
	 .imgm-top {  margin-top: -70px;}
            .stat-value {
                font-size: 2rem;
            }
            
            .platform-tabs {
                flex-direction: column;
            }
            
            .platform-tab {
                width: 100%;
                justify-content: center;
            }
        }
.maincontent1 h4{font-size:1.1rem;}
.contentprivacy h4{ font-weight: 700 !important; font-size: 18px;}

/* ========================================
   Utility Classes
   ======================================== */
.shadow-lg-hover:hover {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.transition-all {
    transition: all 0.3s ease;
}




/*menu over start*/
li.nav-item a {
   
	border-bottom:3px #ffffff solid;
}
li.nav-item .active {
    color: #0b5ed7 !important;
	border-bottom:3px #0b5ed7 solid;
}
li.nav-item a:hover {
    color: #0b5ed7 !important;
	border-bottom:3px #0b5ed7 solid;
}
/*menu over end*/


/*contact page start*/

.contact-section {
    background-color: #f4f7fc; /* Match body background */
    min-height: 100vh; /* Ensure it takes full viewport height */
    display: flex; /* For vertical centering */
    align-items: center; /* For vertical centering */
}

.contact-card {
    background-color: #ffffff;
    border: none;
    overflow: hidden; /* Important for rounded corners on inner divs */
}

/* Rounded corners for the card, adapting for inner elements */
.rounded-4 { border-radius: 1.5rem !important; }
.rounded-start-4 { border-top-left-radius: 1.5rem !important; border-bottom-left-radius: 1.5rem !important; }
.rounded-end-4 { border-top-right-radius: 1.5rem !important; border-bottom-right-radius: 1.5rem !important; }


/* Custom Gradient Background for Info Column */
.bg-primary-gradient {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Blue gradient */
    padding: 2.5rem !important; /* Adjust padding */
}

/* Opacity for white text on gradient background */
.border-white-opacity {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.info-block h2 {
    font-size: 2.2rem;
}
.info-block p {
    font-size: 1rem;
    opacity: 0.85;
}

.contact-details .d-flex {
    margin-bottom: 1.5rem !important;
}

.contact-details i {
    color: #fff;
    opacity: 0.8;
    width: 30px; /* Fixed width for icons */
    text-align: center;
}

.contact-details p.mb-0 {
    font-size: 0.95rem;
    opacity: 0.9;
}
.contact-details a {
    font-size: 0.9rem;
}

.social-icons a {
    transition: transform 0.2s ease-in-out;
}
.social-icons a:hover {
    color: #fff !important;
    transform: translateY(-3px);
}


/* Form Styling */
.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

textarea.form-control {
    resize: vertical; /* Allow vertical resizing */
    min-height: 120px;
}

.btn-primary-custom {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom:hover {
    background-color: #0056b3;
    border-color: #004c99;
    transform: translateY(-2px);
}

.form-text a {
    color: #007bff;
    font-weight: 500;
}
.form-text a:hover {
    color: #0056b3;
    text-decoration: underline !important;
}
.contact-section button{color:#fff;}


  

        * {
            transition: all 0.3s ease;
        }

               .btn-primary {
            background: var(--primary-blue);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
        }

        .btn-primary:hover {
            background: var(--primary-blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .banner-section-ag {
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
            color: white;
            padding: 5rem 0 3rem;
            position: relative;
            overflow: hidden;
        }

        .banner-section-ag::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(80px);
        }

        .banner-section-ag::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(80px);
        }

        .intro-section {
            padding: 5rem 0;
            background: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--gray-900);
        }

        .why-choose-section {
            padding: 5rem 0;
            background: var(--gray-50);
        }

        .feature-card {
            background: white;
            border-radius: 1.5rem;
            padding: 0;
            margin-bottom: 4rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e5e7eb;
            overflow: hidden;
        }

        .feature-card:hover {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            transform: translateY(-8px);
        }

        .feature-content {
            padding: 3rem;
        }

        .feature-illustration {
            width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 2rem;
        }

        .illustration-svg {
            width: 100%;
            height: 100%;
            max-width: 500px;
        }

        .data-hub-illustration {
            background: #AAD3FF; 
        }

        .white-label-illustration {
            background: #D8C3FA;
        }

        .peace-mind-illustration {
            background: #97F6D7;
        }

        .cost-illustration {
            background:#FCEAD5;
        }

        .integration-illustration {
            background:#FEBCBC;
        }

        .feature-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            color: white;
            border-radius: 12px;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .feature-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1.5rem;
        }

        .feature-description {
            font-size: 1.125rem;
            color: var(--gray-600);
            line-height: 1.8;
        }

        .feature-tag {
            display: inline-block;
            background: #eff6ff;
            color: var(--primary-blue);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .cta-section {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }

        .btn-yellow {
            background: var(--secondary-yellow);
            color: var(--gray-900);
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            border: none;
        }

        .btn-yellow:hover {
            background: #f59e0b;
            color: var(--gray-900);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
        }

       
        @media (max-width: 768px) {
            .banner-section {
                padding: 3rem 0 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }

            .feature-content {
                padding: 2rem 1.5rem;
            }
            
            .feature-illustration {
                height: 300px;
            }
        }
   

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .bg-primary-gradient {
        border-radius: 1.5rem 1.5rem 0 0 !important; /* Top rounded corners for small screens */
    }
    .contact-form-column {
        border-radius: 0 0 1.5rem 1.5rem !important; /* Bottom rounded corners for small screens */
    }
}

/* Ensure padding on cols */
.col-md-5, .col-md-7 {
    padding: 2.5rem; /* Consistent padding */
}
/*contact page end*/