/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

/* Language Toggle */
.language-switch {
    margin-left: 1rem;
}

.lang-text {
    font-weight: 500;
}

/* Navigation */
.navbar {
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c3e50;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description-cn {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* About Section */
.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Capabilities Section */
.capability-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.capability-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.capability-card h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.capability-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Factory Tour Section */
.factory-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    height: 300px;
}

.factory-card:hover {
    transform: scale(1.02);
}

.factory-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    background-color: #f8f9fa;
}

.factory-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.factory-card:hover .factory-card-overlay {
    transform: translateY(0);
}

.factory-card-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.factory-card-overlay h5 {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Sustainability Section */
.sustainability-content {
    padding-right: 2rem;
}

.sustainability-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.sustainability-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.feature-item .cn-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Certifications Section */
.certification-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.certification-desc-cn {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.certification-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.certification-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cert-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.certification-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.partner-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid #e9ecef;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.partner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
    opacity: 0.7;
    display: block;
}

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

/* Contact Section */
.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.contact-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-form h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--white);
}

.footer p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

/* Language Toggle Styles */
.lang-en {
    display: block;
}

.lang-cn {
    display: none;
}

body.lang-english .lang-en {
    display: block;
}

body.lang-english .lang-cn {
    display: none;
}

body.lang-chinese .lang-en {
    display: none;
}

body.lang-chinese .lang-cn {
    display: block;
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sustainability-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-item {
        margin: 0.2rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .language-switch {
        margin: 1rem 0 0 0;
        text-align: center;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: 70vh;
        min-height: 500px;
        background-size: cover;
        background-position: center center;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .hero-description-cn {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }
    
    .capability-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .capability-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .capability-card h5 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .capability-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-info,
    .contact-form {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    
    .factory-card {
        height: 220px;
        margin-bottom: 1rem;
    }
    
    .factory-card-overlay h4 {
        font-size: 1.1rem;
    }
    
    .factory-card-overlay h5 {
        font-size: 0.95rem;
    }
    
    .certification-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cert-icon {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    
    .partner-logo {
        height: 100px;
        padding: 1rem;
    }
    

    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .stats-row {
        text-align: center;
        margin-top: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* 小屏幕品牌图片容器高度自适应 */
    .partner-logo {
        height: 100%;
        padding: 1.5rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 120px;
    }
    
    /* 小屏幕图片显示方式：在固定高度内完整显示 */
    .partner-img {
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        background-color: #f8f9fa;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 14px;
    }
    
    /* 手机端品牌图片容器高度自适应 */
    .partner-logo {
        height: 100%;
        padding: 1.2rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100px;
    }
    
    /* 手机端图片显示方式：在固定高度内完整显示 */
    .partner-img {
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        background-color: #f8f9fa;
    }
    
    .hero-slide {
        height: 60vh;
        min-height: 400px;
        background-size: cover;
        background-position: center center;
    }
    
    .hero-slide::before {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        text-align: center;
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    
    .hero-description-cn {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .capability-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .capability-card h4 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .capability-card h5 {
        font-size: 0.95rem;
        line-height: 1.2;
    }
    
    .capability-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .factory-card {
        height: 180px;
        margin-bottom: 1rem;
    }
    
    .factory-card-overlay h4 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .factory-card-overlay h5 {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .certification-card {
        padding: 1.2rem;
    }
    
    .cert-icon {
        font-size: 1.3rem;
        padding: 0.6rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.2rem;
    }
    
    .contact-item i {
        font-size: 1.1rem;
        margin-right: 0.6rem;
    }
    
    .contact-item strong {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .form-check {
        margin-bottom: 0.5rem;
    }
    
    .form-check-label {
        font-size: 0.85rem;
    }
    
    .partner-logo {
        height: 80px;
        padding: 0.8rem;
    }
    

    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .sustainability-features {
        margin-top: 1.5rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }
    
    .feature-item i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    #aboutCarousel .carousel-item {
        height: 250px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 15%;
        height: 100%;
        opacity: 0.9;
        z-index: 10;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    /* 超小屏幕轮播控制按钮 */
    .carousel-control-prev,
    .carousel-control-next {
        width: 20%;
        height: 100%;
        opacity: 1;
        z-index: 10;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
        background-size: 100% 100%;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 480px) {
    .hero-slide {
        height: 55vh;
        min-height: 350px;
    }
    
    .hero-content {
        padding: 1rem 0.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-description-cn {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .capability-card {
        padding: 1rem;
    }
    
    .factory-card {
        height: 160px;
    }
    
    .certification-card {
        padding: 1rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1rem;
    }
    
    .partner-logo {
        height: 70px;
        padding: 0.6rem;
    }
    

}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .capability-card:hover,
    .factory-card:hover,
    .certification-card:hover,
    .partner-logo:hover {
        transform: none;
        box-shadow: var(--shadow);
    }
    
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .form-control {
        min-height: 44px;
    }
    
    .navbar-toggler {
        min-height: 44px;
        min-width: 44px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.capability-card,
.certification-card,
.factory-card,
.partner-logo {
    cursor: pointer;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* About Us Carousel Styles */
#aboutCarousel {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#aboutCarousel .carousel-item {
    height: 400px;
    overflow: hidden;
}

#aboutCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background-color: #f8f9fa;
}

#aboutCarousel .carousel-indicators {
    bottom: 20px;
}

#aboutCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
}

#aboutCarousel .carousel-indicators button.active {
    background-color: var(--white);
    border-color: var(--white);
}

#aboutCarousel .carousel-control-prev,
#aboutCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 10px;
}

#aboutCarousel .carousel-control-prev {
    left: 10px;
}

#aboutCarousel .carousel-control-next {
    right: 10px;
}

#aboutCarousel .carousel-control-prev-icon,
#aboutCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments for about carousel */
@media (max-width: 767.98px) {
    #aboutCarousel .carousel-item {
        height: 300px;
    }
    
    #aboutCarousel .carousel-control-prev,
    #aboutCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none !important;
    }
    
    .section-padding {
        padding: 20px 0;
    }
    
    .hero-section {
        height: auto;
        min-height: 400px;
    }
}
