/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

h1, h2, h5 {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #1e90ff !important;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #333 !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #1e90ff !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/hero-bg.webp') center/cover no-repeat, linear-gradient(135deg, #1e90ff, #00bfff);
    min-height: 70vh;
    padding: 4rem 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.5rem;
}

.btn-primary {
    background: #1e90ff;
    border: none;
    padding: 0.8rem 2rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #00bfff;
}

/* Services */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
    color: #1e90ff;
}

/* Portfolio */
.portfolio-card img {
    border-radius: 8px 8px 0 0;
}

.portfolio-card {
    transition: transform 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

/* Testimonials */
.blockquote {
    font-size: 1.1rem;
    color: #555;
}

.blockquote-footer {
    color: #1e90ff;
}

/* About */
.social-links i {
    transition: color 0.3s;
}

.social-links i:hover {
    color: #1e90ff !important;
}

/* Contact */
.form-control {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 0.8rem;
}

.form-control:focus {
    border-color: #1e90ff;
    box-shadow: 0 0 5px rgba(30, 144, 255, 0.5);
}

textarea.form-control {
    height: 150px;
}

/* Footer */
footer {
    background: #333 !important;
}

footer a:hover {
    color: #1e90ff !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1.2rem;
    }
    .navbar-nav {
        text-align: center;
    }
}