h1,
h2,
h3,
h4,
h5,
h6,
i {
    color: #f27406;
}

.about-img {
    width: 500px;
    height: 450px;
    margin: 0 50px;
}

.banner {
    height: 88vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.nav-item a:hover , .nav-item a.active{
    color: #f27406 !important;
}


/* Hover effect for dropdown items */
.nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #e06500;
    /* Slightly darker orange on hover */
    color: #fff !important;
}

/* Optional: Dropdown menu background */
.nav-item .dropdown-menu {
    background-color: #fff;
    /* Menu background */
    border: 1px solid #ddd;
    /* Border for separation */
}

/* Optional: Dropdown toggle link style */
.nav-item .dropdown-toggle {
    color: #333;
    /* Normal link color */
}

.nav-item .dropdown-toggle:hover,
.nav-item .dropdown-toggle:focus  {
    color: #f27406;
    /* Highlight on hover/focus */
}


.btn {
    color: #fff;
    background-color: #f27406;
}

.btn:hover {
    color: #f27406 !important;
    background-color: transparent;
    border: 1px solid #f27406;
}

.service-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.02);
}

.service-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
}

.service-card:hover .overlay {
    opacity: 1;
}

.about-banner {
    background: url('assets/banner2.jpg') center center / cover no-repeat;
    height: 300px;
    position: relative;
}

.about-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
}

.about-banner h1,
.breadcrumb {
    color: #fff;
}

.about-banner .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
    opacity: 1;
}

.about-banner .container {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 28px;
    color: #f27406;
    background-color: #eaf6f5;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 0 20px rgba(13, 202, 240, 0.3);
    transition: 0.3s;
    transform: translateY(-10px);
}

.subscribe-box {
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-subscribe {
    background-color: #3080f0;
    color: white;
}

.btn-subscribe:hover {
    background-color: #6baff8;
}

@media (max-width: 768px) {
    .about-img {
        margin: 0;
    }

    .banner {
        height: 25vh;
        background-position: top;
    }
}