.navbar {
    background: #fff;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 1px 3px 4px 0 #adadad33;
}
.navbar-light .navbar-brand {
    color:  #247cca;
}
.navbar-light .navbar-nav .nav-link {
    color: #000;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
    transition: 0.3s;
}
.navbar-light .navbar-nav .nav-link:focus, 
.navbar-light .navbar-nav .nav-link:hover {
    background: #1ebdc2;
    color: #fff;
    transition: 0.3s;
}
.dropdown-item:focus, 
.dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color:  #247cca !important;
}
.sm-menu {
    border-radius: 0px;
    border: 0px;
    top: 97%;
    box-shadow: rgba(173, 173, 173, 0.2) 1px 3px 4px 0px;
}
.dropdown-item {
    color: #3c3c3c;
    font-size: 14px;
}
.dropdown-item.active, 
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #2196F3;
}
.navbar-toggler {
    outline: none !important;
}
.navbar-tog {
    color: #1ebdc2;
}
.megamenu-li {
    position: static;
}
.megamenu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    padding: 15px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.megamenu h6 {
    margin-left: 21px;
}
.megamenu i {
    width: 20px;
}

.header {
    background: #247cca;
    color: white;
    padding: 40px 20px;
    text-align: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-content {
    flex: 1;
    min-width: 300px;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.header-content ul {
    list-style-type: none;
    padding: 0;
}

.header-content ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.header-buttons {
    margin-top: 20px;
}

.header-buttons .btn {
    margin-right: 10px;
}

.header-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.header-image img {
    max-width: 100%;
    height: auto;
    width: 300px; /* Adjust the width as needed */
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .header-image {
        text-align: center;
    }

    .header-buttons {
        text-align: center;
    }

    .header-buttons .btn {
        margin-bottom: 10px;
    }

    .header-image img {
        width: 100%;
        height: auto;
    }
}


    .services {
            margin-top: 20px;
        }    
        
    .card {
            margin-bottom: 20px;
        }    .toc {
            position: sticky;
            top: 20px;
        }
    .highlight {
            background-color: #ffc107;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
        }    
.no-underline {
    text-decoration: none; /* Remove underline */
}
.cost-section {
            padding: 20px;
        }
        .cost-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cost-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.cost-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: auto;
}

.cost-card::before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: #007bff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

        .cta-section {
            background-color: #0056b3;
            color: white;
            text-align: center;
            padding: 20px;
            border-radius: 5px;
        }
        .cta-section a {
            background-color: #ffc107;
            color: black;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
        }
