/* Volektra Website Styles */

/* Global Styles */
:root {
    --primary-blue: #2196F3;
    --primary-green: #8BC34A;
    --teal-middle: #00BCD4;
    --light-teal: #4DD0E1;
    --light-green: #4CAF50;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    --gradient-horizontal: linear-gradient(90deg, var(--primary-blue), var(--teal-middle), var(--light-green), var(--primary-green));
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

section {
    padding: 80px 0;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-tagline span {
    margin: 0 15px;
    position: relative;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-gray);
    text-align: center;
}

.benefits h2 {
    margin-bottom: 50px;
}

.benefit-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.benefit-card h3 {
    margin-bottom: 15px;
}

/* Technology Section */
.technology {
    padding: 100px 0;
}

.tech-features {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.tech-features li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.tech-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.tech-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Market Challenge Section */
.market-challenge {
    background-color: var(--light-gray);
    text-align: center;
}

.market-challenge h2 {
    margin-bottom: 50px;
}

.challenge-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.challenge-card h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.challenge-card .note {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* Performance Section */
.performance {
    text-align: center;
    padding: 100px 0;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.performance-table {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.performance-table thead {
    background-color: var(--primary-blue);
    color: var(--white);
}

.performance-table th, 
.performance-table td {
    padding: 15px;
    text-align: center;
}

.performance-table .highlight {
    font-weight: bold;
    color: var(--primary-blue);
}

.performance-note {
    margin-top: 30px;
    font-style: italic;
}

/* Team Section */
.team {
    background-color: var(--light-gray);
    text-align: center;
}

.team h2 {
    margin-bottom: 15px;
}

.team .section-intro {
    margin-bottom: 50px;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.member-image {
    overflow: hidden;
    border-radius: 0; /* Remove any border radius */
}

.member-image img {
    width: 100%;
    height: auto; /* Allow height to adjust proportionally */
    object-fit: contain; /* Ensure the entire image is visible */
}

.team-member h3 {
    margin: 20px 0 5px;
    padding: 0 20px;
}

.member-title {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.member-achievements {
    list-style: none;
    padding: 0 20px 20px;
    text-align: left;
}

.member-achievements li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.member-achievements li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    margin-bottom: 40px;
}

.cta-stat {
    margin-bottom: 40px;
}

.cta-stat h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta .btn {
    background-color: var(--white);
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
}

.cta .btn:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo p {
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer h5 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

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

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

.footer-links a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-blue);
}

.footer-contact a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

.social-icons {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 60px;
    text-align: center;
}

/* Media Coverage and Partners Sections Styles */
.media-coverage, .partners {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.media-coverage {
    background-color: var(--white);
}

.media-coverage h2, .partners h2 {
    margin-bottom: 15px;
}

.media-coverage .section-intro, .partners .section-intro {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.media-logos, .partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.media-logo, .partner-logo {
    padding: 10px;
    margin: 15px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
}

.media-logo img, .partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Remove duplicate partner-logo styles */
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.media-logo:hover, .partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.media-logo img, .partner-logo img {
    max-height: 80%;
    max-width: 80%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.media-logo:hover img, .partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .lead {
        font-size: 1.3rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .benefit-card, .challenge-card, .team-member {
        margin-bottom: 30px;
    }
    
    .cta-stat {
        margin-bottom: 30px;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-tagline span {
        margin: 5px 10px;
    }
    
    .hero-tagline span:not(:last-child):after {
        display: none;
    }
}

/* About Page Styles */
.technology-hero {
    background: var(--gradient-horizontal);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero {
    background: var(--gradient-horizontal);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.technology-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: center;
}

.technology-hero .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.technology-hero .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.mission, .story, .leadership, .values, .partners {
    padding: 80px 0;
}

.mission-image, .story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.team-member-detailed {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo {
    height: 80px;
    margin: 20px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

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

/* Technology Page Styles */
.tech-main-hero {
    padding: 0;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

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

.tech-components {
    margin-top: 50px;
}

.component-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 30px;
}

.component-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.stack-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.stack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stack-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.validation-image, .future-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ip-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.ip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ip-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

/* Solutions Page Styles */
.solutions-hero {
    background: var(--gradient-horizontal);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.solutions-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.solutions-hero .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
}

.solution-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

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

.solution-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.case-study-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 30px;
}

.case-study-highlight {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Benefits Page Styles */
.impact-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.impact-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.impact-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.impact-image, .supply-chain-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.comparison-table {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
    background-color: var(--primary-blue);
    color: var(--white);
}

.comparison-table th, 
.comparison-table td {
    padding: 15px;
    text-align: center;
}

.comparison-table .highlight {
    font-weight: bold;
    color: var(--primary-blue);
}

/* Contact Page Styles */
.contact-info {
    margin-bottom: 50px;
}

.contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

textarea.form-control {
    height: 150px;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Animation Styles */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

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

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-up {
    animation: slideInUp 1s ease-in-out;
}

/* Motor Animation Styles */
.motor-animation-container {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.motor-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.motor-rotor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: rotate 5s linear infinite;
}

.motor-stator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 15px solid #2196F3;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.waveform {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 100px;
}

.wave {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, transparent, rgba(33, 150, 243, 0.2), transparent);
    animation: wave 2s ease-in-out infinite;
}

.wave:nth-child(2) {
    animation-delay: 0.5s;
}

.wave:nth-child(3) {
    animation-delay: 1s;
}

@keyframes wave {
    0%, 100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
}

/* Custom Animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

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

/* Company Logos Section Styles */
.company-logos {
    margin-bottom: 50px;
    text-align: center;
}

.company-logos h3 {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.company-logo {
    padding: 10px;
    margin: 15px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Stats Visualization Styles */
.stats-visualization {
    margin: 40px 0;
}

.stat-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
}

.stat-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-top: 15px;
    margin-bottom: 0;
}

/* Animated Stats Section Styles */
.stats-section {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  border-radius: 16px;
  margin: 2rem 0;
}

.stats-section .stat-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease;
}

.stats-section .stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stats-section .icon {
  width: 56px;
  margin-bottom: 1rem;
}

.stats-section .number {
  font-size: 48px;
  color: #0070F3; /* Primary blue */
  margin: 0;
  font-weight: 700;
}

.stats-section .stat-card:nth-child(2) .number {
  color: #00A651; /* Green for experience */
}

.stats-section .label {
  margin-top: 0.5rem;
  font-size: 18px;
  color: #555;
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .stats-section .stat-card {
    width: 100%;
    max-width: 300px;
  }
}
