body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
    /* Smooth scrolling for anchor links */
    padding-top: 56px;
    /* Adjust for fixed navbar */
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}


.nav-item{
    padding-right: 10px;
}

.nav-link{
    font-weight: 600;
    /* font-size: 1.3vw; */
    padding-right: 20px;
}

.nav-link.btn-primary {
    background-color: #ffc107;
    /* Bootstrap yellow for accent */
    border-color: #ffc107;
    color: #3f3f3f !important;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-link.btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}



/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./pexels-artempodrez-5025669.jpg') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
   
}

#hero h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero p.lead {
    font-size: 1.5rem;
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -50px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__zoomIn {
    animation-name: zoomIn;
}


.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.service-card .card-body {
    padding: 2rem;
}

.service-card i {
    color: #ffc107;
    font-size: 40px;
}




/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #e9e9e9;
        /* Dark background for collapsed menu */
        padding: 15px;
        margin-top: 10px;
        border-radius: 5px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p.lead {
        font-size: 1.2rem;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 0;
        /* Remove padding for smaller screens if navbar collapses entirely */
    }

    .fixed-top {
        position: relative;
        /* Make navbar static on smaller screens if desired */
    }

    #hero {
        min-height: 60vh;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p.lead {
        font-size: 1rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}


.bg-yellow{
    background-color: #dfdfdf;
}


footer {
    background-color: #1a1a1a;
}

footer a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

.social-links a {
    font-size: 1.5rem;
}