
body {
    font-family: 'Poppins', sans-serif;
}

/*=========================
Google Font
=========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/*=========================
Top Header
=========================*/

.top-header {
    background: #f4f4f4;
    padding: 12px 0;
    border-bottom: 2px dashed #ddd;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.top-info i {
    width: 40px;
    height: 40px;
    background: #2b3472;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.top-info span {
    color: #0037d6;
    font-weight: 700;
}

.top-info a {
    color: #5a6286;
    text-decoration: none;
}

.top-info a:hover {
    color: #0037d6;
}

/*=========================
Navbar
=========================*/

.main-header {
    background: #fff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 4px solid #243b8f;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.navbar-brand img {
    max-height: 120px;
}

.navbar-nav {
    gap: 18px;
}

.navbar-nav .nav-link {
    color: #2b3472;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
    padding: 10px 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0037ff;
}

/*=========================
Dropdown
=========================*/

.dropdown-menu {
    border: none;
    border-radius: 8px;
    min-width: 260px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.dropdown-item {
    padding: 10px 18px;
    font-size: 15px;
    color: #222;
    transition: .3s;
}

.dropdown-item:hover {
    background: #0037ff;
    color: #fff;
}


/*=========================
Nested Dropdown
=========================*/

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    display: none;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* Arrow */

.dropdown-submenu>.dropdown-toggle::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
}

/* Navbar + icon */

.navbar .dropdown-toggle::after {
    border: 0;
    content: "+";
    font-size: 20px;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

/*=========================
Navbar Toggler
=========================*/

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/*=========================
Responsive
=========================*/

@media(max-width:991px) {

    .top-header {
        text-align: center;
    }

    .top-info {
        justify-content: center;
        margin: 8px 0;
    }

    .navbar-brand img {
        max-height: 80px;
    }

    .navbar-nav {
        gap: 0;
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-left: 15px;
    }

    .dropdown-submenu>.dropdown-menu {
        margin-left: 15px;

        /* margin-left: -100px; */
            /* margin-top: 40px; */
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: none;
    }

    /* .dropdown-menu.show {
        display: block;
    } */

}


/* Mobile */

@media (max-width:991px) {

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none;
        box-shadow: none;
        background: #f8f9fa;
        padding-left: 15px;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-submenu>.dropdown-menu {
        margin-left: 15px;
        background: #fff;
        display: none;
    }

    .dropdown-submenu>.dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 10px 15px;
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

}

@media (max-width:991.98px) {

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        float: none;
        width: 100%;
        border: none;
        box-shadow: none;
        background: #f8f9fa;
        padding: 0;
        margin: 0;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    /* Nested submenu opens BELOW parent */
    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
        position: static !important;
        display: none;
        margin: 0;
        padding-left: 20px;
        background: #fff;
        border-left: 3px solid #0d6efd;
    }

    .dropdown-submenu>.dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 12px 18px;
    }

    .dropdown-toggle::after {
        float: right;
    }
}


/* =========================slider css=================================== */

.slide-bg {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 650px;
}

.left {
    left: 8%;
    text-align: left;
}

.right {
    right: 8%;
    text-align: right;
}

.caption h4 {
    color: #0043CC;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.caption h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}


@media(max-width:768px) {
    .slide-bg {
        height: 300px;
    }

    .caption {
        left: 20px !important;
        right: 20px !important;
        text-align: center !important;
    }

    .caption h3 {
        font-size: 30px;
    }

    .caption h4 {
        font-size: 22px;
    }
}




.cancer-section {
    padding: 50px 0px;
    background: #eef5fa;
    max-width: 1400px;
}

.service-content {
    background: #0d47ff;
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    height: 100%;
}

.service-content h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
}

.read-btn {
    display: inline-block;
    margin-top: 30px;
    background: #252f6f;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.cancer-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.card-top {
    background: #0d47ff;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    min-height: 180px;
}

.card-top h4 {
    /* font-size: 28px; */
    font-weight: 600;
}

.card-body {
    text-align: center;
    padding: 30px;
}

.card-body img {
    width: 90px;
    margin-top: -70px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
}

.card-body a {
    display: inline-block;
    margin-top: 25px;
    background: #252f6f;
    color: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
}

/* Card Hover */
.cancer-card {
    transition: all 0.4s ease;
}

.cancer-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Icon Animation */
.card-body img {
    transition: all 0.4s ease;
}

.cancer-card:hover img {
    transform: scale(1.15) rotate(5deg);
}

/* Button Hover */
.card-body a,
.read-btn {
    transition: all 0.4s ease;
}

.card-body a:hover,
.read-btn:hover {
    background: #0d47ff;
    color: #fff;
    transform: scale(1.05);
}

/* Left Content Box Hover */
.service-content {
    transition: all 0.4s ease;
}

.service-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 71, 255, .25);
}



.doctor-section {
    padding: 40px 0;
    max-width: 1400px;
}

.left-box {
    background: #fff;
    padding: 30px;
    height: 100%;
}

.left-box h1 {
    font-size: 50px;
    font-weight: 700;
    color: #2b336d;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.left-box h4 {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 700;
    margin-bottom: 30px;
}

.left-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #222;
}

.highlight {
    color: #1d4fff;
    font-weight: 700;
}

.read-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: #123466;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    transition: .3s;
}

.read-btn:hover {
    background: #0c39db;
    color: #fff;
}

.read-btn span {
    width: 38px;
    height: 38px;
    background: #fff;
    color: #1d4fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    font-size: 18px;
}

.image-box {
    height: 90%;
    margin-right: 10px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-box {
    background: #123466;
    color: #fff;
    padding: 30px;
    /* height: 100%; */
}

.right-box h5 {
    color: #1f63ff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.right-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
}

.right-box ul {
    padding-left: 28px;
}

.right-box li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Responsive */

@media(max-width:991px) {

    .left-box {
        padding: 30px;
    }

    .left-box h1 {
        font-size: 42px;
    }

    .left-box h4 {
        font-size: 18px;
    }

    .left-box p {
        font-size: 17px;
    }

    .image-box {
        height: 500px;
    }

    .right-box {
        padding: 30px;
    }

    .right-box h2 {
        font-size: 40px;
    }

    .right-box li {
        font-size: 17px;
    }

}


.doctor-section {

    padding: 80px 0;

    background: #f7fbff;

    background-image: url("../");

    background-repeat: repeat;

    background-size: 180px;

}

/*=========================
Image
==========================*/

.doctor-img {

    overflow: hidden;

}

.doctor-img img {

    width: 100%;

    display: block;

}

/* Doctor Section */

.doctor-profile-area {
    padding: 50px 0;
    background: #f8fbff url("../img/waves.png") repeat;
    background-size: 5px;
}

/* Image */

.doctor-profile-image {
    overflow: hidden;
}

.doctor-profile-image img {
    width: 100%;
    display: block;
}

/* Content */

.doctor-profile-content {
    padding-left: 40px;
}

.doctor-subtitle {
    display: block;
    color: #0d4eff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.doctor-title {
    color: #2f376f;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.doctor-designation {
    color: #36406e;
    font-size: 24px;
    margin-bottom: 25px;
}

.doctor-qualification h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.doctor-description {
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
}

.doctor-description span {
    color: #0d4eff;
    font-weight: 700;
}

/* Button */

.doctor-readmore-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 35px;
    padding: 18px 40px;
    border-radius: 50px;
    background: #123466;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: .3s;
}

.doctor-readmore-btn:hover {
    background: #002ec9;
    color: #fff;
}

.doctor-readmore-btn span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #0d4eff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

/* Responsive */

@media (max-width:991px) {

    .doctor-profile-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .doctor-title {
        font-size: 45px;
    }

    .doctor-designation {
        font-size: 24px;
    }

}

@media (max-width:576px) {

    .doctor-profile-area {
        padding: 50px 0;
    }

    .doctor-title {
        font-size: 34px;
    }

    .doctor-designation {
        font-size: 20px;
    }

    .doctor-description {
        font-size: 17px;
    }

}

.service-section {
    padding: 80px 0;
    background: #fff;
}

.service-title span {
    color: #0d4eff;
    font-size: 22px;
    font-weight: 700;
}

.service-title h2 {
    font-size: 65px;
    font-weight: 700;
    color: #2f376f;
    margin-bottom: 80px;
}

.service-card {

    background: #cceaf7;
    height: 210px;
    position: relative;
    text-align: center;
    padding: 90px 25px 30px;
    margin-top: 70px;
    transition: .4s;
}

.service-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);

}

.service-icon {

    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #ececec;

    position: absolute;
    left: 50%;
    top: -70px;
    transform: translateX(-50%);

    display: flex;
    justify-content: center;
    align-items: center;

}

.service-icon img {

    width: 65px;

}

.service-card h4 {

    color: #2f376f;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;

}

/* Owl */

.service-slider .owl-stage-outer {

    padding-top: 80px;

}

.owl-theme .owl-dots {

    margin-top: 45px;

}

.owl-theme .owl-dots .owl-dot span {

    width: 14px;
    height: 14px;
    margin: 5px;
}

.owl-theme .owl-dots .owl-dot.active span {

    background: #1b1b1b;

}

.owl-prev,
.owl-next {

    position: absolute;
    top: 45%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    background: #fff !important;

    border-radius: 50% !important;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);

}

.owl-prev {

    left: -70px;

}

.owl-next {

    right: -70px;

}

.owl-prev span,
.owl-next span {

    font-size: 40px;
    line-height: 40px;

}




/*=========================== Carousal home =========================*/

.services-section {
    background: #fff;
}

.service-small-title {
    color: #1c56ff;
    font-size: 18px;
    font-weight: 600;
}

.carousel-item .row {
    padding-top: 80px;
}

.service-main-title {
    font-size: 50px;
    font-weight: 700;
    color: #28356d;
}

.service-box {
    background: #bfe7f3;
    height: 210px;
    position: relative;
    text-align: center;
    padding: 95px 25px 30px;
    overflow: visible;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}

.service-icon {
    width: 140px;
    height: 140px;
    background: #ececec;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -70px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-box h4 {
    font-size: 18px;
    color: #28356d;
    font-weight: 700;
}

.carousel-indicators button {
    width: 10px !important;
    height: 1px !important;
    border-radius: 50%;
    background: #666 !important;
    margin: 0 8px !important;
}

.carousel-indicators .active {
    background: #222 !important;
}

@media(max-width:991px) {

    .service-main-title {
        font-size: 30px;
    }

    .service-box {
        margin-top: 70px;
    }

}

@media(max-width:767px) {

    .service-main-title {
        font-size: 25px;
    }

    .service-box h4 {
        font-size: 20px;
    }

    .service-icon {
        width: 120px;
        height: 120px;
        top: -60px;
    }

    .service-icon img {
        width: 60px;
    }

}

.carousel-item,
.carousel-inner,
.services-section {
    overflow: visible;
}


/*======================== All pages Banner css =======================*/

.page-banner {
    background: #31396b;
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.page-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.breadcrumb a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: #fff;
    font-weight: 500;
}

.banner-line {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 86%;
    height: 5px;
    background: #0d6efd;
    border-radius: 10px;
}

/* Responsive */
@media (max-width:768px) {

    .page-banner {
        padding: 60px 15px;
    }

    .page-banner h1 {
        font-size: 25px;
    }

    .breadcrumb {
        font-size: 15px;
        gap: 10px;
    }

    .banner-line {
        width: 90%;
    }
}

/* About page css pooja  */

.doctor-profile {
    background: #fff;
}

.doctor-title {
    font-size: 50px;
    font-weight: 700;
    color: #2e376f;
    margin-bottom: 15px;
    line-height: 1.2;
}

.doctor-subtitle {
    font-size: 24px;
    color: #2e376f;
    font-weight: 600;
    margin-bottom: 35px;
}

.qualification p {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.doctor-profile p {
    font-size: 17px;
    line-height: 1.9;
    color: #222;
}

.highlight {
    color: #114cff;
    font-weight: 700;
}

.doctor-img {
    width: 100%;
    max-width: 480px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

@media(max-width:991px) {

    .doctor-title {
        font-size: 32px;
    }

    .doctor-subtitle {
        font-size: 20px;
    }

    .qualification p {
        font-size: 16px;
    }

    .doctor-profile p {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .doctor-title {
        font-size: 24px;
    }

    .doctor-subtitle {
        font-size: 20px;
    }

    .qualification p {
        font-size: 16px;
    }

    .doctor-profile p {
        font-size: 16px;
        line-height: 1.8;
    }

}






.faq-section {
    background: #f8f9fa;
}

.faq-section h2 {
    color: #31396B;
    font-size: 42px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.accordion-button {
    font-size: 20px;
    font-weight: 600;
    color: #31396B;
    padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
    background: #31396B;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}


.breast-stage{
    background:#fff;
}

.section-heading{
    background:#0d4b93;
    padding:20px 30px;
    margin-bottom:30px;
}

.section-heading h2{
    color:#fff;
    font-size:36px;
    font-weight:700;
    margin:0;
}

.breast-stage p{
    font-size:18px;
    line-height:1.5;
    color:#222;
    margin-bottom:30px;
}

.breast-stage p a{
    color:#0056ff;
    text-decoration:none;
    font-weight:700;
}

.stage-list{
    margin:30px 0;
    padding-left:40px;
}

.stage-list li{
    font-size:17px;
    line-height:1;
    margin-bottom:10px;
}

@media(max-width:992px){

.section-heading h2{
    font-size:40px;
}

.breast-stage p,
.stage-list li{
    font-size:19px;
}

}

@media(max-width:768px){

.section-heading{
    padding:15px 20px;
}

.section-heading h2{
    font-size:30px;
}

.breast-stage p,
.stage-list li{
    font-size:17px;
    line-height:1.8;
}

.stage-list{
    padding-left:25px;
}

}


/* footer css */

.footer-contact {
    background: #343b6f;
    color: #fff;
}

.footer-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.footer-text {
    color: #d9d9d9;
    font-size: 16px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #3b82f6;
}

.icon {
    width: 42px;
    height: 42px;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    flex-shrink: 0;
}

.map-box,
.facebook-box {
    overflow: hidden;
    border-radius: 5px;
}

.map-box iframe {
    width: 100%;
    height: 300px;
    border: 0;
}


@media(max-width:991px) {

    .footer-title {
        font-size: 30px;
    }

    .footer-text {
        font-size: 16px;
    }

    .map-box iframe,
    .facebook-box iframe {
        height: 350px;
    }

}

@media(max-width:767px) {

    .footer-title {
        font-size: 25px;
    }

    .contact-item {
        font-size: 15px;
    }

    .footer-text {
        font-size: 16px;
    }

}

/* Contact page */

.contact-section {
    background: #fff;
}

.contact-info {
    background: #f3f3f3;
    padding: 40px;
}

.info-item {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.info-item strong {
    color: #000;
    margin-right: 10px;
}

.info-item a {
    color: #0047ff;
    text-decoration: none;
}

.map-box iframe {
    border-radius: 8px;
}

.contact-form-box {
    background: #eef5fb;
    padding: 40px;
    border-radius: 10px;
}

.custom-input {
    height: 58px;
    border: none;
    border-radius: 40px;
    padding: 0 30px;
    font-size: 17px;
    box-shadow: none;
}

.custom-input:focus {
    box-shadow: none;
    border: none;
}

.custom-textarea {
    border: none;
    border-radius: 40px;
    padding: 25px 30px;
    resize: none;
    box-shadow: none;
}

.custom-textarea:focus {
    box-shadow: none;
}

.submit-btn {
    width: 380px;
    max-width: 100%;
    height: 80px;
    background: #0d47ff;
    color: #fff;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    display: block;
    margin: auto;
}

.submit-btn:hover {
    background: #0038d8;
    color: #fff;
}

@media(max-width:991px) {

    .contact-form-box {
        padding: 20px;
    }

    .contact-info {
        padding: 25px;
    }

    .info-item {
        font-size: 17px;
    }

    .submit-btn {
        width: 100%;
        height: 50px;
        font-size: 20px;
    }

}


/* Blog css */

.blog-section h2 {
    text-align: center;
    font-size: 38px;
    color: #0d3b8b;
    margin-bottom: 15px;
}

.blog-section p.heading {
    text-align: center;
    color: #6b7b9b;
    margin-bottom: 60px;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {

    background: linear-gradient(180deg, #ffffff, #eef5ff);
    border-radius: 20px;
    padding: 28px;
    transition: .4s;
    border: 1px solid #000000;
    box-shadow: 0 10px 30px rgba(0, 90, 255, .08);
    margin-bottom: 20px;

}

.blog-card:hover {

    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 90, 255, .18);

}

.category {

    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    background: #0d6efd;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;

}

.blog-card h3 {

    font-size: 24px;
    line-height: 1.4;
    color: #17346c;
    margin-bottom: 18px;

}

.blog-card p {

    color: #67778f;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;  

}

.meta {

    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #6d7d97;
    margin-bottom: 25px;

}

.meta span {

    display: flex;
    align-items: center;
    gap: 6px;

}

.meta i {

    color: #0d6efd;

}

.read-more {

    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #0d6efd;
    color: #fff;
    padding: 12px 22px;
    border-radius: 40px;
    transition: .3s;
    font-weight: 600;

}

.read-more:hover {

    background: #004cc7;
    gap: 15px;

}

@media(max-width:1200px) {

    .blog-container {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .blog-container {

        grid-template-columns: 1fr;

    }

    .blog-card h3 {

        font-size: 22px;

    }

}

.testimonial-section {
    background: url("../img/testimonials_25_percent.jpg") center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(8, 18, 50, .75); */
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

.sub-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-section h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.testimonial-content {
    padding: 50px 35px;
    min-height: 320px;
    text-align: center;
    background: #f8fbfd;
}

.quote-icon {
    color: #0d6efd;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5b6185;
    font-style: italic;
}

.testimonial-name {
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #28356b;
    background: #fff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #8cb0e5;
    border-radius: 50%;
    padding: 18px;
}

@media(max-width:991px) {

    .testimonial-section h2 {
        font-size: 30px;
    }

    .testimonial-content {
        min-height: auto;
        padding: 40px 25px;
    }

    .testimonial-content p {
        font-size: 18px;
    }

    .testimonial-name {
        font-size: 28px;
    }
}


.cta-section {
    background: #1542ff;
    padding: 50px 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.cta-form {
    display: flex;
    background: #fff;
    border-radius: 70px;
    overflow: hidden;
    max-width: 760px;
    margin-left: auto;
}

.cta-form input {
    flex: 1;
    border: none;
    padding: 28px 35px;
    font-size: 18px;
    outline: none;
    color: #666;
}

.cta-form input::placeholder {
    color: #888;
}

.cta-form button {
    border: none;
    background: #343a68;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 0 45px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .3s;
}

.cta-form button:hover {
    background: #1d234d;
}

.cta-form button span {
    width: 42px;
    height: 42px;
    background: #fff;
    color: #343a68;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

@media(max-width:991px) {

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 30px;
        text-align: center;
    }

    .cta-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .cta-form input {
        padding: 20px;
        font-size: 18px;
    }

    .cta-form button {
        justify-content: center;
        padding: 18px;
        font-size: 18px;
    }
}

.single-testimonial {
    background: #fff;
}

.testimonial-box {
    background: #f8fcff;
    padding: 80px 80px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* Pattern Background */
.testimonial-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/waves.png") repeat;
    opacity: .08;
    pointer-events: none;
}

.quote-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.quote-icon i {
    color: #0d4cff;
    font-size: 55px;
}

.testimonial-box p {
    position: relative;
    z-index: 2;
    color: #4d5888;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    font-family: Georgia, serif;
    max-width: 1200px;
    margin: auto;
}

.testimonial-author {
    text-align: center;
    margin-top: 45px;
}

.testimonial-author h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3a73;
    margin-bottom: 8px;
}

.testimonial-author span {
    font-size: 17px;
    color: #0d4cff;
    font-weight: 600;
}

/* Responsive */

@media(max-width:991px) {

    .testimonial-box {
        padding: 50px 30px;
    }

    .testimonial-box p {
        font-size: 20px;
    }

    .testimonial-author h3 {
        font-size: 24px;
    }

    .testimonial-author span {
        font-size: 17px;
    }

    .quote-icon i {
        font-size: 40px;
    }

}



                .layout-wrapper {
                    max-width: 1200px;
                    margin: 0 auto;
                    background: #ffffff;
                    padding: 40px;
                    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                    border-radius: 8px;
                    display: grid;
                    grid-template-columns: 2fr 1fr;
                    gap: 40px;
                }
        
                @media (max-width: 900px) {
                    .layout-wrapper {
                        grid-template-columns: 1fr;
                    }
                }
        
                /* Meta Badges Section */
                .info-bar {
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    gap: 15px;
                    margin-bottom: 25px;
                    padding-bottom: 15px;
                    border-bottom: 1px solid var(--border-light);
                    font-size: 0.9rem;
                    color: var(--text-muted);
                }
        
                .pill-button {
                    background-color: var(--primary-blue);
                    color: white;
                    padding: 6px 16px;
                    border-radius: 20px;
                    font-weight: bold;
                    text-transform: lowercase;
                    font-size: 0.85rem;
                }
        
                .meta-detail {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                }
        
                /* Main Content Styling */
                .article-body h2 {
                    color: #111;
                    font-size: 1.4rem;
                    margin-top: 35px;
                    margin-bottom: 15px;
                    font-weight: 700;
                }
        
                .article-body p {
                    margin-bottom: 20px;
                    text-align: justify;
                }
        
                .custom-link {
                    color: var(--link-blue);
                    font-weight: 600;
                    text-decoration: none;
                }
        
                .custom-link:hover {
                    text-decoration: underline;
                }
        
                /* Illustration Box Placeholder */
                .gfx-box {
                    margin: 25px 0;
                    padding: 20px;
                    background-color: #fff9f9;
                    border: 1px dashed #ffccd5;
                    border-radius: 8px;
                    text-align: center;
                }
        
                .gfx-box svg {
                    max-width: 100%;
                    height: auto;
                }
        
                /* Sidebar Styling */
                .side-panel {
                    background-color: var(--secondary-blue);
                    padding: 30px 25px;
                    border-radius: 8px;
                    height: fit-content;
                }
        
                .panel-heading {
                    color: var(--primary-blue);
                    font-size: 1.3rem;
                    margin-top: 0;
                    margin-bottom: 15px;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-weight: 700;
                    border-bottom: 1px dashed var(--border-light);
                    padding-bottom: 15px;
                }
        
                .nav-list {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }
        
                .nav-list li {
                    margin-bottom: 18px;
                }
        
                .nav-item {
                    color: #1e3a8a;
                    text-decoration: none;
                    font-size: 0.95rem;
                    font-weight: 600;
                    display: flex;
                    align-items: flex-start;
                    gap: 10px;
                    line-height: 1.4;
                }
        
                .nav-item:hover {
                    color: var(--primary-blue);
                }
        
                .nav-item span {
                    color: var(--primary-blue);
                }
        
                /* Tags Section at the bottom */
                .footer-keywords {
                    grid-column: 1 / -1;
                    margin-top: 30px;
                    padding-top: 20px;
                    border-top: 1px dashed var(--border-light);
                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;
                }
        
                .keyword-pill {
                    border: 1px solid #b9cde3;
                    color: #5c768d;
                    background: #fff;
                    padding: 6px 14px;
                    border-radius: 20px;
                    font-size: 0.85rem;
                    text-decoration: none;
                    transition: all 0.2s ease;
                }
        
                .keyword-pill:hover {
                    background-color: var(--secondary-blue);
                    border-color: var(--primary-blue);
                    color: var(--primary-blue);
                }

#pdf-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

#pdf-container canvas {
    width: 100%;
    height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}