@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400&display=swap');

.navbar {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 6rem;
    position: fixed;

    width: 100%;
    transition: .4s linear;
    z-index: 9;

}

.navbar .logo h1 {
    font-weight: 500;
    color: #fff;
}


.hovereff {
    margin: auto;
    background-color: #F8F8F8;
    border-radius: 2rem;
    padding: 1rem
}

.hovereff li a {
    color: #000;
    font-size: 1rem;
    font-weight: 400;

    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-bottom: 0.2rem;


}

.hovereff li a:hover {
    text-decoration: underline;
    text-decoration-color: #1D3C6A;




}

.hovereff li a.active {
    text-decoration: underline;
    text-decoration-color: #1D3C6A;


}





.navbar.sticky {
    background-color: #F8F8F8;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

    padding: 0.75rem 6rem;
}



.navbar-brand img {
    height: 50px;

}

.consultation-btn {
    background-color: #000;

    color: #FFD700;

    font-weight: bold;
}

.consultation-btn:hover {
    background-color: #FFD700;

    color: #000;
}

.loginbtn {
    display: inline-block; /* Makes the link behave like a button */
    padding: 10px 20px; /* Adjust the padding for size */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Makes the text bold */
    text-align: center; /* Centers the text */
    text-decoration: none; /* Removes the underline */
    color: rgb(0, 0, 0); /* Text color */
    background-color: #ffffff; /* Background color */
    border: none; /* Removes border */
    border-radius: 20px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
}


@media (max-width: 480px) {
    .navbar {
        padding: 1rem 1rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    .navbar-toggler-icon {
        width: 20px;
    }

    .navbar-collapse {
        background-color: #F4EEE4;
        padding: 1rem;
    }

    .navbar.sticky {
        padding: 1rem 1rem;
    }

    .navbar-toggler {
        background-color: #fff
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .navbar {
        padding: 2rem 1rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    .navbar-toggler-icon {
        width: 20px;

    }
    .navbar-toggler {
        background-color: #fff
    }

    .navbar-collapse {
        background-color: #F4EEE4;
        padding: 1rem;
    }

    .navbar.sticky {
        padding: 1rem 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1278px) {
    .navbar {
        padding: 2rem 2rem;
    }

    .navbar.sticky {
        padding: 1rem 2rem;
    }

}

/* container fluid  */
@media (min-width: 1200px) {
    .container-fluid {
        max-width: 1200px !important;
    }

}
@media (min-width: 481px) and (max-width: 768px){
    .container-fluid {
        max-width: 481px !important;
    }
}
@media (min-width: 769px) and (max-width: 1000px){
    .container-fluid {
        max-width: 769px !important;
    }

}
@media (min-width: 1001px) and (max-width: 1199px){
    .container-fluid {
        max-width: 1001px !important;
    }

}



/* hero-section  */




.head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
    z-index: 5;
}

.quote {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    /* Bold */
    font-size: 48px;
    /* Font size */
    color: #F8F8F8;
    text-align: justify;
    padding-bottom: 2rem;
    padding-top: 5rem;
    padding-right: 10rem;

}

.quotep {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    /* Bold */
    font-size: 20px;
    /* Font size */
    color: #F8F8F8;
    text-align: justify;
    padding-right: 10rem;
}

.info-card {

    background-color: #1D3C6A;
    color: #F8F8F8;
    padding: 1rem;
    margin-top: 8rem;

}

.info-card p {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    /* Regular */
    font-size: 14px;
    /* Font size */
}

.info-card h3 {

    font-weight: 400;
    /* Regular */
    font-size: 48px;
    /* Font size */
}

.btn-consultation {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
    margin-top: 3rem;
    padding: 1rem;
    transition: all 0.5s ease;
}

.btn-consultation:hover {
    background-color: #ffc107;
    box-shadow: 4px 4px 10px rgba(239, 235, 116, 0.8);
    /* Right and bottom white shadow */
    transform: translateY(-2px);
    /* Slight lift effect */
}



@media (max-width: 480px) {


    .head {
        padding: 1rem 1rem;
    }

    .quote {
        font-size: 32px;
        /* Adjust font size */
        padding-top: 3rem;
        padding-right: 1.5rem;
        /* Reduce padding */
        padding-bottom: 1rem;
    }

    .quotep {
        font-size: 16px;
        /* Adjust font size */
        padding-right: 1.5rem;
        /* Reduce padding */
    }

    .info-card {
        margin-top: 4rem;
        /* Reduce top margin */
        padding: 0.5rem;
        /* Adjust padding */
    }

    .info-card h3 {
        font-size: 36px;
        /* Adjust font size */
    }

    .info-card p {
        font-size: 12px;
        /* Adjust font size */
    }

    .btn-consultation {
        font-size: 14px;
        /* Adjust button font size */
        padding: 0.75rem;
        /* Adjust padding */
        margin-top: 2rem;
        /* Reduce top margin */
    }


}
@media (min-width: 481px) and (max-width: 768px) {


    .quote {
        font-size: 36px; /* Reduce font size for better fit */
        padding-right: 5rem; /* Adjust padding */
        padding-top: 3rem;
    }

    .quotep {
        font-size: 16px; /* Smaller font size for better readability */
        padding-right: 5rem;
    }

    .info-card {
        margin-top: 4rem; /* Reduce top margin for a compact layout */
        padding: 1rem 0.5rem; /* Adjust padding */
    }

    .info-card h3 {
        font-size: 36px; /* Adjust heading size */
    }

    .info-card p {
        font-size: 12px; /* Reduce font size for content */
    }

    .btn-consultation {
        font-size: 14px; /* Adjust button font size */
        padding: 0.8rem; /* Adjust padding */
        margin-top: 2rem; /* Reduce margin */
    }
}


@media (min-width: 481px) and (max-width: 575px) {

    .head {
        padding: 1rem 1rem;
    }


}

@media (min-width: 576px) and (max-width: 768px) {
    .head {
        padding: 1rem 1rem;
    }



}

@media (min-width: 769px) and (max-width: 991px) {


    .head {
        padding: 3rem 1rem;
    }

    .navbar {
        padding: 2rem 2rem;
    }

    .navbar.sticky {
        padding: 1rem 3rem;
    }



    .hero {

        padding-top: 3rem;

    }


}

@media (min-width: 992px) and (max-width: 1278px) {
    .head {
        padding: 3rem 3rem;
    }


}

/* services section  */


.services-section {
    padding: 3rem 6rem;
    background-color: #F2F2F2;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Nunito Sans', sans-serif;

}

.hashtitle {
    color: #FFC107;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    /* Bold */
    font-size: 16px;
    /* Font size */
}

.card1 {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 2rem;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
    background-color: #ffffff;
}

.card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.card-icon1 {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #1D3C6A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin: 0 auto 15px;
}



.btn-view {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
    margin-top: 3rem;
    padding: 1rem;
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    transition: all 0.5s ease;
}

.btn-view:hover {
    background-color: #ffc107;
    box-shadow: 4px 4px 10px rgba(104, 104, 104, 0.8);
    /* Right and bottom white shadow */
    transform: translateY(-2px);
    /* Slight lift effect */
}

@media (max-width: 480px) {
    .services-section {
        padding: 2rem 1rem;
        /* Reduce padding */
    }

    .section-title {
        font-size: 32px;
        /* Adjust font size */

    }

    .hashtitle {
        font-size: 14px;
        /* Adjust font size */

    }

    .card1 {
        padding: 1.5rem;
        /* Reduce padding */
        padding-top: 2rem !important;
        /* Reduce top padding */
        padding-bottom: 2rem !important;
        /* Reduce bottom padding */
    }

    .card-icon1 {
        width: 6rem;
        /* Reduce icon size */
        height: 6rem;
        /* Reduce icon size */
        font-size: 24px;
        /* Adjust font size */
        margin: 0 auto 10px;
        /* Reduce bottom margin */
    }

    .btn-view {
        font-size: 14px;
        /* Adjust font size */
        padding: 0.75rem;
        /* Adjust padding */
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        margin-top: 2rem;
        /* Reduce top margin */
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .services-section {
        padding: 2rem 3rem; /* Adjust padding for medium screens */
    }

    .section-title {
        font-size: 36px; /* Reduce font size for better fit */
    }

    .hashtitle {
        font-size: 14px; /* Adjust font size */
    }

    .card1 {
        padding: 1.5rem; /* Adjust padding for cards */
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .card-icon1 {
        width: 6rem; /* Reduce icon size */
        height: 6rem;
        font-size: 24px; /* Adjust font size for icons */
    }

    .btn-view {
        font-size: 14px; /* Adjust button font size */
        padding: 0.8rem; /* Adjust padding */
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        margin-top: 2rem; /* Reduce top margin */
    }
}



/* about section  */
.agency-section {
    padding: 3rem 4rem;
    padding-bottom: 10rem !important;
    background-color: #F2F2F2;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}





.content-agency {
    position: relative;
    max-width: 50rem;
    background-color: #1D3C6A;
    z-index: 2;
    padding: 4rem;
    padding-right: 12rem;
}

.position {
    position: relative;
}

.content-agency h2 {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Nunito Sans', sans-serif;
    color: #F8F8F8;
}

.content-agency p {
    margin-top: 1rem;
    line-height: 1.6;
    font-size: 16px;
    color: #F8F8F8;
    text-align: justify;
}



.image-agency {
    position: absolute;
    top: 16%;
    right: 7%;
    width: 28rem;
    height: 20rem;
    overflow: hidden;
    z-index: 4;
}


.image-agency img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the container while maintaining its aspect ratio */
    object-position: center;
    /* Centers the image */
}

.background-yellow {
    position: absolute;
    top: 47%;
    right: 1%;
    width: 90%;
    height: 66%;
    background-color: #ffc107;
    z-index: 0;
}

.btn-learn {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
    margin-top: 3rem;
    padding: 1rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    transition: all 0.5s ease;
}

.btn-learn:hover {
    background-color: #ffc107;
    box-shadow: 4px 4px 10px rgba(239, 235, 116, 0.8);
    /* Right and bottom white shadow */
    transform: translateY(-2px);
    /* Slight lift effect */

}
@media (min-width: 1150px) and (max-width: 1199px){
    .image-agency {
        position: absolute;
        top: 27%;
        right: 4%;
        width: 20rem;
        height: 14rem;
        overflow: hidden;
        z-index: 4;


    }

}

@media (min-width: 1200px) and (max-width: 1249px){
    .image-agency {
        position: absolute;
        top: 23%;
        right: 4%;
        width: 24rem;
        height: 17rem;
        overflow: hidden;
        z-index: 4;

    }


}
@media (min-width: 1250px) and (max-width: 1300px){
    .image-agency {
        position: absolute;
        top: 16%;
        right: 6%;
        width: 26rem;
        height: 20rem;
        overflow: hidden;
        z-index: 4;
    }


}

@media (min-width: 1150px) {
    .image-agency1 {
        display: none;
    }

}

@media (max-width: 480px) {
    .agency-section {
        flex-direction: column;
        /* Stack content vertically */
        padding: 2rem 1rem;
        /* Adjust padding */
        padding-bottom: 5rem !important;
        /* Reduce bottom padding */
    }

    .content-agency {
        max-width: 100%;
        /* Allow content to span full width */
        padding: 2rem;
        /* Adjust padding */
        padding-right: 1.5rem;
        /* Reduce right padding */
    }

    .content-agency h2 {
        font-size: 32px;
        /* Reduce font size */
    }

    .content-agency p {
        font-size: 14px;
        /* Reduce font size */
        line-height: 1.5;
        /* Adjust line height */
    }

    .image-agency1 {
        position: static;
        /* Disable absolute positioning */
        width: 100%;
        /* Make the image full width */
        height: auto;
        /* Allow height to adjust based on image aspect ratio */
        margin-top: 2rem;
        /* Add spacing between text and image */
    }

    .image-agency {
        display: none;
    }

    .background-yellow {
        display: none;
        /* Hide background decoration for simplicity */
    }

    .btn-learn {
        font-size: 14px;
        /* Adjust button font size */
        padding: 0.75rem;
        /* Adjust padding */
        margin-top: 2rem;
        /* Reduce top margin */
    }
}
@media (min-width: 481px) and (max-width: 768px){
    .agency-section {
        padding: 2rem 4rem;
        padding-bottom: 2rem !important;

    }
    .content-agency {
        max-width: 100%;
        /* Allow content to span full width */
        padding: 2rem;
        /* Adjust padding */
        padding-right: 1.5rem;
        /* Reduce right padding */
    }

    .content-agency h2 {
        font-size: 32px;
        /* Reduce font size */
    }

    .content-agency p {
        font-size: 14px;
        /* Reduce font size */
        line-height: 1.5;
        /* Adjust line height */
    }

    .image-agency1 {
        position: static;
        /* Disable absolute positioning */
        width: 100%;
        /* Make the image full width */
        height: auto;
        /* Allow height to adjust based on image aspect ratio */
        margin-top: 2rem;
        /* Add spacing between text and image */
    }

    .image-agency {
        display: none;
    }

    .background-yellow {
        display: none;
        /* Hide background decoration for simplicity */
    }

    .btn-learn {
        font-size: 14px;
        /* Adjust button font size */
        padding: 0.75rem;
        /* Adjust padding */
        margin-top: 2rem;
        /* Reduce top margin */
    }
}
@media (min-width: 769px) and (max-width: 1150px){
    .image-agency1 {
        position: static;
        /* Disable absolute positioning */
        width: 100%;
        /* Make the image full width */
        height: auto;
        /* Allow height to adjust based on image aspect ratio */
        margin-top: 2rem;
        /* Add spacing between text and image */
    }

    .image-agency {
        display: none;
    }
    .background-yellow {
        display: none;
        /* Hide background decoration for simplicity */
    }
    .content-agency {
        max-width: 100%;
        /* Allow content to span full width */
        padding: 2rem;
        /* Adjust padding */
        padding-right: 1.5rem;
        /* Reduce right padding */
    }
    .agency-section {
        padding: 2rem 4rem;
        padding-bottom: 3rem !important;

    }

}




/* why choose us  */


.choose-us {
    position: relative;
    padding: 3rem 6rem;
    background: linear-gradient(rgba(29, 60, 106, 0.5), hsla(216, 57.00%, 26.50%, 0.50)),
        url('../img/bg2.png') no-repeat center center;
    background-size: cover;
}

.choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(29, 60, 106, 0.5);
    z-index: 0;
}

.choose-us h2 {
    position: relative;
    font-size: 48px;
    font-weight: bold;
    font-family: 'Nunito Sans', sans-serif;
    color: #F8F8F8;
    z-index: 2;
}

.hashtitle1 {
    color: #FFC107;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    /* Bold */
    font-size: 16px;
    /* Font size */
    position: relative;
    z-index: 2;
}

.card3 {
    background-color: #1D3C6A;
    color: white;
    border: none;
}

.card-title3 {
    font-size: 1.25rem;
    font-weight: bold;
    font-family: 'Nunito Sans', sans-serif;
}

.card-body3 {
    padding: 20px;
}

.card-body3 p {
    text-align: justify;
}
@media (min-width: 481px) and (max-width: 768px) {
    .choose-us {
        padding: 2rem 3rem; /* Reduce padding for medium screens */
        background-size: cover; /* Ensure background scales well */
    }

    .choose-us h2 {
        font-size: 36px; /* Adjust heading size */
    }

    .hashtitle1 {
        font-size: 14px; /* Adjust font size for the subtitle */
    }

    .card3 {
        margin-top: 1.5rem; /* Add spacing between cards */
        padding: 1rem; /* Reduce padding for a more compact design */
    }

    .card-title3 {
        font-size: 1rem; /* Adjust card title font size */
    }

    .card-body3 {
        padding: 15px; /* Reduce padding for medium screens */
    }

    .card-body3 p {
        font-size: 14px; /* Adjust font size for text */
    }
}


/* lawyer  */
.lawyer-section {
    padding: 3rem 6rem;
    background-color: #F2F2F2;
}

.team-card {

    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #F2F2F2;
}

.lawyer-image {
    width: 24rem;
    height: 24rem;
    overflow: hidden;
}

.lawyer-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.team-card .info {
    background-color: #1D3C6A;

    color: white;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: top 0.3s ease;
    text-align: justify;
}

.team-card:hover .info {
    top: 0;
}

.team-card:hover {
    border: 1px solid #1D3C6A;
}

.team-card .info p {
    margin: 0;
    font-size: 14px;
}

.team-card .info .social-icons {
    position: relative;
    top: -10%;
    display: flex;
    gap: 10px;

}

.team-card .info .social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.team-card .info .social-icons img:hover {
    transform: scale(1.2);
}

.team-card .details {
    background-color: white;
    padding: 1rem;

    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #ddd;
}

.team-card .details h5 {
    margin: 0;
    font-weight: bold;
    font-family: 'Nunito Sans', sans-serif;
    color: #1c1c1c
}

.team-card .details p {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-family: 'Nunito Sans', sans-serif;
}

@media (max-width: 420px) {
    .lawyer-section {
        padding: 2rem 2rem !important;

    }
}
@media (min-width: 380px) and (max-width: 480px){
    .team-card{
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

}
@media (max-width: 480px) {
    .lawyer-section {
        padding: 2rem 4rem;

    }

    .team-card {
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
    }

    .lawyer-image {
        width: 18rem;
        height: 18rem;
        overflow: hidden;
    }

    .team-card .info {
        padding: 0.5rem;
    }

    .team-card .info p {
        font-size: 12px;
    }

    .team-card .info .social-icons img {
        width: 20px;
        height: 20px;
    }

    .team-card .details {
        padding: 0.5rem;
    }

    .team-card .details h5 {
        font-size: 16px;
    }

    .team-card .details p {
        font-size: 12px;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .lawyer-section {
        padding: 2rem 3rem; /* Reduce padding for medium screens */
    }

    .lawyer-image {
        width: 20rem; /* Scale down image size */
        height: 20rem;
    }

    .team-card .info {
        padding: 0.8rem; /* Adjust padding for the info section */
        font-size: 12px; /* Scale down font size */
    }

    .team-card .info p {
        font-size: 12px; /* Reduce font size for text */
    }

    .team-card .details {
        padding: 0.8rem; /* Adjust padding for details section */
    }

    .team-card .details h5 {
        font-size: 1rem; /* Reduce font size of the heading */
    }

    .team-card .details p {
        font-size: 12px; /* Adjust paragraph font size */
    }

    .team-card .info .social-icons img {
        width: 20px; /* Scale down social icons */
        height: 20px;
    }

    .team-card {
        border-bottom-left-radius: 0.5rem; /* Adjust border radius */
        border-bottom-right-radius: 0.5rem;
        margin-left: 5rem;
        margin-right: 5rem;
    }
}
@media (min-width: 510px) and (max-width: 570px){
    .team-card {

        margin-left: 4rem !important;
        margin-right:  4rem !important;
    }
}
@media (min-width: 481px) and (max-width: 509px){
    .team-card {

        margin-left: 2rem !important;
        margin-right:  2rem !important;
    }

}
@media (min-width: 769px) and (max-width: 830px){
    .lawyer-image {
        width: 12rem;
        height: 18rem;
        overflow: hidden;
    }

}
@media (min-width: 831px) and (max-width: 900px){
    .lawyer-image {
        width: 14rem;
        height: 18rem;
        overflow: hidden;
    }

}
@media (min-width: 901px) and (max-width: 950px){
    .lawyer-image {
        width: 16rem;
        height: 20rem;
        overflow: hidden;
    }

}
@media (min-width: 951px) and (max-width: 1000px){
    .lawyer-image {
        width: 18rem;
        height: 20rem;
        overflow: hidden;
    }

}
@media (min-width: 1001px) and (max-width: 1100px){
    .lawyer-image {
        width: 18rem;
        height: 20rem;
        overflow: hidden;
    }

}

/* client testimonial  */
.client {
    background-color: #1D3C6A;
    padding: 3rem 6rem;
    position: relative;
}

.section-titlew {
    font-size: 48px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    color: #F2F2F2;

}

.section-titlew span {
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    /* Regular */
    font-size: 80px;
}

.testimonial-card {
    background-color: #1D3C6A;

    color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    max-height: 800px;

}

.testimonial-box {
    background-color: white;
    padding: 3rem;
    margin-top: 4rem;
    padding-top: 5rem !important;
    border-radius: 1rem;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonial-image img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
}

.testimonial-image {
    position: absolute;
    bottom: 58%;
    right: 44%;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #7A7A7A;
}

.client-name {
    color: #000000;
    font-size: 24px;
}

.rounded-circle {
    border: 5px solid #FFC107;


}

@media (max-width: 480px) {
    .client {
        padding: 2rem 1rem;
    }

    .section-titlew {
        font-size: 32px;
    }

    .section-titlew span {
        font-size: 48px;
    }

    .testimonial-card {
        max-width: 100%;
        max-height: none;
        border-radius: 8px;
    }

    .testimonial-box {
        padding: 1.5rem;
        margin-top: 2rem;
        padding-top: 3rem !important;
        height: 20rem;
    }

    .testimonial-image img {
        width: 6rem;
        height: 6rem;
        object-fit: cover;
    }



    .testimonial-image {
        position: absolute;
        bottom: 70%;
        right: 35%;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.4;
    }

    .client-name {
        font-size: 18px;
    }

    .rounded-circle {
        border-width: 3px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        background-color: #959595;
    }
}
@media (min-width: 769px) and (max-width: 1000px){
    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        background-color: #959595;
    }

}
@media (min-width: 481px) and (max-width: 768px) {
    .client {
        padding: 2rem 3rem; /* Reduce padding for medium screens */
    }

    .section-titlew {
        font-size: 36px; /* Scale down title size */
    }

    .section-titlew span {
        font-size: 60px; /* Adjust span font size */
    }

    .testimonial-card {
        max-width: 100%; /* Make testimonial cards fit the container */
        max-height: 100%; /* Remove fixed height for flexibility */
        border-radius: 8px; /* Slightly reduce border radius */
    }

    .testimonial-box {
        padding: 3rem;
            margin-top: 2rem;
            padding-top: 6rem !important;
            height: 20rem;
    }

    .testimonial-image {
        bottom: 68%;
        right: 36%;
    }


    .testimonial-image img {
        width: 7rem; /* Reduce image size */
        height: 7rem;
    }

    .testimonial-text {
        font-size: 14px; /* Adjust font size for text */
        line-height: 1.4; /* Adjust line height for smaller text */
    }

    .client-name {
        font-size: 20px; /* Reduce font size for names */
    }

    .rounded-circle {
        border-width: 4px; /* Reduce border thickness */
    }
    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        background-color: #959595;
    }
}
@media (min-width: 769px) and (max-width: 1000px){
    .testimonial-image {
        bottom: 58%;
        right: 40%;
    }

}


/* FAQ  */
.faq-section {
    padding: 3rem 6rem;
    background-color: #F2F2F2;
    padding-top: 2rem !important;
}

#faqHeader {
    color: #FFC107;
    /* Yellow color */
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.accordion-button {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-weight: bold;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #000;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 20px;
    font-family: 'Roboto', sans-serif;

    font-weight: 400;

    font-size: 16px;

    line-height: normal;

    color: #7A7A7A;
    text-align: left;
}

.accordion-head {
    font-family: 'Roboto', sans-serif;

    font-weight: 400 !important;

    font-size: 20px !important;

    line-height: normal;

}

@media (max-width: 480px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    #faqHeader {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .accordion-item {
        border-radius: 8px;
    }

    .accordion-button {
        padding: 10px;
        font-size: 14px;
    }

    .accordion-body {
        padding: 15px;
        font-size: 14px;
        line-height: 1.5;
    }

    .accordion-head {
        font-size: 14px !important;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem; /* Reduce padding for medium screens */
    }

    #faqHeader {
        font-size: 12px; /* Adjust font size for the FAQ header */
        margin-bottom: 8px; /* Reduce margin */
    }

    .accordion-item {
        margin-bottom: 10px; /* Reduce spacing between items */
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); /* Slightly reduce shadow intensity */
    }

    .accordion-button {
        padding: 12px; /* Adjust padding for medium screens */
        font-size: 14px; /* Scale down font size */
    }

    .accordion-body {
        padding: 15px; /* Reduce padding */
        font-size: 14px; /* Adjust font size */
        line-height: 1.5; /* Slightly increase line height for readability */
    }

    .accordion-head {
        font-size: 18px !important; /* Scale down header size */
    }
}



/* legal update  */

.news-section {

    padding: 3rem 16rem;
    background-color: #F2F2F2;
    padding-top: 0rem !important;

    /* top: -40%; */

}



.news-header {
    color: #FFC107;
    /* Yellow Header Text */
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.news-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.news-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    height: 20rem;
    margin-top: 2rem;
}

.news-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 10rem;
    width: 25rem;
    object-fit: cover;
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FFC107;
    /* Yellow Date Background */
    color: #000;
    /* Black Text */
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

.card-bodyn {
    background-color: #fff;

    padding: 20px;
}

.card-titlen {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-textn {
    font-size: 14px;
    color: #6c757d;
}

.read-more {
    font-size: 14px;
    font-weight: bold;
    color: #1D3C6A;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .news-section {

        padding: 3rem 3rem;
        background-color: #F2F2F2;
        padding-top: 0rem !important;

        /* top: -40%; */

    }

    .news-header {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .news-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .news-card {
        height: auto;
        margin-top: 1.5rem;
    }

    .news-card img {
        height: 8rem;
        width: 100%;
    }

    .news-date {
        font-size: 12px;
        padding: 4px 8px;
    }

    .card-bodyn {
        padding: 15px;
    }

    .card-titlen {
        font-size: 14px;
    }

    .card-textn {
        font-size: 12px;
    }

    .read-more {
        font-size: 12px;
    }



}
@media (min-width: 481px) and (max-width: 600px){
    .news-card {

        margin-left: 12% !important;
        margin-right: 12% !important;

    }

}
@media (min-width: 481px) and (max-width: 768px) {


    .news-header {
        font-size: 12px; /* Adjust font size for the header */
        margin-bottom: 8px; /* Reduce bottom margin */
    }

    .news-title {
        font-size: 20px; /* Scale down font size */
        margin-bottom: 20px; /* Adjust spacing below the title */
    }

    .news-card {
        height: auto; /* Allow the height to adjust dynamically */
        margin-top: 1.5rem; /* Reduce top margin */
        margin-left: 20%;
        margin-right: 20%;

    }

    .news-card img {
        width: 20rem; /* Make the image width responsive */

    }

    .news-date {
        font-size: 12px; /* Adjust font size */
        padding: 4px 8px; /* Reduce padding */
    }

    .card-bodyn {
        padding: 15px; /* Adjust padding */
    }

    .card-titlen {
        font-size: 14px; /* Scale down title font size */
    }

    .card-textn {
        font-size: 12px; /* Adjust font size */
    }

    .read-more {
        font-size: 12px; /* Adjust font size */
    }
}

@media (min-width: 481px) and (max-width: 768px){
    .news-section {

        padding: 3rem 5rem;
        background-color: #F2F2F2;
        padding-top: 0rem !important;

        /* top: -40%; */

    }
}
@media (min-width: 769px) and (max-width: 1000px){
    .news-section {

        padding: 3rem 5rem;
        background-color: #F2F2F2;
        padding-top: 0rem !important;

        /* top: -40%; */

    }

}
@media (min-width: 1001px) and (max-width: 1200px){
    .news-section {

        padding: 3rem 10rem;
        background-color: #F2F2F2;
        padding-top: 0rem !important;

        /* top: -40%; */

    }


}
@media (min-width: 1200px){
    .news-section {

        padding: 3rem 20rem;
        background-color: #F2F2F2;
        padding-top: 0rem !important;

        /* top: -40%; */

    }

}


/* footer  */
.footer {
    background-color: #1D3C6A;
    color: #fff;
    padding: 40px 0;
    text-align: center;

}

.footer {

    padding-top: 4rem;
    position: relative;
    overflow: hidden;

}


.footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 32px;
}

.custom-input-group {

    max-width: 35rem;
    background-color: #F2F2F2;
    border-radius: 0px;
    padding: 1rem;
}

.custom-input {
    display: flex;
    margin-left: 1rem;
    align-items: flex-start;

    border: none;
    box-shadow: none;
    background-color: #F2F2F2;

    padding: 8px;
    padding-left: 0%;
    border: 0px solid #ccc;
    border-radius: 0px 0 0 0px;
    outline: none;
}

.form-control {
    outline: none;
}

.btn-subscribe {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
    margin-top: 0rem;
    padding: 0.5rem;
    padding-left: 0rem !important;
    padding-right: 0rem !important;
    transition: all 0.5s ease;
    width: 8rem;
    margin-left: 1rem;

}

.btn-subscribe:hover {
    background-color: #ffc107;
    box-shadow: 4px 4px 10px rgba(104, 104, 104, 0.8);
    /* Right and bottom white shadow */
    transform: translateY(-2px);
    /* Slight lift effect */
    color: #000000;
}

.contact-infoo {
    text-align: left;
    gap: 1rem !important;
}

.footer-heading1 {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 32px;
    text-align: left;
}

.quick-links a {

    text-align: left;
    color: #fff;
    text-decoration: none;
    display: block;
}

.quick-links a:hover {
    color: #FFD700;
}

.logo img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.law-firm-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}


@media (max-width: 480px) {
    .footer {
        padding: 20px 10px; /* Reduce padding for smaller screens */

    }

    .footer-heading,
    .footer-heading1 {
        font-size: 24px; /* Smaller font size for headings */
    }

    .custom-input-group {
        max-width: 300px; /* Full width input group */
        padding: 0.5rem;
    }

    .custom-input {
        margin-left: 0;
        width: 100%; /* Input takes full width */
        padding: 0.5rem;
    }

    .btn-subscribe {
        width: 100%; /* Button takes full width */
        margin-left: 0;
        font-size: 14px;
        padding: 0.7rem; /* Adjust padding */

    }

    .contact-infoo {
         /* Center-align text */
        gap: 0.5rem; /* Adjust gap for smaller space */
    }

    .quick-links a {
        font-size: 14px; /* Smaller font size for links */
    }

    .logo img {
        width: 60px; /* Reduce logo size */
        margin-bottom: 5px;
    }

    .law-firm-name {
        font-size: 1rem; /* Smaller font for the name */
        margin-bottom: 10px;
    }
}
/* @media (min-width: 481px) and (max-width: 520px){
    .custom-input-group {
        max-width: 22rem !important;

    }
    .btn-subscribe {
        width: 20rem !important;
        margin-left: 1rem;

    }

} */
@media (min-width: 481px) and (max-width: 768px) {
    .footer {
        padding: 20px 4rem; /* Reduce padding for medium screens */
        /* Maintain center alignment for smaller layouts */
    }

    .footer-heading, .footer-heading1 {
        font-size: 24px; /* Scale down the heading font size */
        /* Center align the headings */
    }

    /* .custom-input-group {
        max-width: 22rem;
        padding: 0.5rem;
    } */



    /* .custom-input {
        flex-direction: column;
        margin-left: 0;
        padding: 5px;
    } */


    .contact-infoo {
        gap: 0.5rem; /* Adjust spacing between contact info items */
       /* Center align contact information */
    }


    .logo img {
        width: 60px; /* Scale down logo size */
        margin-bottom: 5px; /* Adjust bottom margin */
    }

    .law-firm-name {
        font-size: 1rem; /* Adjust font size */
        margin-bottom: 10px; /* Adjust spacing below the name */
    }
}

