/* Reset and Base Styles */
:root {
    --primary-black: #000000;
    --primary-gray: #808080;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --accent-gold: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--primary-black);
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)); /* Elegant gradient */
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease; /* Smooth transition */
}

.header:hover {
    background: rgba(255, 255, 255, 1); /* Solid background on hover */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 320px;  /* Logo size */
    height: 90px;  /* Proportional height */
    object-fit: contain;
    padding: 0.25rem 0;
}

/* For larger screens */
@media (min-width: 1024px) {
    .logo img {
        width: 320px;  /* Kept consistent with base size */
        height: 90px;  /* Proportional height */
    }
}

/* For mobile screens */
@media (max-width: 768px) {
    .logo img {
        width: 200px;  /* Increased from 180px */
        height: 60px;  /* Proportional height */
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-black);
    font-size: 1rem; /* Slightly larger font size */
    font-weight: 600; /* Bold for emphasis */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

.nav-links a:hover {
    color: var(--black); /* Change color on hover to black */
    transform: translateY(-2px); /* Slight lift effect */
}

.contact-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    background: var(--black); /* Set background to black */
    color: var(--white); /* Set text color to white */
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--white); /* Optional: white border for contrast */
}

.contact-btn:hover {
    background: var(--black); /* Keep the background black on hover */
    color: var(--white); /* Keep text color white on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.quote-btn {
    background: var(--primary-black);
    color: var(--white) !important;
}

.quote-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: var(--white);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-heading h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--primary-gray);
    margin: 2rem 0;
}

.profile-images {
    display: inline-flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.profile-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Stats Section Styling */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--light-gray), transparent);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-gray) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: flex-start;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 600;
    margin-left: 0.2rem;
    background: var(--primary-black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-gray);
    position: relative;
    padding-top: 1rem;
}

.stat-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-black);
    opacity: 0.2;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .stat-item::after {
        display: none;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Services Section */
.section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Founder Section Styling */
.founder-intro {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8)); /* Dark transparent gradient */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); /* Deeper shadow for depth */
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.3s ease; /* Smooth transition */
    opacity: 0; /* Start invisible */
    transition: opacity 0.5s ease; /* Smooth transition */
}

.founder-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-gray);
    margin-top: 1rem;
}

.founder-image {
    width: 200px;  /* Adjust as needed */
    height: 240px; /* Adjust as needed */
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.founder-text {
    flex: 1; /* Allow text to take remaining space */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center vertically */
    color: var(--white); /* Set text color to white */
}

.founder-text h3 {
    font-size: 2rem; /* Increased size for prominence */
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Subtle text shadow */
}

.founder-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem; /* Slightly larger */
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    border-left: 4px solid var(--light-gray); /* Change to gray */
    padding-left: 1rem; /* Space from the border */
    margin-top: 1rem; /* Space above the quote */
}

.founder-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    filter: grayscale(80%);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .founder-intro {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .founder-image {
        width: 180px;
        height: 220px;
    }

    .founder-quote {
        padding-left: 0;
        border-left: none;
        padding-top: 1rem;
        border-top: 2px solid rgba(255, 255, 255, 0.3);
    }
}

.founder-intro.fade-in {
    opacity: 1; /* Fade in */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.service-number {
    color: var(--light-gray);
    font-size: 3rem;
    font-weight: 700;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-block;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    transform: translateX(5px);
}

/* Service Cards with Expandable Content */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 1rem;
}

.service-details.active {
    max-height: 300px; /* Adjust based on content */
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 0.5rem 0;
    color: var(--primary-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-black);
}

.toggle-details {
    background: none;
    border: none;
    color: var(--primary-black);
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.toggle-details:hover {
    color: var(--primary-gray);
}

.toggle-details::after {
    content: "↓";
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.toggle-details.active::after {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Modern Grid for New Age Testing */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.modern-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-card:hover .card-overlay {
    opacity: 1;
}

/* Consulting Grid */
.consulting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.consulting-card {
    background: var(--white);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.consulting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-black);
    transition: height 0.3s ease;
}

.consulting-card:hover::before {
    height: 100%;
}

.consulting-content {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.consulting-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.consulting-card p {
    color: var(--primary-gray);
    line-height: 1.6;
    font-size: 1.1rem;
}

.card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-black);
    transition: width 0.3s ease;
}

.consulting-card:hover .card-line {
    width: 100px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-heading h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .founder-intro {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-heading h1 {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-grid,
    .consulting-grid {
        grid-template-columns: 1fr;
    }
    
    .consulting-card {
        min-height: auto;
    }
}

/* Section Titles Styling */
.section-subtitle {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin: 3rem auto 2rem;
    position: relative;
    padding-bottom: 1.5rem;
    max-width: 900px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-black), var(--primary-gray));
    transition: width 0.3s ease;
}

.section-subtitle:hover {
    transform: translateY(-5px);
}

.section-subtitle:hover::after {
    width: 150px;
}

/* Update HTML to use these classes */
.section-subtitle.ai-testing {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Core Services Section Enhancement */
.services-grid {
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-black);
}

.service-number {
    font-size: 4rem;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.service-card:hover .service-number {
    opacity: 0.2;
    transform: scale(1.1);
}

/* New Age AI Testing Section Enhancement */
.modern-grid {
    position: relative;
}

.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.modern-card h3 {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.modern-card:hover h3 {
    transform: scale(1.05);
}

/* QA Consulting Section Enhancement */
.consulting-grid {
    position: relative;
}

.consulting-card {
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.consulting-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent var(--light-gray) transparent;
    transition: all 0.3s ease;
}

.consulting-card:hover::after {
    border-color: transparent transparent var(--primary-black) transparent;
    border-width: 0 0 60px 60px;
}

.consulting-content {
    transition: transform 0.3s ease;
}

.consulting-card:hover .consulting-content {
    transform: translateX(10px);
}

/* Add subtle animation to all sections */
.section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Enhance hover effects for all interactive elements */
.service-card,
.modern-card,
.consulting-card {
    cursor: pointer;
    will-change: transform;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add subtle parallax effect */
.hero,
.section {
    position: relative;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-subtitle {
        font-size: 2rem;
    }
    
    .service-card:hover,
    .modern-card:hover,
    .consulting-card:hover {
        transform: translateY(-5px);
    }
}

/* Contact Section Styling */
.contact-section {
    background: var(--white); /* Set background to white */
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.contact-card {
    background: var(--light-gray); /* Set card background to light gray */
    color: var(--black); /* Set text color to black */
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease; /* Smooth transition */
    position: relative;
    overflow: hidden;
    border: 2px solid var(--white); /* Add a white border */
}

.contact-card:hover {
    transform: scale(1.05); /* Slightly scale up on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

.contact-card.primary {
    background: var(--primary-black);
    color: var(--white);
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 2.5rem; /* Ensure icons are large enough */
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--accent-black); /* Change icon color for contrast */
}

.linkedin-icon {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.contact-card h3 {
    font-size: 1.5rem; /* Ensure headings are prominent */
    margin-bottom: 1rem;
    color: var(--black); /* Set heading color to black */
}

.contact-card p {
    color: var(--black); /* Set text color to black for visibility */
    margin-bottom: 1.5rem;
}

.contact-card.primary p {
    color: var(--black); /* Set text color to black for visibility */
}

.contact-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray); /* Grey border for CTA effect */
    color: var(--black); /* Change link color to black */
    background: var(--white); /* White background for contrast */
}

.contact-link:hover {
    background: var(--black); /* Change background to black on hover */
    color: var(--black); /* Change text color to white on hover */
    transform: scale(1.05); /* Slightly scale up on hover */
}

.linkedin-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray); /* Grey border for CTA effect */
    color: var(--black); /* Change link color to black */
    background: var(--black); /* White background for contrast */
}

.linkedin-link:hover {
    background: var(--black); /* Change background to black on hover */
    color: var(--black); /* Change text color to white on hover */
    transform: scale(1.05); /* Slightly scale up on hover */
}

/* Animation for contact cards */
.contact-card {
    animation: fadeInUp 0.6s ease backwards;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-card.primary {
        transform: none;
    }
}

/* Social Links */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-card.linkedin {
    color: #0077B5;
}

.social-card.twitter {
    color: #1DA1F2;
}

.social-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.social-text {
    font-size: 1rem;
    font-weight: 500;
}

.social-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 2rem;
    }
}

/* Animation for contact cards */
.contact-card {
    animation: fadeInUp 0.6s ease backwards;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.4s;
}

.social-card {
    animation: slideIn 0.6s ease backwards;
    animation-delay: 0.6s;
}

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

/* About Section Styling */
.about-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-text {
    text-align: center;
    margin-bottom: 4rem;
}

.about-lead {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 1.2rem;
    color: var(--primary-gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-gray);
}

.value-item {
    text-align: center;
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,1) 100%);
}

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

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-black);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--primary-black);
    transform: rotate(5deg);
}

.value-item:hover .value-icon svg {
    stroke: var(--white);
    transform: scale(1.1);
}

.value-text {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Animation */
.about-main {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.value-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.value-item:nth-child(1) { animation-delay: 0.2s; }
.value-item:nth-child(2) { animation-delay: 0.4s; }
.value-item:nth-child(3) { animation-delay: 0.6s; }

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-main {
        padding: 2rem;
    }

    .about-lead {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Add hover effect */
.founder-intro:hover {
    transform: scale(1.02); /* Slightly scale up on hover */
}
