* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
.bg-primary-light {
    background-color: #e6f0ff;
}
.btn-lg{
    background-color: #4274EE;
    width: 340px;
}
.icon{
    margin-bottom: 20px !important;
}

.blog-card {
    border-radius: 12px;
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: white;
    align-items: center;
}
.blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 20px;
    border-radius: 12px 0 0 12px;
}
.blog-title {
    font-weight: bold;
    color:  #4274EE;
    margin-bottom: 20px;
}
.blog-section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color:  #4274EE;
}

.blog-content {
    padding: 15px;
}

.legal-image {
    object-fit: cover;
    width: 100%;
}

.contact-title {
    color: #4274EE;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}


.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding: 2rem;
}

.form-control, .form-select {
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
}

.form-control::placeholder {
    color: #adb5bd;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.contact-info-text h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.contact-info-text p {
    margin-bottom: 0.25rem;
    color: #666;
}

.btn-consultation {
    background: #4274EE;
    border: none;
    padding: 0.75rem;
    border-radius: 8px !important;
    font-weight: 500;
    width: 100%;
    color: white;
}

.btn-consultation:hover {
    background: #3158d3;
}

textarea.form-control {
    min-height: 150px;
}

.pe-lg-4{
    padding: 0px !important;
}

@media (max-width: 991.98px) {
    .legal-image {
        height: 50vh;
    }
}


/* Main navigation container */
.main-nav {
    background-color: #4274EE;
    padding: 20px;
}

/* Flex container */
.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px !important;
}

.container1 {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {

    .container1,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 992px) {

    .container1,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 768px) {

    .container1,
    .container-md,
    .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 576px) {

    .container1,
    .container-sm {
        max-width: 540px;
    }
}

/* Logo styling */
.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    padding-left: 0px !important;
    padding: 20px;
}

/* Navigation list styling */
.navbar1 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* List items styling */
.navbar1 li {
    padding: 0px 20px;
}

/* Navigation links styling */
.navbar1 a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
}

/* Hamburger menu styling (for responsive design) */
.hamburger2 {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10;
}

/* Hamburger menu bars */
.hamburger2 span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.4s;
}

/* Media query for responsive design */
@media (max-width: 768px) {
    .btn-lg {
        width: 100%;
    }
    .blog-card {
        display: block;
    }
    .contact-info-text{
        margin-bottom: 30px !important;
    }
    .p-5{
        padding: 20px !important;
    }
    .logo a{
        padding-left: 0px;
    }
    .navbar1 {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #4274EE;
        position: absolute;
        top: 60px;
        left: 0;
        transition: max-height 0.4s ease-in-out;
    }

    .navbar1.active {
        display: flex;
        z-index: 1;
    }

    .navbar1 li {
        margin: 10px 0;
    }

    .hamburger2 {
        display: flex;
    }

    .hamburger2.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .hamburger2.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger2.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }

    .main-nav {
        justify-content: space-around;
    }
}

/* Additional styling */
.nav-link {
    color: #fff !important;
}

h2 {
    font-size: 36px;
    font-weight: 700;
}

header {
    background-color: #2073C2;
}

button {
    border-radius: 30px !important;
}

.p20 {
    padding: 20px;
    display: block;
}

.card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}



.card-body {
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;
    padding: 4rem 2rem  !important;
    border: 1px solid #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 17px !important;
}

.card-img-top {
    width: 100%;
    height: auto;
}

.card{
    border: none !important;
    border-radius: 20px !important;
}


.section-heading {
    text-align: center;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
}





.nrmltxt {
    font-size: 18px;
}




@media (max-width: 767.98px) {
    .pln {
        padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    }

    .mrn {
        margin-left: 0px;
    }
}

.footer {
    background-color: #4274EE;
    color: #fff;
    padding: 40px 0;
    text-align: left;
}


.footer span {
    display: block;
    font-size: 14px;
}

.nav-item a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.nav-item a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-item a:hover::after {
    transform: scaleX(1);
    color: #fff !important;
    transform-origin: bottom left;
}
a:hover{
    color: #fff !important;
}