/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header and Navbar */
.navbar-brand {
    font-size: 28px;
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin-left: 20px;
    font-size: 18px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

/* Hero Section */
.hero-section {
    height: 95vh;
    background: url('/images/section.jpeg') center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}


.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-section .btn {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
}

/* Services Section */
#services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

#services h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.card-body img {
    align-items: center;
    height: 5.5rem;
    width: 6.5rem;
}

/* About Section */
#about {
    padding: 60px 0;
}

#about h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2rem;
}

/* Portfolio Section */
#portfolio {
    padding: 60px 0;
}

#portfolio h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
}

#portfolio img {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#portfolio img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#portfolio p {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Contact Section */
#contact {
    padding: 60px 0;
    background-color: #f9f9f9;
}

#contact h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
}

#contact .form-label {
    font-size: 1.1rem;
    font-weight: 600;
}

#contact .form-control {
    padding: 15px;
    font-size: 1rem;
}

#contact .btn {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

footer ul li a:hover {
    color: #007bff;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    #portfolio img {
        margin-bottom: 20px;
    }
}
