
/* Header base */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Navbar spacing */
.site-header .navbar {
    padding: 0;
}

/* Logo */
.site-header .navbar-brand img {
    transition: transform 0.3s ease;
}
.site-header .navbar-brand img:hover {
    transform: scale(1.05);
}

/* Nav links */
.site-header .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

/* Hover & active */
.site-header .nav-link:hover,
.site-header .nav-link:focus {
    color: #F27A2A !important;
}

.sub-title{
    color: #F27A2A !important;
    background: hsla(32, 100%, 51%, 0.15) !important;
    text-transform: uppercase;
}
/* Dropdown menu */
.site-header .dropdown-menu {
    border: none;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.site-header .dropdown-item {
    border-radius: 6px;
    padding: 8px 12px;
    transition: background 0.2s ease;
}

.site-header .dropdown-item:hover {
    background: #e8f7ef;
    color: #114fa1;
}

/* Toggler icon white */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* Mobile spacing fix */
@media (max-width: 991px) {
    .site-header {
        padding: 6px 0;
    }
    .site-header .nav-link {
        margin-bottom: 6px;
    }
}

.contact-area {
    background: #f9fbff;
}

.contact-info-area .single-contact-info {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    margin-bottom: 16px;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-input {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 10px 15px;
}

.custom-input:focus {
    border-color: #1d4ed8;
    box-shadow: none;
}

textarea.custom-input {
    height: auto;
}

/* top header css */
.top-header {
    background: #ffffff; /* navy dark */
    color: #161616;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.top-header a {
    color: navy;
    text-decoration: none;
}

.top-header a:hover {
    color: #38bdf8;
}

.top-header-left,
.top-header-right {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-header-left li i {
    margin-right: 6px;
    color: #38bdf8;
}

.top-header-right {
    justify-content: flex-end;
}

.top-header-right li a {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: navy;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header-right li a:hover {
    background: #38bdf8;
    color: #0f172a;
}

.our-services-item {
    background: #EEF4FC;
    border-radius: 10px;
    padding: 40px 25px;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    border: #70abdd 1px solid;
}

.our-services-item h4 {
    margin-top: 20px;
    font-weight: 700;
    font-size: 22px;
    color: var(--navy-blue);
}
.our-services-item p {
    margin-top: 10px;
    font-size: 18px;
    color: var(--dark-2);
}

.service-icon {
    font-size: 42px;
    color: #EEF4FC;
    transition: all 0.3s ease;
}

/* Hover effect */
.our-services-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background: #fff;
}

.our-services-item:hover .service-icon {
    color: #111;
    transform: scale(1.1);
}


