/* General Body and HTML styling */
body {
    font-family: 'Arial', sans-serif;
    padding-top: 56px; /* Offset for fixed-top navbar */
}


/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/header-background.png') no-repeat center center/cover;
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.5rem;
}

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

/* Card styles for Services */
.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-body i {
    color: #007bff; /* Primary color from Bootstrap */
}

/* Footer styles */
footer {
    background-color: #343a40; /* Dark background */
    color: white;
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff; /* Hover effect */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1.2rem;
    }
    section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
}

html {
    scroll-behavior: smooth !important; /* Smooth scrolling for anchor links */
}
