/* Multi-Page Website Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
}

html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
}

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

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Slider */
.hero-slider-section {
    margin-top: 76px;
}

.carousel-inner,
.carousel-item,
.carousel-item img {
    height: 600px;
}

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

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

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

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
    width: 80px;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 0 80px;
    margin-top: 76px;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-card-home {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.service-card-home img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card-home:hover img {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Responsive */
@media (max-width: 991px) {
    .carousel-inner,
    .carousel-item,
    .carousel-item img {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .carousel-inner,
    .carousel-item,
    .carousel-item img {
        height: 400px;
    }
}
