/* Custom CSS for Waterview Trading L.L.C */

/* Global Styles */
:root {
    --primary-color: #28a745;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #6c757d;
    --warning-color: #28a745;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --white-color: #ffffff;
    --black-color: #000000;
    --green-color: #28a745;
    --gray-color: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    padding: 0.75rem 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

/* Navbar Logo Styles */
.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-logo {
        height: 45px;
        max-width: 55px;
    }
}

/* Footer Logo Styles */
.footer-logo {
    height: 35px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logo white for dark footer */
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Top Footer Logo Styles (white background) */
.footer-logo-top {
    height: 55px;
    width: auto;
    max-width: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-top:hover {
    transform: scale(1.05);
}

/* Footer Company Name Styles */
.footer-company-name {
    font-size: 1.85rem;
    font-weight: 700;
    font-family: 'Felix Titling Std Regular', serif;
}

/* Header Company Name Styles */
.navbar-brand {
    font-family: 'Felix Titling Std Regular', serif;
}

/* About Section Company Name Styles */
.about-company-name {
    font-family: 'Felix Titling Std Regular', serif;
}

/* Responsive footer logo sizing */
@media (max-width: 768px) {
    .footer-logo {
        height: 30px;
        max-width: 35px;
    }
    
    .footer-logo-top {
        height: 45px;
        max-width: 50px;
    }
    
    .footer-company-name {
        font-size: 1.6rem;
    }
}

/* Main Content */
.main-content {
    margin-top: 80px; /* Account for fixed navbar */
}

/* Section Headers */
.section-header h1,
.section-header .h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Specific section header styles */
section h1.fw-bold,
section .h1.fw-bold {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
    section h1.fw-bold,
    section .h1.fw-bold {
        font-size: 2.5rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    position: relative;
}

.hero-default {
    background: linear-gradient(135deg, var(--green-color) 0%, var(--dark-color) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Slider Styles */
.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.slider-content-overlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(77px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.slider-content-overlay .d-flex {
    align-items: center;
    justify-content: flex-start;
}

.slider-content-overlay .btn {
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
}

.carousel-item {
    min-height: 60vh;
}

.carousel-indicators {
    bottom: 20px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
    border-color: white;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

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

.min-vh-50 {
    min-height: 50vh;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    padding: 4rem 0;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem;
}

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

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Buttons */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Icons */
.fa-3x {
    font-size: 3rem;
}

.fa-4x {
    font-size: 4rem;
}

.fa-10x {
    font-size: 10rem;
}

/* Feature Icons */
.feature-icon, .value-icon, .category-icon {
    transition: transform 0.3s ease;
}

.feature-icon:hover, .value-icon:hover, .category-icon:hover {
    transform: scale(1.1);
}

/* Text Styles */
.text-muted {
    color: #6c757d !important;
}

.lh-lg {
    line-height: 1.8;
}

/* Spacing */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Background Colors */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Badges */
.badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
}

.badge.bg-primary {
    background-color: var(--green-color) !important;
}

/* Forms */
.form-control {
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Alerts */
.alert {
    border-radius: 0.75rem;
    border: none;
    font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #0056b3;
}

/* Footer */
footer {
    background-color: #212529 !important;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        text-align: center;
    }
    
    .hero-slide {
        min-height: 50vh;
    }
    
    .carousel-item {
        min-height: 50vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .fa-10x {
        font-size: 6rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .slider-content-overlay {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .slider-content-overlay .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .slider-content-overlay .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    /* Section headers on mobile */
    section h1.fw-bold,
    section .h1.fw-bold {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .d-flex.gap-3 .btn {
        width: 100%;
    }
    
    .hero-slide {
        min-height: 40vh;
    }
    
    .carousel-item {
        min-height: 40vh;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev {
        left: 5px;
    }
    
    .carousel-control-next {
        right: 5px;
    }
    
    .slider-content-overlay {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .slider-content-overlay .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .slider-content-overlay .btn {
        width: 100%;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom Utilities */
.opacity-75 {
    opacity: 0.75;
}

/* Custom Color Classes */
.btn-green {
    background-color: var(--green-color) !important;
    border-color: var(--green-color) !important;
    color: white !important;
}

.btn-green:hover {
    background-color: #218838 !important;
    border-color: #1e7e34 !important;
    color: white !important;
}

.btn-outline-green {
    color: var(--green-color) !important;
    border-color: var(--green-color) !important;
}

.btn-outline-green:hover {
    background-color: var(--green-color) !important;
    border-color: var(--green-color) !important;
    color: white !important;
}

.bg-green {
    background-color: var(--green-color) !important;
}

.text-green {
    color: var(--green-color) !important;
}

.border-green {
    border-color: var(--green-color) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Product Grid */
.product-grid .card {
    height: 100%;
}

.product-grid .card-img-top {
    transition: transform 0.3s ease;
}

.product-grid .card:hover .card-img-top {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form .form-control {
    margin-bottom: 1rem;
}

.contact-form .btn {
    width: 100%;
}

@media (min-width: 768px) {
    .contact-form .btn {
        width: auto;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

.image-modal img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.image-modal img.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

.image-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.image-modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.image-modal-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.image-modal-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Clickable Image Styles */
.clickable-image {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .image-modal-content {
        max-width: 95%;
        max-height: 95%;
        margin: 10px;
    }
    
    .image-modal img {
        max-height: 70vh;
    }
    
    .image-modal-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}

/* Quotation Modal Styles */
.quotation-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.quotation-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quotation-modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.quotation-modal-header {
    background: linear-gradient(135deg, var(--green-color), #20c997);
    color: white;
    padding: 20px 30px;
    text-align: center;
}

.quotation-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.quotation-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.quotation-form .form-group {
    margin-bottom: 20px;
}

.quotation-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.quotation-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quotation-form .form-control:focus {
    border-color: var(--green-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.quotation-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
}

.quotation-form .row {
    margin: 0 -10px;
}

.quotation-form .col-md-6 {
    padding: 0 10px;
}

.quotation-form textarea {
    resize: vertical;
    min-height: 100px;
}

.quotation-modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.quotation-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.quotation-modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

.quotation-loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.quotation-loading.show {
    display: block;
}

.quotation-success {
    display: none;
    text-align: center;
    padding: 30px;
    color: var(--green-color);
}

.quotation-success.show {
    display: block;
}

.quotation-success i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Quotation Modal */
@media (max-width: 768px) {
    .quotation-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .quotation-modal-header {
        padding: 15px 20px;
    }
    
    .quotation-modal-body {
        padding: 20px;
        max-height: 70vh;
    }
    
    .quotation-modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .quotation-modal-footer .btn {
        width: 100%;
        margin: 5px 0;
    }
}

/* Slider Button Styles */
.slider-content-overlay .btn {
    border-radius: 50px !important;
}

.slider-content-overlay .btn-outline-green {
    color: white !important;
    border-color: white !important;
    background-color: transparent !important;
}

.slider-content-overlay .btn-outline-green:hover {
    background-color: white !important;
    border-color: white !important;
    color: var(--green-color) !important;
}

.slider-content-overlay .btn-outline-green i {
    color: inherit;
}

/* About Section Styles */
.about-image img {
    transition: transform 0.3s ease;
    border-radius: 1rem !important;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-placeholder {
    transition: all 0.3s ease;
    border: 2px dashed #dee2e6;
}

.about-placeholder:hover {
    border-color: var(--green-color);
    background-color: rgba(40, 167, 69, 0.05) !important;
}

.about-content h3 {
    color: var(--green-color) !important;
    position: relative;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--green-color);
    border-radius: 2px;
}

.about-content .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Section Header Styles */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-color), #20c997);
    border-radius: 2px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--green-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--green-color);
}

/* Testimonial Section Styles */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-color), #20c997);
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.testimonial-image:hover img {
    transform: scale(1.05);
}

.testimonial-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--green-color), #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    font-size: 1.2rem;
}

.testimonial-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
}

.testimonial-quote p::before {
    content: '"';
    font-size: 4rem;
    color: var(--green-color);
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-quote p::after {
    content: '"';
    font-size: 4rem;
    color: var(--green-color);
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author h5 {
    color: var(--green-color);
    font-size: 1.3rem;
}

.testimonial-author .text-primary {
    color: var(--green-color) !important;
}

/* Testimonial Slider Controls */
.testimonial-indicators {
    display: none !important;
}

.testimonial-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--green-color);
    background-color: transparent;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.testimonial-indicators button.active {
    background-color: var(--green-color);
    border-color: var(--green-color);
    transform: scale(1.2);
}

.testimonial-control {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--green-color);
    transition: all 0.3s ease;
}

.testimonial-control:hover {
    background-color: var(--green-color);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-control:hover .carousel-control-prev-icon,
.testimonial-control:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.testimonial-control-prev {
    left: -30px;
}

.testimonial-control-next {
    right: -30px;
}

.testimonial-control-prev-icon,
.testimonial-control-next-icon {
    width: 25px;
    height: 25px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

/* Testimonial Animation */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Responsive Testimonial Styles */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-image img,
    .testimonial-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
    
    .testimonial-quote p::before,
    .testimonial-quote p::after {
        font-size: 3rem;
    }
    
    .testimonial-control {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-control-prev {
        left: -25px;
    }
    
    .testimonial-control-next {
        right: -25px;
    }
    
    .testimonial-indicators {
        bottom: -50px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-image img,
    .testimonial-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .testimonial-quote p::before,
    .testimonial-quote p::after {
        font-size: 2.5rem;
    }
    
    .testimonial-control {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .btn {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0 !important;
    }
}
