:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.header-main {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-height: 60px;
    width: auto;
}

.navbar {
    padding: 1rem 0;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.social-links a {
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.hero-slider {
    height: 300px;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.carousel-item {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-caption {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.about-intro {
    background: white;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-intro .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.clients-logos {
    padding: 4rem 0;
}

.client-logo {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.filter-buttons {
    margin-bottom: 2rem;
}

.btn-filter {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin: 0.25rem;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: white;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-info h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.project-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials {
    background: var(--bg-light);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial footer {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer {
    background: var(--secondary-color);
    color: white;
    margin-top: 4rem;
}

.footer p {
    margin: 0;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-slider,
    .carousel-item {
        height: 400px;
    }
}






/* Our Work Page Styles */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.work-intro {
    background: white;
}

.work-project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.work-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(231, 76, 60, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-project-card:hover .project-overlay {
    opacity: 1;
}

.project-details {
    padding: 1.5rem;
}

.project-number {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.project-details h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-tags {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.project-item {
    transition: opacity 0.3s ease;
}

.project-item.filtered-out {
    display: none;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-hero {
        height: 300px;
    }
    
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}




/* About Us Page Styles */
.about-content {
    background: white;
}

.intro-text {
    text-align: center;
}

.intro-text .lead {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.our-people {
    background: var(--bg-light);
}

.team-member-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.team-photo {
    width: 100%;
    max-width: 280px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.team-name {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-member-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.team-member-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.team-member-card a:hover {
    color: #c0392b;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .team-member-card {
        padding: 1.5rem;
    }
    
    .team-name {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .team-title {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .intro-text .lead {
        font-size: 1.2rem;
    }
}


/* News Page Styles */
.news-content {
    background: var(--bg-light);
}

.news-article {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.news-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.article-header {
    margin-bottom: 1.5rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.article-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-title:hover {
    color: var(--primary-color);
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.article-meta {
    margin-bottom: 1.5rem;
}

.category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.article-content {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.pagination-nav {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin: 0 0.25rem;
    border-radius: 5px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .news-article {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-image {
        height: 250px;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
}




/* Our Approach Page Styles */
.approach-intro {
    background: white;
}

.approach-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.approach-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.approach-intro p,
.social-knowhow p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-intro .lead,
.social-knowhow .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
}

.approach-features {
    background: var(--bg-light);
}

.feature-block {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 5rem;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    position: absolute;
    left: 2.5rem;
    top: 2.5rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-block p:last-child {
    margin-bottom: 0;
}

.feature-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-block a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.social-knowhow {
    background: white;
}

.cta-section {
    background: var(--secondary-color) !important;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .approach-section-title {
        font-size: 2rem;
    }
    
    .feature-block {
        padding: 2rem;
        padding-left: 2rem;
        padding-top: 5rem;
    }
    
    .feature-icon {
        left: 50%;
        transform: translateX(-50%);
        top: 2rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .approach-intro p,
    .social-knowhow p,
    .feature-block p {
        font-size: 1rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}


/* Regional Business Partners Page Styles */
.rbp-intro {
    background: white;
}

.rbp-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.rbp-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.rbp-intro .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
}

.rbp-intro a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.rbp-intro a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.rbp-details {
    background: var(--bg-light);
}

.rbp-info-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.rbp-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.info-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.rbp-cta {
    background: white;
}

.rbp-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.rbp-cta .lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .rbp-subtitle {
        font-size: 1.8rem;
    }
    
    .rbp-info-card {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto 1.5rem;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
    .info-content p {
        font-size: 1rem;
    }
    
    .rbp-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
}


/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero .lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.contact-info-card,
.contact-form-card,
.working-hours-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-card h2,
.contact-form-card h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.contact-details h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.social-link i {
    width: 25px;
}

.working-hours-card {
    background: var(--bg-light);
    padding: 2rem;
}

.working-hours-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.working-hours-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.1);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.map-section {
    width: 100%;
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
}

.quick-contact {
    background: white;
}

.quick-contact h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .social-links-contact {
        align-items: center;
    }
    
    .quick-contact h2 {
        font-size: 2rem;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quick-contact-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
}

/* Testimonials Section - Fixed */
.testimonials {
    background: var(--bg-light);
}

.testimonials .carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials .carousel-inner {
    min-height: 250px;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: transparent;
    border: none;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial footer {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.testimonials .carousel-indicators {
    margin-bottom: -2rem;
}

.testimonials .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.testimonials .carousel-indicators button.active {
    opacity: 1;
}

.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.testimonials .carousel-control-prev:hover,
.testimonials .carousel-control-next:hover {
    opacity: 1;
}

.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .testimonial p {
        font-size: 1.1rem;
    }
    
    .testimonials .carousel-inner {
        min-height: 300px;
    }
}



/* Testimonials Carousel - Fix overlapping items */
.testimonials .carousel-item {
    display: none;
    position: relative;
    transition: transform 0.6s ease-in-out;
}

.testimonials .carousel-item.active {
    display: block;
}

.testimonials .carousel-item-next,
.testimonials .carousel-item-prev {
    display: block;
}

.testimonials .carousel-item-next:not(.carousel-item-start),
.testimonials .active.carousel-item-end {
    transform: translateX(100%);
}

.testimonials .carousel-item-prev:not(.carousel-item-end),
.testimonials .active.carousel-item-start {
    transform: translateX(-100%);
}

/* Testimonials Section - Updated */
.testimonials {
    background: var(--bg-light);
    overflow: hidden;
}

.testimonials .carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials .carousel-inner {
    min-height: 250px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: transparent;
    border: none;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial footer {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.testimonials .carousel-indicators {
    margin-bottom: -2rem;
    position: relative;
}

.testimonials .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    border: none;
}

.testimonials .carousel-indicators button.active {
    opacity: 1;
}

.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.testimonials .carousel-control-prev:hover,
.testimonials .carousel-control-next:hover {
    opacity: 1;
}

.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .testimonial p {
        font-size: 1.1rem;
    }
    
    .testimonials .carousel-inner {
        min-height: 300px;
    }
}


