/* 
 * Experimenter.ai - Main Stylesheet
 * A modern, responsive design for an AI solutions company
 */

:root {
    /* Color Variables */
    --primary-color: #0066ff;
    --secondary-color: #00c7ff;
    --dark-bg: #0a1929;
    --darker-bg: #061220;
    --light-text: #ffffff;
    --gray-text: #a0aec0;
    --highlight: #00eeff;
    --card-bg: rgba(15, 23, 42, 0.6);
    --gradient-start: #0066ff;
    --gradient-end: #00c7ff;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--highlight);
}

.btn {
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border: none;
    color: var(--light-text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.btn-link {
    color: var(--primary-color);
    padding: 0;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--light-text), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Top Banner */
.top-banner {
    background-color: var(--darker-bg);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-banner a {
    color: var(--secondary-color);
}

.top-banner a:hover {
    text-decoration: underline;
}

.watch-now {
    font-weight: 500;
}

/* Navigation */
.navbar {
    background-color: var(--dark-bg);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-text {
    background: linear-gradient(to right, var(--light-text), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

.dropdown-menu {
    background-color: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: var(--light-text);
    padding: 0.6rem 1.5rem;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
}

/* Common Section Styles */
.hero-section,
.why-hero-section,
.solutions-hero-section,
.industries-hero-section,
.company-hero-section,
.resources-hero-section,
.blog-hero-section,
.careers-hero-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Section-specific backgrounds */
.why-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 199, 255, 0.15), transparent 70%);
    z-index: 0;
}

.solutions-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 102, 255, 0.15), transparent 70%);
    z-index: 0;
}

.industries-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 199, 255, 0.1), transparent 70%);
    z-index: 0;
}

/* Careers Styles */
.career-tag {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.culture-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.position-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.position-content {
    padding: 2rem;
}

.position-tag {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.position-requirements {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.position-requirements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.position-requirements li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.position-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.position-meta i {
    margin-right: 0.5rem;
}

.position-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

/* Blog Styles */
.blog-tag {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.featured-post-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-post-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.featured-post-card .post-image {
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
}

.featured-post-card .post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.post-meta i {
    margin-right: 0.5rem;
}

.trending-posts {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.trending-post {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trending-post:last-child {
    border-bottom: none;
}

.trending-post .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.5;
}

.trending-post h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.category-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.category-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.category-card .post-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Card Styles */
.case-study-card,
.white-paper-card,
.blog-card,
.team-card,
.solution-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover,
.white-paper-card:hover,
.blog-card:hover,
.team-card:hover,
.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.2);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    left: -1px;
    top: 0;
}

/* Stats and Metrics */
.stat-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--light-text), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Styles */
.contact-form input,
.contact-form textarea,
.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    padding: 0.8rem 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: none;
    color: var(--light-text);
}

/* Resource Cards */
.resource-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.resource-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Industry Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

.industry-icon {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.industry-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.industry-icon i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.15), transparent 70%);
    z-index: 0;
}

.hero-section h1 {
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, var(--light-text), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-highlight {
    display: inline-block;
    background-color: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.platform-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    width: 80%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.platform-logo {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.platform-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.platform-features .feature {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Responsive adjustments for platform features */
@media (max-width: 991.98px) {
    .platform-features .feature {
        font-size: 0.85rem;
        padding: 0.7rem 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .platform-features .feature {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    .platform-card {
        width: 90%;
    }
}

@media (max-width: 575.98px) {
    .platform-features .feature {
        font-size: 0.75rem;
        padding: 0.5rem 0.7rem;
    }
    .platform-card {
        width: 95%;
    }
}

.platform-badge {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 3;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 80%;
    white-space: normal;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .platform-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        max-width: 90%;
    }
}

@media (max-width: 575.98px) {
    .platform-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        max-width: 95%;
    }
}

.badge-content {
    display: flex;
    align-items: center;
}

.badge-tag {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    margin-left: 0.8rem;
}

/* General Solutions Section */
.general-solutions-section {
    background-color: var(--darker-bg);
    padding: 5rem 0;
}

.general-solutions-section .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    width: 100%;
}

/* Desktop layout */
@media (min-width: 992px) {
    .general-solutions-section .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Tablet layout */
@media (min-width: 768px) and (max-width: 991.98px) {
    .general-solutions-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile layout */
@media (max-width: 767.98px) {
    .general-solutions-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Small Mobile adjustments */
@media (max-width: 575.98px) {
    .general-solutions-section .row {
        margin-right: -10px;
        margin-left: -10px;
    }
    
    .general-solutions-section [class*='col-'] {
        padding-right: 10px;
        padding-left: 10px;
    }
}

.solution-showcase-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.solution-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.solution-showcase-card .solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-showcase-card .solution-icon i {
    font-size: 1.5rem;
    color: var(--light-text);
}

.solution-showcase-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--light-text);
}

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

.solution-features li {
    color: var(--gray-text);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.solution-features li:before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive Breakpoints */
/* Desktop (> 992px) */
@media (min-width: 992px) {
    .solution-showcase-card {
        padding: 2rem;
    }
    
    .solution-showcase-card h3 {
        font-size: 1.4rem;
    }
    
    .solution-features li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
}

/* Tablet (768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .solution-showcase-card {
        padding: 1.8rem;
    }
    
    .solution-showcase-card h3 {
        font-size: 1.2rem;
    }
    
    .solution-features li {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }
    
    .row-cols-md-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile (< 767.98px) */
/* Responsive Design */
/* Desktop (>992px) */
@media (min-width: 992px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-section {
        min-height: 80vh;
    }

    .platform-visual {
        transform: scale(1.1);
    }
}

/* Tablet (768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }

    .platform-visual {
        transform: scale(0.9);
    }

    .section-title {
        font-size: 2rem;
    }

    .case-study-card,
    .solution-card,
    .industry-card {
        margin-bottom: 2rem;
    }
}

/* Mobile (<767.98px) */
@media (max-width: 767.98px) {
    .benefit-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-card i,
    .benefit-item i {
        font-size: 2rem;
    }

    .value-item {
        gap: 1rem;
    }

    .position-content {
        padding: 1.5rem;
    }

    .position-filters {
        gap: 0.5rem;
    }

    .process-step {
        gap: 1rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .featured-post-card .post-image {
        height: 200px;
    }

    .featured-post-card .post-content {
        padding: 1.5rem;
    }

    .trending-posts {
        margin-top: 2rem;
    }

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

    .category-card {
        padding: 1.5rem;
    }
    .hero-section {
        padding: 3rem 0;
    }

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

    .platform-visual {
        transform: scale(0.8);
        margin-top: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .solution-showcase-card {
        padding: 1.5rem;
    }

    .navbar-collapse {
        background: var(--darker-bg);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    .top-banner {
        font-size: 0.8rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Small Mobile (<575.98px) */
@media (max-width: 575.98px) {
    .benefit-card,
    .benefit-item {
        padding: 1rem;
    }

    .benefit-card i,
    .benefit-item i {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .value-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .position-content {
        padding: 1rem;
    }

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

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .step-number {
        margin: 0 auto;
    }

    .career-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    .featured-post-card .post-image {
        height: 150px;
    }

    .featured-post-card .post-content {
        padding: 1rem;
    }

    .featured-post-card h2 {
        font-size: 1.5rem;
    }

    .trending-post .number {
        font-size: 1.2rem;
    }

    .trending-post h4 {
        font-size: 1rem;
    }

    .category-card {
        padding: 1rem;
    }

    .category-card i {
        font-size: 1.5rem;
    }

    .blog-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .feature-highlight {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .platform-visual {
        transform: scale(0.7);
    }

    .section-title {
        font-size: 1.6rem;
    }

    .top-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .top-banner .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
}
    
    .solution-showcase-card .solution-icon {
        width: 50px;
        height: 50px;
    }
    
    .solution-showcase-card .solution-icon i {
        font-size: 1.3rem;
    }
    
    .solution-features li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .row-cols-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Small Mobile (< 575.98px) */
@media (max-width: 575.98px) {
    .solution-showcase-card {
        padding: 1.2rem;
    }
    
    .solution-showcase-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .solution-features li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding-left: 1.2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Solutions Section */
.solutions-section {
    background-color: var(--darker-bg);
    padding: 5rem 0;
}

.solution-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon i {
    font-size: 1.5rem;
    color: var(--light-text);
}

.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

/* Industries Section */
.industries-section {
    background-color: var(--dark-bg);
    padding: 5rem 0;
}

.industry-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-icon i {
    font-size: 1.5rem;
    color: var(--light-text);
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--gray-text);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
}

.cta-section h2 {
    font-weight: 700;
    color: var(--light-text);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-section .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
    padding: 6rem 0 3rem;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.15), transparent 70%);
    z-index: 0;
}

.page-header h1 {
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, var(--light-text), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

/* About Page Styles */
.about-story .about-image {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 12px;
}

.about-story .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.about-story .image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.bg-gradient {
    background: linear-gradient(to right, var(--darker-bg), var(--dark-bg));
}

.bg-light-dark {
    background-color: rgba(10, 25, 41, 0.7);
}

.mission-card, .value-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover, .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i {
    font-size: 1.5rem;
    color: var(--light-text);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.team-image {
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-info .position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-info .bio {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.team-info .social-links {
    display: flex;
}

.team-info .social-links a {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    color: var(--gray-text);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer h5 {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: var(--gray-text);
}

.footer ul li a:hover {
    color: var(--secondary-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--darker-bg);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .platform-visual {
        height: 350px;
        margin-top: 3rem;
    }
    
    .cta-section .text-lg-end {
        text-align: left !important;
        margin-top: 1.5rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-section .btn.ms-3 {
        margin-left: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .top-banner .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .top-banner .d-flex > div:last-child {
        margin-top: 0.5rem;
    }
    
    .platform-card {
        width: 100%;
    }
    
    .solution-card, .industry-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .feature-highlight {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .platform-visual {
        height: 300px;
    }
    
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* CTA Section */
.cta-section {
    background-color: var(--darker-bg);
    border-radius: 12px;
    margin: 2rem 0;
}

.cta-section h2 {
    color: var(--light-text);
    font-weight: 700;
}

.cta-section .lead {
    color: var(--gray-text);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.testimonial-author .author-info h4 {
    color: var(--light-text);
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-author .author-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991.98px) {
    .cta-section .text-lg-end {
        text-align: left !important;
        margin-top: 1.5rem;
    }

    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .cta-section .btn.ms-3 {
        margin-left: 0 !important;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-author .author-info h4 {
        font-size: 1rem;
    }

    .testimonial-author .author-info p {
        font-size: 0.85rem;
    }
    
    .mission-card, .value-card, .team-card {
        margin-bottom: 1rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-section .btn.ms-3 {
        margin-left: 0 !important;
    }
}
