.hero-section {
    position: relative;
    background: url('logo.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.btn-custom {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin: 0 0.5rem;
}

/* Our Products Section */
.card img {
    height: 300px;
    object-fit: cover;
}

.card-body .badge {
    font-size: 1rem;
    padding: 0.5rem;
}

.card-body .btn-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.text-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.text-center p {
    font-size: 1.125rem;
    color: #6c757d;
}

.navbar {
    max-width: 900px;
    border-radius: 30px;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

header .navbar-brand img {
    margin-right: 10px;
}

header .navbar-nav .nav-link {
    margin-right: 1rem;
}

header .btn-success {
    border-radius: 50px;
}

.footer {
    background-color: #000;
    color: white;
}

.footer ul {
    padding: 0;
    list-style: none;
}

.footer ul li {
    display: inline;
    margin: 0 10px;
}

.footer .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
}

.footer .social-icons a:hover {
    color: #ddd;
}