/**
 * Main Application Styles
 * Sookth Solutions - Banking Software Solutions
 */

/* ===================================
   CSS Variables / Theme
   =================================== */
:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary-color: #6c757d;
    --dark-color: #121212;
    --light-color: #f8f9fa;
    --accent-color: #ffc107;
    --success-color: #198754;
    --danger-color: #dc3545;
    --transition-speed: 0.3s;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Base Styles
   =================================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: color var(--transition-speed);
}

/* ===================================
   Preloader
   =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.preloader-text {
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(90deg, #4dabf7, #339af0, #228be6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 50px;
    border-radius: 50%;
}

.nav-link {
    position: relative;
    font-weight: 600;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #e9ecef !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #ffd43b);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--accent-color) !important;
    background: rgba(255, 193, 7, 0.1);
}

.dark-mode-toggle {
    background: transparent;
    border: 2px solid #495057;
    color: #e9ecef;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #2d2d2d;
        border-radius: 10px;
        padding: 20px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
        margin: 4px 0;
        text-align: center;
    }

    .dark-mode-toggle {
        margin-top: 10px;
        justify-content: center;
        width: 100%;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6610f2 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,261.3C672,256,768,224,864,197.3C960,171,1056,149,1152,165.3C1248,181,1344,235,1392,261.3L1440,288L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-btn {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6610f2 100%);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
    margin-top: 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #6610f2);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ===================================
   Cards & Features
   =================================== */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg) !important;
}

.feature-card {
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    background: white;
    box-shadow: var(--box-shadow);
}

.feature-card:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6610f2 100%);
    color: white;
}

.feature-card:hover .feature-icon {
    color: white;
    transform: scale(1.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Floating animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ===================================
   Testimonials
   =================================== */
.testimonial-card {
    border-radius: 15px;
    padding: 30px;
    margin: 15px 0;
    box-shadow: var(--box-shadow);
    position: relative;
    background: white;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6610f2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: white;
    color: var(--primary-color);
}

/* ===================================
   Footer
   =================================== */
footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 30px;
}

footer h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--accent-color);
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--accent-color);
}

.text-accent {
    color: #ffd43b !important;
}

/* Footer text overrides for visibility */
footer .text-muted {
    color: #b0b0b0 !important;
}

footer p {
    color: #c0c0c0;
}

footer hr {
    opacity: 0.3;
}

footer small {
    color: #c0c0c0;
}

/* ===================================
   WhatsApp Float
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================================
   Services Page
   =================================== */
.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    padding: 5px 0;
    color: var(--secondary-color);
}

.service-features li i {
    color: var(--success-color);
}

/* Technology Stack */
.tech-stack-section {
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    justify-items: center;
}

.tech-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    color: white;
}

.tech-item span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Case Studies */
.case-studies-section {
    background: #f8f9fa;
}

.case-study-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.case-study-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.case-study-tag {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-card h5 {
    color: #333;
    margin-bottom: 10px;
}

.case-study-card p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.case-study-stats {
    display: flex;
    gap: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.case-study-stats .stat {
    text-align: center;
}

.case-study-stats .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.case-study-stats .label {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

/* Pricing Cards */
.pricing-section {
    background: white;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    color: white;
}

.pricing-header h4 {
    margin-bottom: 5px;
}

.pricing-desc {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    font-size: 1.1rem;
}

.pricing-features li .bi-check-circle-fill {
    color: var(--success-color);
}

.pricing-features li .bi-x-circle {
    color: #ccc;
}

.pricing-features li.disabled {
    color: #999;
}

/* Process Steps */
.process-section {
    background: #f8f9fa;
}

.process-step {
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* ===================================
   About Page
   =================================== */
.mission-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.mission-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.about-card {
    max-width: 300px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.values-section {
    background: #f8f9fa;
}

/* Timeline */
.timeline-section {
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), #6610f2);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(13, 110, 253, 0.3);
}

.timeline-content {
    background: white;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0 20px;
    max-width: 350px;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--secondary-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Achievements */
.achievements-section {
    background: white;
}

.achievement-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ffd43b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.achievement-card h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement-card p {
    color: var(--secondary-color);
    margin: 0;
}

/* Team */
.team-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.team-image-wrapper {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-role {
    font-weight: 600;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ===================================
   Contact Page
   =================================== */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-info-card h4 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
    opacity: 0.9;
}

.contact-text a {
    color: white;
    opacity: 0.9;
}

.contact-text a:hover {
    opacity: 1;
}

/* Office Hours */
.office-hours h5 {
    font-size: 1rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Social Icons */
.contact-social h6 {
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-card h4 {
    margin-bottom: 1.5rem;
}

.contact-form-card .input-group-text {
    background: #f8f9fa;
    border-right: none;
}

.contact-form-card .form-control {
    border-left: none;
}

.contact-form-card .input-group .form-control:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

.contact-form-card .input-group:focus-within {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-radius: 0.375rem;
}

.contact-form-card .input-group:focus-within .input-group-text {
    border-color: #86b7fe;
}

.contact-form-card .input-group:focus-within .form-control {
    border-color: #86b7fe;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quick-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.quick-contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.quick-contact-item .label {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.quick-contact-item a,
.quick-contact-item span:not(.label) {
    font-weight: 600;
    color: #333;
}

.quick-contact-item a:hover {
    color: var(--primary-color);
}

/* Map Container */
.map-container {
    border-top: 4px solid var(--primary-color);
}

.map-container iframe {
    display: block;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 20px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ===================================
   Dark Mode
   =================================== */
.dark-mode {
    background-color: var(--dark-color);
    color: #e0e0e0;
}

.dark-mode .navbar {
    background-color: #1f1f1f !important;
}

.dark-mode .card,
.dark-mode .feature-card,
.dark-mode .service-card,
.dark-mode .testimonial-card,
.dark-mode .team-card,
.dark-mode .contact-form-card,
.dark-mode .value-card {
    background-color: #2a2a2a;
    color: #e0e0e0;
}

.dark-mode .stats-section,
.dark-mode .process-section,
.dark-mode .values-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}

.dark-mode .stat-number {
    color: #90caf9;
}

.dark-mode .stat-text {
    color: #bbb;
}

.dark-mode .testimonial-author {
    color: #90caf9;
}

.dark-mode .btn-outline-primary {
    border-color: #90caf9;
    color: #90caf9;
}

.dark-mode .btn-outline-primary:hover {
    background-color: #90caf9;
    color: #000;
}

.dark-mode #preloader {
    background: #121212;
}

.dark-mode .preloader-text {
    color: #90caf9;
}

/* ===================================
   Platform Cards
   =================================== */
.platform-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.15);
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.platform-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.platform-desc {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.platform-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-features li i {
    color: var(--success-color);
}

.btn-platform {
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-platform:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
    color: white;
}

.dark-mode .platform-card {
    background: #2a2a2a;
}

.dark-mode .platform-title {
    color: #e0e0e0;
}

.dark-mode .platform-desc {
    color: #aaa;
}

.dark-mode .platform-features li {
    color: #ccc;
}

/* ===================================
   Platform Test Links
   =================================== */
.platform-test-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.platform-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
    text-align: center;
}

.platform-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(13, 110, 253, 0.16);
    border-color: rgba(13, 110, 253, 0.2);
}

.platform-link-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.platform-link-title {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--dark-color);
}

.platform-link-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.dark-mode .platform-test-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.dark-mode .platform-link-card {
    background: #1f2937;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.dark-mode .platform-link-title {
    color: #e5e7eb;
}

/* ===================================
   Stats Section Enhanced
   =================================== */
.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item {
    position: relative;
    padding: 30px 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon {
    transition: transform 0.3s ease;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.how-it-works-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.how-it-works-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.how-it-works-card p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   Testimonials Enhanced
   =================================== */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    border-radius: 15px;
    padding: 30px;
    margin: 15px 0;
    box-shadow: var(--box-shadow);
    position: relative;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-rating {
    font-size: 1rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-avatar {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* ===================================
   FAQ Section (Accordion)
   =================================== */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    background: white;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 20px;
    line-height: 1.7;
    color: var(--secondary-color);
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    padding: 15px 25px;
    border: 2px solid #dee2e6;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
    font-weight: 600;
}

/* ===================================
   CTA Section Enhanced
   =================================== */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-section .btn-outline-light {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.cta-section .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
    color: white;
}

/* ===================================
   Animation Classes
   =================================== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   Dark Mode Additional
   =================================== */
.dark-mode .how-it-works-card {
    background: #2a2a2a;
}

.dark-mode .how-it-works-card h5 {
    color: #69b3ff;
}

.dark-mode .how-it-works-card p {
    color: #aaa;
}

.dark-mode .testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.dark-mode .testimonial-card {
    background: #2a2a2a;
}

.dark-mode .testimonial-text {
    color: #ccc;
}

.dark-mode .accordion-item {
    background: #2a2a2a;
}

.dark-mode .accordion-button {
    background: #2a2a2a;
    color: #e0e0e0;
}

.dark-mode .accordion-body {
    background: #2a2a2a;
    color: #aaa;
}

.dark-mode .newsletter-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.dark-mode .newsletter-form .form-control {
    background: #333;
    border-color: #444;
    color: #e0e0e0;
}

.dark-mode .stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.dark-mode .stat-text {
    color: #aaa;
}

/* ===================================
   Responsive Adjustments
   =================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 120px 0 40px;
    }

    .contact-info-card {
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .me-3 {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    .newsletter-form .form-control {
        border-radius: 50px;
        margin-bottom: 10px;
    }

    .newsletter-form .btn {
        border-radius: 50px;
        width: 100%;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        margin: 0;
    }
}

/* Dark mode additional styles */
.dark-mode .timeline-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.dark-mode .timeline-content {
    background: #2a2a2a;
}

.dark-mode .achievement-card {
    background: #2a2a2a;
}

.dark-mode .achievement-card h5 {
    color: #69b3ff;
}

.dark-mode .achievement-card p {
    color: #aaa;
}

.dark-mode .tech-stack-section {
    background: #1a1a1a;
}

.dark-mode .tech-icon {
    background: linear-gradient(135deg, #2a2a2a, #333);
}

.dark-mode .tech-item span {
    color: #aaa;
}

.dark-mode .case-studies-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.dark-mode .case-study-card {
    background: #2a2a2a;
}

.dark-mode .case-study-card h5 {
    color: #e0e0e0;
}

.dark-mode .case-study-card p {
    color: #aaa;
}

.dark-mode .case-study-stats {
    border-color: #444;
}

.dark-mode .pricing-section {
    background: #1a1a1a;
}

.dark-mode .pricing-card {
    background: #2a2a2a;
}

.dark-mode .pricing-header {
    background: linear-gradient(135deg, #333, #2a2a2a);
}

.dark-mode .pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
}

.dark-mode .pricing-features li {
    color: #ccc;
}

.dark-mode .pricing-features li.disabled {
    color: #666;
}

.dark-mode .quick-contact-bar {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.dark-mode .quick-contact-item a,
.dark-mode .quick-contact-item span:not(.label) {
    color: #e0e0e0;
}

.dark-mode .contact-form-card .input-group-text {
    background: #333;
    border-color: #444;
    color: #aaa;
}

.dark-mode .contact-form-card .form-control,
.dark-mode .contact-form-card .form-select {
    background: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

.dark-mode .achievements-section {
    background: #1a1a1a;
}

