body {
    font-family: 'Nunito Sans', sans-serif;
}

.nav-item {
    padding: 0.5rem 0xp;
}

.dropdown-hover:hover>.dropdown-menu {
    display: inline-block;
}

.dropdown-hover>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

.container {
    max-width: 1200px !important;
}

.inner-top-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.top-bar {
    background-color: #f4f4f4;
    padding: 7px 0;
}

.inner-top-bar ul {
    display: flex;
    flex-direction: row;
    gap: 25px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.inner-top-bar ul li a {
    text-decoration: none;
    color: #525252;
}

.helpline a {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
}

.helpline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-logo {
    max-height: 70px;
}

.carousel-control-next {
    right: -150px !important;
}

.carousel-control-prev {
    left: -150px !important;
}

header {
    position: sticky;
    /* or "fixed" if you want it always visible */
    top: 0;
    /* sticks it to the top */
    z-index: 1040;
    /* make sure it’s above content (Bootstrap navbars use 1030) */
    background: #fff;
}

.header-section {
    background-color: #f4f4f4;
    padding: 50px 0;
}

.cta-box {
    background: #008fd5;
    border-radius: 10px;
    padding: 25px;
    max-width: 500px;
    margin: 40px auto;

    text-align: center;
}

.cta-inner h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-inner p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-primary {
    display: block;
    background: #1a1a6d;
    /* dark blue */
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 12px;
    font-weight: bold;
}

.btn-primary:hover {
    background: #000066;
}

.btn-outline {
    display: block;
    border: 2px solid #1a1a6d;
    color: #1a1a6d;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline:hover {
    background: #1a1a6d;
    color: #fff;
}

.cta-phone {
    background: #008fd5;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
}

.cta-phone p {
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
}

.phone-number {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
}

.related-services {

    margin: 30px 0;
}

.related-services h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.related-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services li {
    border-bottom: 1px solid #eee;
}

.related-services li:last-child {
    border-bottom: none;
}

.related-services a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 12px 0;
    color: #000;
    font-size: 16px;
}

.related-services .icon {
    background: #008fd5;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.related-services .arrow {
    color: #555;
    font-size: 18px;
    margin-left: auto;
}

.why-choose {
    max-width: 600px;
    margin: 40px auto;

}

.why-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 25px;
}

.why-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.why-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.btn-green {
    display: inline-block;
    background: #008fd5;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-green:hover {
    background: #008fd5;
}

.main-img {
    max-width: 100%;
    margin: 40px 0;
    border-radius: 10px;
}