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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    /* Logo image styling */
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-weight: bold;
    font-size: 1.25rem;
    color: #111;
}

.logo-sub {
    font-size: 0.75rem;
    color: #7c3aed;
}

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

.nav-link {
    text-decoration: none;
    color: #374151;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #374151;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #374151;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #6d28d9, #7c3aed);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 1000px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #6d28d9;
}

.btn-primary:hover {
    background: #f3f4f6;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: white;
    color: #7c3aed;
}

.btn-white:hover {
    background: #f3f4f6;
}

/* Stats Section */
.stats-section {
    background: #7c3aed;
    padding: 3rem 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

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

/* Section */
.section {
    padding: 5rem 0;
}

.section-gray {
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: #f3e8ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #7c3aed;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #111;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-link {
    color: #7c3aed;
    text-decoration: none;
}

.service-link:hover {
    color: #6d28d9;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.column {
    width: 100%;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.feature-icon {
    color: #7c3aed;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #111;
}

.feature-description {
    color: #6b7280;
}

.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Partners */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.partner-card {
    background: #f9fafb;
    padding: 2rem 3rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.partner-name {
    font-size: 1.5rem;
    color: #111;
}

.partner-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: #7c3aed;
    padding: 5rem 1rem;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column-wide {
    grid-column: span 2;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    font-size: 0.875rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #9ca3af;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-bottom p {
    margin: 0.25rem 0;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    padding: 1rem;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Page Header */
.page-header {
    background: linear-gradient(to right, #6d28d9, #7c3aed);
    color: white;
    padding: 5rem 1rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
}

.content-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111;
    text-align: center;
}

.content-block p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-block strong {
    color: #111;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #f3e8ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #7c3aed;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111;
}

.card p {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Achievement Box */
.achievement-box {
    background: #faf5ff;
    border-left: 4px solid #7c3aed;
    padding: 1.5rem;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}

.achievement-box p {
    font-size: 1.125rem;
    color: #1f2937;
    margin: 0;
}

/* List Grid */
.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
}

.list-dot {
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.list-item span {
    color: #374151;
}

/* Countries Grid */
.countries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.country-card {
    padding: 2rem 2rem;
    border-radius: 0.5rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.country-card.uk {
    background: #7c3aed;
}

.country-card.canada {
    background: #8b5cf6;
}

.country-card.usa {
    background: #6d28d9;
}

.country-card p {
    margin: 0;
}

.country-card .country-name {
    font-size: 1.5rem;
}

.country-card .country-note {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Service Detail */
.service-detail {
    padding: 5rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-grid:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-grid:nth-child(even) .service-detail-content {
    order: 1;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-detail-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-detail-list .list-dot {
    margin-top: 0.5rem;
}

.service-detail-list p {
    margin: 0;
}

.highlight-box {
    background: #faf5ff;
    border-left: 4px solid #7c3aed;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-top: 1.5rem;
}

.highlight-box p {
    color: #1f2937;
    margin: 0;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-box h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #111;
}

.info-box p {
    color: #374151;
    margin: 0;
}

/* Team Page */
.team-section {
    padding: 5rem 0;
}

.team-member {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
    margin-bottom: 4rem;
}

.team-member:nth-child(even) .team-photo {
    order: 2;
}

.team-member:nth-child(even) .team-info {
    order: 1;
}

.team-photo {
    background: #f3f4f6;
    border-radius: 0.5rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
    flex-direction: column;
    padding: 2rem;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-photo img.team-photo-usman,
.team-photo img.team-photo-top {
    object-position: top;
}

.team-photo svg {
    width: 96px;
    height: 96px;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.team-photo p {
    color: #6b7280;
    font-size: 0.875rem;
}

.team-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #111;
}

.team-role {
    font-size: 1.125rem;
    color: #7c3aed;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
}

/* Team Values */
.team-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #111;
}

.value-card p {
    color: #374151;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111;
}

.contact-info > p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #f3e8ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7c3aed;
}

.contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #111;
}

.contact-details p {
    color: #374151;
    margin: 0;
}

.contact-details a {
    color: #374151;
    text-decoration: none;
}

.contact-details a:hover {
    color: #7c3aed;
}

.office-hours {
    background: #faf5ff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.office-hours h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #111;
}

.office-hours p {
    color: #374151;
    margin: 0.5rem 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    background: #7c3aed;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #6d28d9;
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Map Placeholder */
.map-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.map-placeholder {
    background: #e5e7eb;
    height: 384px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #6b7280;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        border-bottom: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: #f3f4f6;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .footer-column-wide {
        grid-column: span 1;
    }

    .two-column,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid:nth-child(even) .service-detail-image {
        order: 1;
    }

    .service-detail-grid:nth-child(even) .service-detail-content {
        order: 2;
    }

    .team-member:nth-child(even) .team-photo {
        order: 1;
    }

    .team-member:nth-child(even) .team-info {
        order: 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .services-grid,
    .cards-grid,
    .list-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Slider */
.slider-section {
    padding: 5rem 0;
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(124, 58, 237, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(124, 58, 237, 1);
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: #7c3aed;
}

/* Partners Grid (static, no slider) */
.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 520px;
    margin: 0 auto;
    align-items: center;
}

.partner-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.partner-card img,
.partner-card picture img {
    display: block;
    width: auto;
    height: auto;
    max-width: 250px;
    max-height: 90px;
    object-fit: contain;
    object-position: center;
}

.partner-logo {
    max-width: 250px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 1040px;
    }
}

/* Old slider CSS remains unchanged but unused for this section */


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

.testimonial-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #f9fafb;
    padding: 1rem;
}
