/* General Styles */
body {
    padding-top: 180px; /* Account for fixed navbar with larger logo */
}

/* Navigation */
.navbar {
    background-color: white !important; /* Force white background */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-brand img {
    max-height: 160px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.navbar-brand img:hover {
    transform: scale(1.02); /* Subtle zoom effect on hover */
}

/* Carousel */
.carousel {
    margin-top: -180px; /* Offset the padding-top from body */
}

.carousel-item {
    height: 750px;
}

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

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

/* Service Cards */
.service-card {
    padding: 30px;
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Contact Form */
.contact-info {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    height: 100%;
}

.contact-info a {
    color: inherit; /* Use the same color as surrounding text */
    text-decoration: none; /* Remove underline */
    font-weight: normal; /* Match the weight of surrounding text */
    cursor: pointer; /* Keep the pointer cursor for interactivity */
}

.contact-info a:hover {
    text-decoration: none; /* Ensure no underline on hover */
    color: inherit; /* No color change on hover */
}

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

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 30px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
}