/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    padding-top: 56px; /* Account for fixed navbar */
}

section {
    padding: 60px 0;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

/* Carousel Section */
.carousel-section {
    margin-top: -16px;
}

.carousel-item {
    height: 70vh;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.7);
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    bottom: 20%;
}

.carousel-caption h5 {
    font-size: 2rem;
    font-weight: 700;
}

/* About Section */
.about-feature {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.about-feature h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Products Section */
.card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p::before {
    content: '\201C';
    font-size: 60px;
    position: absolute;
    left: -20px;
    top: -20px;
    opacity: 0.1;
}

.testimonial-author h5 {
    margin-bottom: 0;
    color: #0d6efd;
}

/* Contact Section */
.contact-info i {
    width: 30px;
    color: #0d6efd;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-link {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 10px;
}

.social-links a:hover {
    transform: translateY(-3px);
}

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

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #0d6efd !important;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
    }
    
    .carousel-caption {
        bottom: 10%;
    }
    
    .carousel-caption h5 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 40vh;
    }
    
    .carousel-caption {
        bottom: 5%;
        padding: 10px;
    }
    
    .carousel-caption h5 {
        font-size: 1.2rem;
    }
}
