
/* Hero Section */
.hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.shutterstock.com/image-photo/global-business-digital-marketing-businessman-600nw-2505052003.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
}

.hero-content {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: #ccc;
}

.breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #0066cc;
}

.breadcrumb .current {
    color: #999;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    color: #0066cc;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

section p {
    color: #444;
    margin-bottom: 1rem;
}

/* Contact Button */
.contact-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #0052a3;
}


.sunny{
   
    border-bottom: 1px solid #bd8f13;
    
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .breadcrumb {
        flex-wrap: wrap;
    }

    .contact-btn {
        padding: 0.5rem 1rem;
    }
}