.btn-outline-light {
    border-radius: 0;
    transition: background-color 0.5s ease;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #007bff;
}

.hero {
    position: relative;
    height: 1000px;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
}

body {
    scroll-behavior: smooth;
}

#about {
    background-color: #fefefe;
}

.client-logo {
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
    max-width: 100px;
}

.client-logo:hover {
    filter: grayscale(0);
    transform: scale(1.4);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}


/* Portfolio */
#portfolio {
    text-align: center;
    background-color: #f8f8f8;
    padding: 80px 0;
}

#portfolio h2 {
    text-align: center;
    margin-bottom: 30px;
}

#portfolio p {
    text-align: center;
    margin-bottom: 60px;
}

.card {
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
}

.detail-label {
    display: inline-block;
    margin-right: 5px;
    font-weight: bold;
}


/* Services */
#services {
    padding: 60px 0;
    background-color: #f8f8f8;
}

#services h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Services */
#services {
    padding: 60px 0;
    background-color: #f8f8f8;
}

/* Services */
#services {
    padding: 60px 0;
    background-color: #f8f8f8;
}

#services h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Services Section */
#services {
    background-color: #f8f8f8;
    padding: 80px 0;
}

#services h2 {
    text-align: center;
    margin-bottom: 30px;
}

#services p {
    text-align: center;
    margin-bottom: 60px;
}

.service-card {
    background: linear-gradient(135deg, #1e90ff 0%, #ff7f50 100%);
    color: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.service-card h5 {
    margin-bottom: 10px;
    font-weight: bold;
}

.service-card p {
    margin-bottom: 10px;
}


/* Team */
#team {
    padding: 60px 0;
    background-color: #fefefe;
}

/* Team */
#team {
    padding: 60px 0;
    background-color: #fefefe;
}

#team h2 {
    text-align: center;
    margin-bottom: 30px;
}

#team p {
    text-align: center;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
}

.member-img {
    height: 200px;
    width: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.member-img:hover img {
    transform: scale(1.1);
    filter: grayscale(100%); /* Added desaturation effect on hover */
}

.social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.member-img:hover .social {
    transform: translateY(0);
}

.social a {
    color: #fff;
    margin: 0 10px;
    font-size: 16px;
    transition: color 0.5s ease-in-out;
}

.social a:hover {
    color: #007bff;
}

.team-member h4 {
    margin-top: 15px;
    font-weight: bold;
}

.team-member p {
    margin-top: 5px;
}

/* subscribe button */
.btn-subscribe {
    background-color: transparent; 
    color: #fff; 
    padding: 10px 20px;
    border: 2px solid #fff; /* add this line */
    border-radius: 0;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.btn-subscribe:hover {
    background-color: #fff;
    color: #007bff;
}

