/* Google Font */
body {
    font-family: 'Poppins', sans-serif;
}

/* Color Palette */
:root {
    --primary-color: #0d6efd; /* Bootstrap Primary Blue - You can change this */
    --secondary-color: #6c757d; /* Bootstrap Secondary Gray */
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --accent-color: #198754; /* Bootstrap Success Green */
}

/* Navbar Customization */
.navbar-brand img {
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}
.nav-link {
    font-weight: 500;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: var(--primary-color);
}
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 110, 253, 0.7), rgba(13, 110, 253, 0.5)), url('https://placehold.co/1920x1080/222/FFF?text=-') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0;
}
.hero-section h1 {
    font-weight: 700;
    font-size: 3.5rem;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}
.section-title {
    font-weight: 600;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}
footer .text-primary {
    color: var(--primary-color) !important;
}
footer .btn-outline-light {
    border-color: #444;
    color: #aaa;
}
footer .btn-outline-light:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}