/* Modern Corporate Design System for Shelf Company Singapore */

/* CSS Variables - Design System */
:root {
    /* Brand Colors */
    --primary: hsl(227, 94%, 55%); /* #2657F2 */
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(227, 94%, 70%);
    --primary-dark: hsl(227, 94%, 45%);
    
    /* Neutral Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(218, 11%, 15%);
    --muted: hsl(210, 40%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    
    /* Surface Colors */
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(218, 11%, 15%);
    --surface-gray: hsl(210, 20%, 98%);
    
    /* Interactive Elements */
    --border: hsl(214, 32%, 91%);
    --input: hsl(214, 32%, 91%);
    --ring: hsl(227, 94%, 55%);
    
    /* Semantic Colors */
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --success: hsl(142, 76%, 36%);
    --success-foreground: hsl(0, 0%, 100%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(227, 94%, 55%), hsl(227, 94%, 70%));
    --gradient-hero: linear-gradient(135deg, hsl(227, 94%, 55%) 0%, hsl(227, 94%, 70%) 50%, hsl(0, 0%, 100%) 100%);
    --gradient-surface: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(210, 20%, 98%) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsla(0, 0%, 0%, 0.05);
    --shadow-md: 0 4px 6px -1px hsla(0, 0%, 0%, 0.1), 0 2px 4px -2px hsla(0, 0%, 0%, 0.1);
    --shadow-lg: 0 10px 15px -3px hsla(0, 0%, 0%, 0.1), 0 4px 6px -4px hsla(0, 0%, 0%, 0.1);
    --shadow-xl: 0 20px 25px -5px hsla(0, 0%, 0%, 0.1), 0 8px 10px -6px hsla(0, 0%, 0%, 0.1);
    --shadow-primary: 0 10px 30px -10px hsla(227, 94%, 55%, 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    scroll-behavior: smooth;
}

button {
    font-family: var(--font-family);
}

/* Container */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .container-custom {
        padding: 0 32px;
    }
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-primary);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 16px;
    margin: 15px 0px;
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.btn-hero {
    background-color: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    font-size: 16px;
    font-family: 'Manrope';
}

.btn-hero:hover {
    background-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

/* Icon Styles */
.icon {
    width: 20px;
    height: 20px;
}

/* Typography */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--foreground);
}

.section-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 768px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    /* font-size: 20px;
    font-weight: 700;
    color: var(--foreground); */
    max-width: 60px;
    height: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    font-size: 16px;
    font-family: var(--font-family);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover .nav-underline {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    /* background: var(--gradient-hero); */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 150px 0;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 64px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: black;
    margin-bottom: 24px;
}

.hero-subtitle-accent {
    display: block;
    color: var(--primary);
}

.hero-description {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: rgb(64 64 64 / 90%);
    line-height: 1.6;
    max-width: 768px;
    margin: 0 auto 32px;
}

.hero-image {
    max-width: 1024px;
    margin: 0 auto;
}

.skyline-image {
    width: 100%;
    height: 256px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .skyline-image {
        height: 320px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--background);
}

.about-grid {
    display: grid;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-text p {
    margin: 0;
}

.about-images {
    position: relative;
}

.images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.images-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.images-right {
    padding-top: 32px;
}

.office-image-1,
.office-image-2,
.handshake-image {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.office-image-1 {
    height: 192px;
}

.handshake-image {
    height: 128px;
}

.office-image-2 {
    height: 224px;
}

.office-image-1:hover,
.office-image-2:hover,
.handshake-image:hover {
    transform: scale(1.05);
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background-color: hsla(227, 94%, 55%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition-fast);
}

.stat-item:hover .stat-icon {
    background-color: hsla(227, 94%, 55%, 0.2);
}

.stat-icon .icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--gradient-surface);
}

.why-choose-grid {
    display: grid;
    gap: 64px;
    align-items: start;
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: hsla(227, 94%, 55%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.feature-item:hover .feature-icon {
    background-color: hsla(227, 94%, 55%, 0.2);
}

.feature-icon .icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-steps {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.process-step {
    position: relative;
    display: flex;
    align-items: start;
    gap: 32px;
}

.process-line {
    position: absolute;
    left: 32px;
    top: 80px;
    width: 2px;
    height: 48px;
    background-color: var(--border);
}

.process-step:last-child .process-line {
    display: none;
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.step-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
}

.step-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: 18px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--gradient-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--background);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: hsla(227, 94%, 55%, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon .icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 16px;
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Case Study Section */
.case-study-section {
    padding: 80px 0;
    background-color: var(--background);
}

.case-study-grid {
    display: grid;
    gap: 64px;
}

@media (min-width: 1024px) {
    .case-study-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.case-study-item {
    margin-bottom: 32px;
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.case-study-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-icon.blue {
    background-color: hsla(214, 100%, 87%, 1);
}

.case-study-icon.red {
    background-color: hsla(0, 100%, 87%, 1);
}

.case-study-icon.green {
    background-color: hsla(142, 100%, 87%, 1);
}

.case-study-icon.primary {
    background-color: hsla(227, 94%, 55%, 0.2);
}

.case-study-icon .icon {
    width: 20px;
    height: 20px;
}

.case-study-icon.blue .icon {
    color: hsl(214, 100%, 40%);
}

.case-study-icon.red .icon {
    color: hsl(0, 100%, 40%);
}

.case-study-icon.green .icon {
    color: hsl(142, 100%, 30%);
}

.case-study-icon.primary .icon {
    color: var(--primary);
}

.case-study-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
}

.case-study-text {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 16px;
}

.case-study-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.case-study-list li {
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--muted-foreground);
}

.list-icon {
    width: 16px;
    height: 16px;
    color: var(--success);
    margin-top: 2px;
    flex-shrink: 0;
}

.case-study-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.results-box {
    background-color: hsla(227, 94%, 55%, 0.05);
    padding: 32px;
    border-radius: 12px;
}

.takeaways-box {
    background-color: var(--surface-gray);
    padding: 32px;
    border-radius: 12px;
}

.takeaways-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 24px;
}

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

.takeaways-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--muted-foreground);
}

.takeaways-list li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--gradient-surface);
}

.faq-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-family);
}

.faq-question:hover {
    background-color: var(--surface-gray);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
    padding-right: 16px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--muted-foreground);
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--background);
}

.contact-grid {
    display: grid;
    gap: 64px;
    max-width: 1536px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-container {
    background-color: var(--surface-gray);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px hsla(227, 94%, 55%, 0.2);
}

.form-group textarea {
    resize: none;
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: hsla(227, 94%, 55%, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-content h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.contact-content p {
    color: var(--muted-foreground);
    margin: 0;
}

.business-hours {
    background-color: hsla(227, 94%, 55%, 0.05);
    padding: 24px;
    border-radius: 12px;
}

.business-hours h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 12px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background-color: var(--foreground);
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-links {
        gap: 32px;
    }
}

.footer-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 16px;
    font-family: var(--font-family);
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 767px) {
    .container-custom {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .about-section,
    .why-choose-section,
    .process-section,
    .services-section,
    .case-study-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        gap: 16px;
    }
    
    .process-line {
        left: 16px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn .icon {
  width: 28px;
  height: 28px;
  color: var(--foreground);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    display: none !important; /* hide desktop nav on mobile */
  }
}

/* Mobile Menu Drawer */
/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%; /* full width */
  height: 100%; /* full height */
  background: #ffffff; /* solid background */
  box-shadow: var(--shadow-lg);
  transition: right 0.3s ease-in-out;
  z-index: 3000; /* higher than header & content */
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}


.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 24px;
}

.close-btn .icon {
  width: 28px;
  height: 28px;
  color: var(--foreground);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  font-size: 18px;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, hsl(227, 94%, 55%), hsl(227, 94%, 65%));
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid rgba(255, 255, 255, 0.5);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #f3f4f6; /* softer white for readability */
}

.testimonial-author {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
  color: #ffffff;
}

.testimonial-role {
  font-size: 14px;
  color: #e0e0e0;
}



/* Team Section */
.team {
    padding: 5rem 0;
    background: hsla(210, 40%, 96%, 0.5);
}

.team-content {
    /*max-width: 64rem;*/
    margin: 0 auto;
}

.team-intro {
    font-size: 1.25rem;
    color: hsl(215, 16%, 47%);
    margin-bottom: 2rem;
}

.team-details {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px hsla(215, 100%, 21%, 0.1), 0 2px 4px -1px hsla(215, 100%, 21%, 0.06);
}

.team-details p {
    color: hsl(215, 16%, 47%);
    line-height: 1.6;
}

/* Test */
.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 3rem;
}

.team-card {
  position: relative;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.card-bg {
  position: relative;
  height: 360px;
  /* background: url('assets/office-blur.jpg') center/cover no-repeat; */
}

.card-photo {
  position: absolute;
  /* bottom: -40px;
  left: 50%; */
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  border: 3px solid white;
  object-fit: cover;
  background: white;
}

.card-info {
  padding: 1rem 1rem 1.5rem;
  text-align: center;
}

.card-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: hsl(215, 100%, 21%);
}

.card-title {
  font-size: 0.95rem;
  color: hsl(215, 16%, 47%);
  margin-bottom: 1rem;
}

.linkedin-link {
  display: inline-block;
}

.linkedin-icon {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.linkedin-link:hover .linkedin-icon {
  opacity: 1;
}


/* Comparision Table */
.shelfcompany-comptab {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shelfcompany-comptab h2 {
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 1rem;
}

.shelfcompany-comptab p {
  color: #555;
  text-align: center;
  max-width: 700px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Table container for horizontal scroll on mobile */
.shelfcompany-comptab .table-container {
  width: 100%;
  max-width: 1000px;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  background: #fff;
}

/* Hide scrollbar for aesthetic */
.shelfcompany-comptab .table-container::-webkit-scrollbar {
  height: 6px;
}
.shelfcompany-comptab .table-container::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 10px;
}

.shelfcompany-comptab table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: #fff;
}

.shelfcompany-comptab th,
.shelfcompany-comptab td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}

.shelfcompany-comptab th {
  background: #f4f6fa;
  font-weight: 600;
  color: #222;
  font-size: 1rem;
  white-space: nowrap;
}

.shelfcompany-comptab td {
  font-size: 1rem;
  color: #333;
  vertical-align: top;
}

.shelfcompany-comptab tbody tr:last-child td {
  border-bottom: none;
}

.shelfcompany-comptab th:first-child,
.shelfcompany-comptab td:first-child {
  font-weight: 600;
  color: #204ff8;
}

/* Responsive tweak: just adjust font size */
@media (max-width: 768px) {
  .shelfcompany-comptab th,
  .shelfcompany-comptab td {
    font-size: 0.95rem;
    padding: 14px 16px;
  }
}
/* Comparision Table */