:root {
    --primary: #0B2E6B;
    /* --secondary: #D4A017; */
    --secondary: #FE6C19;
    --dark: #1b1b1b;
}

body {
    font-family: 'Poppins', sans-serif;
}


/* TOP BAR */


.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 14px;
}

.top-info {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-info li a,
.top-right a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-info li a:hover,
.top-right a:hover {
    color: var(--secondary);
}

.top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.top-right span {
    margin-right: 12px;
}

@media (max-width:991px) {
    .top-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .top-right span {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

@media (max-width: 991.98px) {

    .top-info {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .top-info li {
        font-size: 14px;
    }

}


/* Navbar */
.navbar {
    padding: 0px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand img {
    height: 70px;
}

/* Center Menu */
.navbar-nav {
    margin: 0 auto;
    gap: 10px;
    align-items: center;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937 !important;
    padding: 12px 18px !important;
    transition: .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0B2E6B !important;
}

/* Right Button */
.consultation-btn {
    padding: 12px 26px;
    border-radius: 50px;
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.consultation-btn:hover {
    background: #0B2E6B;
    color: #fff;
}

/* Desktop Layout */
@media(min-width:1200px) {

    .offcanvas {
        position: static;
        visibility: visible !important;
        transform: none !important;
        border: 0;
        background: none;
        width: auto;
    }

    .offcanvas-body {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0;
    }

}

/* Mobile */
@media (max-width:1199px) {

    .offcanvas {
        width: 320px;
        transition: transform .35s ease-in-out;
    }

    .offcanvas-header {
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .offcanvas-body {
        padding: 20px;
    }

    /* Left Align Menu */
    .navbar-nav {
        margin: 0;
        gap: 0;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 20px;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 14px 0 !important;
        border-bottom: 1px solid #f1f1f1;
        font-size: 15px;
    }

    .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border: none;
        padding: 0 0 0 15px;
        margin-top: 5px;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .consultation-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
        border-radius: 8px;
    }

}


/* Desktop Hover Dropdown */
@media (min-width: 992px) {

    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all .3s ease;
        margin-top: 0;
        border: none;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    }
}




/* Navbar Menu Hover */
.navbar-nav .nav-link {
    transition: all .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

/* Dropdown Item Hover */
.dropdown-item {
    transition: all .3s ease;
}

.dropdown-item:hover {
    background: #F5F8FD;
    color: var(--secondary);
    padding-left: 28px;
}






.footer {
    background: #071B3A;
    color: #fff;
    padding: 50px 0 15px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo h2 {
    display: flex;
    justify-content: center;
}

/* .footer-logo img {
    height: 60px;
    margin-bottom: 20px;
} */

.footer-text {
    color: #c9d3e1;
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer h5::after {
    content: "";
    width: 45px;
    height: 3px;
    background: var(--secondary);
    position: absolute;
    left: 0;
    bottom: -10px;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 14px;
}

.footer ul li a {

    color: #d8dee8;
    text-decoration: none;
    transition: .3s;
}

.footer ul li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-contact a,
.footer-contact p {
    display: block;
    margin-bottom: 15px;
    color: #d8dee8;
    text-decoration: none;
}

.footer-contact i {
    width: 22px;
    color: var(--secondary);
}

.footer-subscribe {

    display: flex;
    overflow: hidden;
    border-radius: 8px;
    margin: 20px 0;

}

.footer-subscribe input {

    width: 100%;
    border: none;
    padding: 14px;

}

.footer-subscribe input:focus {

    outline: none;

}

.footer-subscribe button {

    width: 60px;
    border: none;
    background: var(--secondary);
    color: #fff;

}

.footer-social {

    display: flex;
    gap: 12px;

}

.footer-social a {
    text-decoration: none;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: #fff;
    transition: .3s;

}

.footer-social a:hover {

    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-4px);

}


.footer hr {
    border: 0;
    border-top: 1px solid #8a8989;
    margin: 15px 0;
    opacity: 1;
}

.footer-bottom {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;

}

.footer-bottom a {

    color: #d8dee8;
    text-decoration: none;

}

.footer-bottom a:hover {

    color: var(--secondary);

}

@media(max-width:991px) {

    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
    }

}




/* Footer Links */
.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8dee8;
    text-decoration: none;
    transition: all .3s ease;
}

.footer ul li a i {
    font-size: 12px;
    color: var(--secondary);
    transition: all .3s ease;
}

.footer ul li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer ul li a:hover i {
    transform: translateX(4px);
}



.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #d8dee8;
    text-decoration: none;
    transition: .3s;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

.footer-bottom-links span {
    color: #d8dee8;
}



@media (max-width: 991.98px) {

    /* Footer Heading */
    .footer {
        text-align: left;
    }

    .footer h5 {
        text-align: left;
    }

    .footer h5::after {
        left: 0;
        transform: none;
    }

    /* Footer Links */
    .footer ul li a {
        justify-content: flex-start;
        text-align: left;
    }

    /* Contact */
    .footer-contact {
        text-align: left;
    }

    .footer-contact a,
    .footer-contact p {
        justify-content: flex-start;
        text-align: left;
    }

    /* Social Icons */
    .footer-social {
        justify-content: flex-start;
    }

    /* Bottom Footer */
    .footer-bottom {
        justify-content: flex-start;
        text-align: left;
    }
}





















.hero-section {
    padding: 35px 0 0 25px;
    background: linear-gradient(135deg, #F7F9FD, #ffffff);
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EEF4FF;
    color: #0B2E6B;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-section h1 {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    color: #0B2E6B;
    margin-bottom: 10px;
}

.hero-section h1 span {
    color: var(--secondary);
}

.hero-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.hero-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.hero-list div {
    font-weight: 600;
}

.hero-list i {
    color: #2BA84A;
    margin-right: 8px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary-custom {
    background: #0B2E6B;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: var(--secondary);
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid #0B2E6B;
    color: #0B2E6B;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: #0B2E6B;
    color: #fff;
}

.hero-counter {
    display: flex;
    gap: 40px;
}

.hero-counter h4 {
    color: #0B2E6B;
    font-size: 32px;
    margin-bottom: 5px;
}

.hero-counter span {
    color: #666;
}

@media(max-width:991px) {

    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-list {
        grid-template-columns: 1fr;
    }

    .hero-counter {
        gap: 20px;
        justify-content: space-between;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

}




.hero-img {
    height: 430px;
    max-width: 100%;
    border-radius: 24px;
    border: 8px solid #fff;
    box-shadow: 0 20px 60px rgba(11, 46, 107, .15);
    transition: all .4s ease;
}

.hero-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(11, 46, 107, .25);
}

@media (max-width:991px) {
    .hero-img {
        border-radius: 18px;
        margin-top: 30px;
    }
}

@media (max-width:768px) {
    .hero-img {
        height: 350px;
    }
}









.services-section {
    background: #f8fbff;
}

.section-title {
    max-width: 780px;
    margin: auto;
    margin-bottom: 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 50px;
    color: #0B2E6B;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 35px;
    font-weight: 700;
    color: #0B2E6B;
}

.section-title h2 span {
    color: var(--secondary);
}

.section-title p {
    color: #666;
    margin-top: 12px;
    line-height: 1.8;
}

.service-card {

    background: #fff;
    border-radius: 18px;
    padding: 15px 15px;
    border: 1px solid #edf2f7;
    transition: .35s;
    height: 100%;
    position: relative;
    overflow: hidden;

}

.service-card::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: .35s;

}

.service-card:hover::before {

    transform: scaleX(1);

}

.service-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(11, 46, 107, .12);

}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #EEF4FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B2E6B;
    font-size: 28px;
    margin-bottom: 10px;
    transition: .35s;
}

.service-card:hover .service-icon {

    background: #0B2E6B;
    color: #fff;

}

.service-card h4 {

    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0B2E6B;

}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card a {

    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;

}

.service-card a i {

    margin-left: 6px;
    transition: .3s;

}

.service-card:hover a i {

    margin-left: 12px;

}

@media(max-width:991px) {

    .section-title h2 {
        font-size: 30px;
    }

    .service-card {
        padding: 28px 22px;
    }

}















.why-choose {
    background: #fff;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(11, 46, 107, .12);
}

@media (max-width:768px) {
    .why-image img {
        height: 350px;
    }
}

.experience-box {
    position: absolute;
    right: 25px;
    bottom: 25px;
    background: #0B2E6B;
    color: #fff;
    padding: 22px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(11, 46, 107, .25);
}

.experience-box h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: var(--secondary);
}

.experience-box span {
    font-size: 14px;
}

.why-desc {
    color: #666;
    line-height: 1.8;
    margin: 20px 0 30px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 12px 22px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    transition: .35s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(11, 46, 107, .10);
}

.why-card i {
    width: 60px;
    height: 60px;
    background: #EEF4FF;
    color: #0B2E6B;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: .35s;
}

.why-card:hover i {
    background: #0B2E6B;
    color: #fff;
}

.why-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0B2E6B;
}

.why-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

@media(max-width:991px) {

    .why-choose {
        padding: 70px 0;
    }

    .experience-box {
        position: static;
        margin-top: 20px;
        width: 220px;
    }

}














.modal-content {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

.modal-left {
    height: 100%;
    background: linear-gradient(135deg, #0B2E6B, #123F87);
    color: #fff;
    padding: 20px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-badge {

    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    width: max-content;

}

.modal-left h3 {

    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;

}

.modal-left p {

    color: #d9e3f2;
    line-height: 1.8;

}

.modal-features {

    list-style: none;
    padding: 0;
    margin-top: 15px;

}

.modal-features li {
    margin-bottom: 15px;
    font-weight: 500;
}

.modal-features i {
    color: var(--secondary);
    margin-right: 10px;
}

.modal-form {
    padding: 35px 45px;
}

.modal-form h4 {
    font-weight: 700;
    color: #0B2E6B;
}

.modal-form p {
    color: #666;
    margin-bottom: 25px;
}

.form-control,
.form-select {
    height: 45px;
    border-radius: 12px;
    border: 1px solid #dbe4ef;
    box-shadow: none;
}

textarea.form-control {

    height: auto;
    resize: none;

}

.form-control:focus,
.form-select:focus {

    border-color: #0B2E6B;
    box-shadow: 0 0 0 .2rem rgba(11, 46, 107, .12);

}

.modal-btn {

    height: 55px;
    border-radius: 12px;
    background: var(--secondary);
    color: #fff;
    font-weight: 600;

}

.modal-btn:hover {

    background: #0B2E6B;
    color: #fff;

}


/* Animation */

.modal.fade .modal-dialog {

    transform: scale(.9);
    transition: .35s;

}

.modal.show .modal-dialog {

    transform: scale(1);

}

.modal-backdrop.show {

    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, .45);

}

/* Mobile */

@media(max-width:991px) {

    .modal-form {

        padding: 25px;

    }

    .modal-dialog {

        margin: 15px;

    }

    .modal-left {

        display: none !important;

    }

}



.custom-close {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #0B2E6B;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    transition: .3s;
    z-index: 100;
}

.custom-close i {
    font-size: 18px;
}

.custom-close:hover {
    background: var(--secondary);
    color: #fff;
    transform: rotate(90deg);
}

















.how-work-section {
    background: #f8fbff;
}

.process-list {
    position: relative;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 12px;
    position: relative;
}

.process-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 58px;
    width: 2px;
    height: 55px;
    background: #d8e3f3;
}

.process-no {
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0B2E6B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: .35s;
    z-index: 2;
}

.process-item:hover .process-no {
    background: var(--secondary);
    transform: scale(1.1);
}

.process-content {
    background: #fff;
    border-radius: 15px;
    padding: 14px 20px;
    flex: 1;
    border: 1px solid #edf2f7;
    transition: .35s;
}

.process-content:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(11, 46, 107, .08);
}

.process-content h5 {
    color: #0B2E6B;
    font-weight: 700;
    margin-bottom: 4px;
}

.process-content p {
    font-size: 14px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.process-img {
    height: 420px;
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(11, 46, 107, .15);
}

@media (max-width:768px) {
    .process-img {
        height: 350px;
        max-width: 100%;

    }
}

@media(max-width:991px) {

    .process-img {
        margin-top: 30px;
    }

    .process-content:hover {
        transform: none;
    }

}






/*=========================
    COUNTER SECTION
=========================*/

.counter-section {
    background: #0B2E70;
    position: relative;
}

.counter-card {
    position: relative;
    text-align: center;
    padding: 20px 20px;
    height: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s ease;
    overflow: hidden;
}

/* Top Accent Line */

.counter-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--secondary);
    transform: translateX(-50%);
    transition: .35s;
}

.counter-card:hover::before {
    width: 100%;
}

.counter-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.counter-card h3 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.counter-card p {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .3px;
}

/* Divider */

@media(min-width:992px) {

    .col-lg-3:not(:last-child) .counter-card {
        border-right: 1px solid rgba(255, 255, 255, .10);
    }

}

@media(max-width:991px) {

    .counter-card {
        padding: 30px 20px;
    }

    .counter-card h3 {
        font-size: 34px;
    }

}



/*=====================================
      INDUSTRY LIST STYLE
======================================*/

.industry-section {
    background: #F8FBFF;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #e9eef7;
    border-radius: 16px;
    padding: 10px 20px;
    transition: .35s;
}

.industry-item:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(11, 46, 107, .08);
}

.industry-icon {
    padding: 15px 15px;
    border-radius: 16px;
    background: #EEF4FF;
    color: #0B2E6B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: .35s;
}

.industry-item:hover .industry-icon {
    background: #0B2E6B;
    color: #fff;
}

.industry-content {
    flex: 1;
}

.industry-content h5 {
    color: #0B2E6B;
    font-weight: 700;
    margin-bottom: 4px;
}

.industry-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.industry-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #F5F7FB;
    color: #0B2E6B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.industry-item:hover .industry-arrow {
    background: var(--secondary);
    color: #fff;
    transform: translateX(5px);
}

@media(max-width:767px) {

    .industry-item {
        flex-direction: column;
        text-align: center;
    }

    .industry-arrow {
        display: none;
    }

}


/*=====================================
        TESTIMONIAL
======================================*/

.testimonial-section {
    background: #F8FBFF;
}

.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #edf2f7;
    transition: .35s;
    height: 100%;
    overflow: hidden;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--secondary);
    transition: .35s ease;
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(11, 46, 107, .10);
}

.quote-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #EEF4FF;
    color: #0B2E6B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: .35s;
}

.testimonial-card:hover .quote-icon {
    background: #0B2E6B;
    color: #fff;
}


.testimonial-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    /* font-style: italic; */
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #edf2f7;
    padding-top: 10px;
}


.client-info h5 {
    margin: 0;
    color: #0B2E6B;
    font-size: 18px;
    font-weight: 700;
}

.client-info span {
    color: var(--secondary);
    font-size: 14px;
}

@media(max-width:991px) {

    .testimonial-card {
        padding: 28px;
    }

}



.testimonialSwiper {
    padding: 10px 5px 60px;
}

.swiper-slide {
    height: auto;
}

.testimonial-card {
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0B2E70;
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: var(--secondary);
}











/* FAQ Section */

.faq-section {
    background: #f8f9fc;
}

.premium-faq .accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.premium-faq .accordion-button {
    background: #fff;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    padding: 20px 24px;
    box-shadow: none;
}

.premium-faq .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

.premium-faq .accordion-button::after {
    filter: grayscale(100%);
}

.premium-faq .accordion-body {
    background: #fff;
    color: #666;
    line-height: 1.8;
    padding: 22px 24px;
}

/* Form */

.faq-form {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: sticky;
    top: 110px;
}

.form-title h3 {
    color: var(--primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-title p {
    color: #666;
    margin-bottom: 25px;
}

.faq-form .form-control,
.faq-form .form-select {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    box-shadow: none;
}

.faq-form textarea.form-control {
    height: auto;
    resize: none;
}

.faq-form .form-control:focus,
.faq-form .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 .2rem rgba(212, 160, 23, .15);
}

.faq-btn {
    background: var(--secondary);
    color: #fff;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

.faq-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

@media(max-width:991px) {

    .faq-form {
        position: static;
        margin-top: 20px;
        padding: 25px;
    }

    .form-title h3 {
        font-size: 24px;
    }

}












/* Blog Section */

.blog-section {
    background: #f8f9fc;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

/* .blog-card:hover {
    transform: translateY(-10px);
} */

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--secondary);
    color: #fff;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.blog-overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(11, 46, 107, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transition: .4s;
}

.blog-card:hover .blog-overlay-btn {
    opacity: 1;
}

.blog-content {
    padding: 15px;
}

.blog-meta {
    margin-bottom: 8px;
    color: #777;
    font-size: 14px;
}

.blog-meta i {
    color: var(--secondary);
    margin-right: 6px;
}

.blog-content h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 5px;
}

.blog-content h4 a {
    color: var(--primary);
    text-decoration: none;
    transition: .3s;
}

.blog-content h4 a:hover {
    color: var(--secondary);
}

.blog-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(79, 75, 75);
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.blog-btn:hover {
    letter-spacing: 0.5px;
    color: var(--secondary);
}

.blogSwiper {
    padding-bottom: 55px;
}

.blogSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.blogSwiper .swiper-pagination-bullet-active {
    background: var(--secondary);
}


.blog-content h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    min-height: calc(1.6em * 2);
}









/* ===========================
      Premium Contact CTA
=========================== */

.contact-cta {
    padding: 30px 0;
    background: #f8f9fc;
}

.cta-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), #17438f);
    border-radius: 25px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(11, 46, 107, .18);
}

/* Background Circle */

.cta-wrapper::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -120px;
    right: -80px;
}

.cta-wrapper::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(212, 160, 23, .12);
    bottom: -100px;
    left: -70px;
}

.cta-content,
.cta-action {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.cta-content h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: var(--secondary);
}

.cta-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 1.9;
    max-width: 720px;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 50px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.cta-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-4px);
}

.cta-call {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
    text-decoration: none;
    color: #fff;
    transition: .35s;
}

.cta-call:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.cta-call i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.cta-call small {
    display: block;
    color: #ddd;
    margin-bottom: 4px;
}

.cta-call strong {
    font-size: 20px;
    color: #fff;
}

/* Responsive */

@media(max-width:991px) {

    .cta-wrapper {
        padding: 40px 30px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-action {
        align-items: center;
        margin-top: 35px;

    }

}

@media(max-width:576px) {

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-call {
        width: 100%;
        justify-content: center;
    }

    .cta-btn {
        width: 100%;
    }
}







/*==========================
      About Section
==========================*/

.about-section {
    background: #fff;
    overflow: hidden;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .10);
}

.experience-box {
    position: absolute;
    right: -20px;
    bottom: 35px;
    background: var(--primary);
    color: #fff;
    width: 180px;
    height: 130px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(11, 46, 107, .30);
    border: 5px solid #fff;
}

.experience-box h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1px;
}

.experience-box span {
    font-size: 16px;
    line-height: 1.5;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.about-content h2 span {
    color: var(--secondary);
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transition: .35s;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-6px);
}

.about-feature .icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(212, 160, 23, .12);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    font-size: 24px;
    flex-shrink: 0;
}

.about-feature h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.about-feature p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 34px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

.about-btn:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */

@media(max-width:991px) {

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .experience-box {
        width: 140px;
        height: 140px;
        right: 15px;
        bottom: 15px;
    }

    .experience-box h3 {
        font-size: 36px;
    }
}

@media(max-width:576px) {

    .about-content h2 {
        font-size: 28px;
    }

    .about-feature {
        padding: 18px;
    }

    .experience-box {
        width: 120px;
        height: 120px;
    }
}



.view-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s ease;
}

.view-blog-btn:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}




/* ==========================
   Scroll To Top Button
========================== */

#scrollTopBtn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(212, 160, 23, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .35s ease;
    z-index: 9999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    background: #255192;
    transform: translateY(-4px);
}

#scrollTopBtn i {
    transition: .3s;
}

#scrollTopBtn:hover i {
    transform: translateY(-2px);
}

@media(max-width:768px) {
    #scrollTopBtn {
        width: 45px;
        height: 45px;
        right: 18px;
        bottom: 18px;
        font-size: 16px;
    }
}











.footer-logo img {
    width: 220px;
    height: auto;
    display: block;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.footer-logo h2 span {
    font-size: 36px;
    color: var(--secondary);
}

.footer-logo:hover h2 {
    color: var(--secondary);
}

.footer-logo:hover h2 span {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-logo h2 {
        font-size: 28px;
    }
}



.tax-expert-section {
    background: #f7f8fc;
}

.expert-card {
    background: #fff;
    border-radius: 30px;
    padding: 30px 60px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
    overflow: hidden;
    position: relative;
}

.expert-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: #fff4ee;
    border-radius: 50%;
}


@media(max-width:768px) {
    .expert-card::before {
        display: none;
    }
}

.expert-badge {
    display: inline-block;
    background: #FF620A;
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.expert-title {
    font-size: 35px;
    font-weight: 700;
    color: #1c2b7c;
    margin-bottom: 10px;
}

.expert-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #F26122;
    margin-bottom: 5px;
}

.expert-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}





.expert-image-wrapper {
    display: flex;
    justify-content: center;
}

.expert-image-ring {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Outer Light Circle */
.expert-image-ring::before {
    content: "";
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    background: #e8f8f3;
    z-index: -2;
}

.expert-image-ring::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 8px;
    background: conic-gradient(#4d63ff, #39d2a2, #F26122, #4d63ff);
    animation: rotateBorder 4s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* White Circle */
.expert-image-ring img {
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    padding: 7px;
    position: relative;
    z-index: 2;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media(max-width:991px) {
    .expert-card {
        padding: 35px;
        text-align: center;
    }
    .expert-title {
        font-size: 34px;
    }
    .expert-tags {
        justify-content: center;
    }
    .expert-image-ring {
        width: 250px;
        height: 250px;
        margin-top: 40px;
    }
}