/* General Body Styles */
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 56px; /* Adjust for fixed navbar height */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #222;
}

.display-3, .display-5 {
    font-weight: 800;
}

/* Navbar Customization */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

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

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.dropdown-menu {
    background-color: #343a40; /* Dark background for dropdown */
    border: none;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #495057;
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1500x800/007bff/ffffff?text=IT+Solutions+Background') no-repeat center center;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f8f9fa;
}

.hero-section .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.hero-section .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.hero-section .btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.hero-section .btn-outline-light:hover {
    background-color: #fff;
    color: #007bff;
    transform: translateY(-2px);
}

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

section:nth-of-type(even) {
    background-color: #f8f9fa;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.card-title {
    color: #007bff;
    font-weight: 600;
}

.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team-member-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #007bff;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

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

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

/* Forms */
.form-control {
    border-radius: 5px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Footer */
footer {
    background-color: #222;
    color: #f8f9fa;
    padding: 40px 0;
}

footer .social-links a {
    color: #f8f9fa;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #007bff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

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

    section {
        padding: 60px 0;
    }
}
