.welcome-section {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.social-link {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-link:hover, .social-link:focus {
    background: #ddd;
    text-decoration: none;
    color: #555;
}

/* Service section */

/* Style the left and right arrows */
.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2c3e50;
    color: white;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
}

/* Position left arrow */
.owl-prev {
    left: -25px;
}

/* Position right arrow */
.owl-next {
    right: -25px;
}

/* Hover effect */
.owl-prev:hover, .owl-next:hover {
    background-color: #18bc9c;
    color: white;
}

.service-item .bg-light {
    border-radius: 15px;
    color: #1b2d48;

}

/* Initial transparent navbar */
.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Solid navbar after scrolling */
.navbar.scrolled {
    background-color: #007bff; /* Or rgba(0, 0, 0, 0.85) for a dark theme */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    background-color: #007bff; /* Change to your desired solid color */
}

.navbar img {
    transition: all 0.3s ease;
}

.navbar.scrolled img {
    width: 90px;
    height: 72px;
}

.owl-nav {
    display: none !important;
}

.btn-custom {
    color: white !important;
    background-color: #007bff;
    border: 2px solid #007bff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom:hover {
    color: #007bff !important;
    background-color: transparent !important;
    border-color: #007bff;
    transform: scale(1.05);
}

.team-section {
    background-color: #1b2d48;
    padding: 20px 0 20px 0;
    color: #fff;
}

.read-more-button {
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.read-more-btn {
    background-color: transparent; color: #1b2d48;
}