* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif !important;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1140px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.wrapper {
    overflow-x: hidden;
}


/* topbar-section-css-start */

.topbar {
    width: 100%;
    background: linear-gradient(90deg,
            #002b5c,
            #0d5cab,
            #002b5c);
    border-bottom: 2px solid #d4af37;
    overflow: hidden;
    position: relative;
    z-index: 999;
}

.topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(212, 175, 55, 0.15),
            transparent,
            rgba(212, 175, 55, 0.15));
    pointer-events: none;
}

.topbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 48px;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.topbar-contact a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.4s ease;
}

.topbar-contact a .ph-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #ffd700,
            #d4af37);
    color: #002b5c;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.topbar-contact a:hover {
    color: #ffd700;
}

.topbar-contact a:hover .ph-icon {
    background: #ffffff;
    color: #0d5cab;
    transform: rotate(360deg) scale(1.08);
}

/* CLICK / TOUCH EFFECT */

.topbar-contact a:active .ph-icon {
    background: linear-gradient(135deg, #ff6600, #ffcc00);
    transform: scale(0.92);
}

.topbar-contact a:active {
    color: #ffcc00;
}


/* RIGHT MOVING TEXT */

.topbar-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-left: 100%;
    animation: marqueeMove 35s linear infinite;
}

/* MARQUEE ANIMATION */

@keyframes marqueeMove {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .topbar-wrapper {
        justify-content: center;
        min-height: 42px;
    }

    .topbar-contact {
        display: none;
    }

    .topbar-marquee {
        width: 100%;
    }

    .marquee-content {
        font-size: 12px;
        animation-duration: 25s;
    }

}


/* topbar-section-css-end */


/* navbar-section-css-start */

.main-header {
    background: linear-gradient(90deg, #002b5c, #0d5cab, #002b5c);
    padding: 3px 0;
    border-bottom: 2px solid #d4af37;
    position: relative;
    z-index: 9999;
    transition: all 0.4s ease;
}

/* FIXED AFTER SCROLL */

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothTop 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid #d4af37;
    background: linear-gradient(90deg, #002b5c, #0d5cab, #002b5c);
}

/* SMOOTH EFFECT */

@keyframes smoothTop {

    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}


.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85px;
    gap: 25px;
}

/* LOGO */

.logo img {
    width: 80px;
    border-radius: 12px;
    border: 2px solid #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* NAVBAR */

.nav-icon {
    margin-right: 2px;
    font-size: 14px;
    color: #FFD700;
    transition: 0.3s ease;
}

.navbar ul li a:hover .nav-icon {
    transform: translateY(-1px);
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    transition: 0.4s ease;
    padding-bottom: 5px;
}

/* HOVER EFFECT */

.navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: 0.4s ease;
}

.navbar ul li a:hover {
    color: #ffd700;
}

.navbar ul li a:hover::after {
    width: 100%;
}

/* BUTTON */

/* BOOK NOW BUTTON */

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #002b5c;
    padding: 13px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.4s ease;
    border: 2px solid #ffffff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.45);
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.nav-btn a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    gap: 2px;
}


.nav-btn a .book-icon-wh {
    font-size: 14px;
    color: #0ac133;

}

/* TOGGLE */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    border: none;

    background: linear-gradient(135deg, #FFD700, #c89b00);

    color: #000;

    border-radius: 12px;

    font-size: 18px;
    cursor: pointer;

    transition: 0.4s ease;
}

.menu-toggle:hover {
    transform: scale(1.05);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99999;

    visibility: hidden;
    opacity: 0;

    transition: 0.4s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

/* OVERLAY */

.mobile-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.7);

    backdrop-filter: blur(5px);
}

/* SIDEBAR */

.mobile-sidebar {
    position: absolute;
    top: 0;
    left: -100%;

    width: 320px;
    height: 100%;

    background: linear-gradient(180deg,
            #002b5c,
            #0d5cab,
            #001d3d);

    padding: 25px;

    overflow-y: auto;

    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);

    border-right: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.4);
}




.mobile-menu.active .mobile-sidebar {
    left: 0;
}

/* TOP */

.mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mobile-logo img {
    width: 80px;
    border: 3px solid #ffd700;
    border-radius: 6px;
}


.mobile-top button {
    width: 40px;
    height: 40px;
    border: none;
    background: #FFD700;
    color: #000;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

/* MOBILE LINKS */

.mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-links li {
    margin-bottom: 15px;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 5px;
}

.mobile-links li a {
    color: #fff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    position: relative;

    transition: 0.4s ease;

    display: inline-block;
}

/* HOVER LINE */

.mobile-links li a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0%;
    height: 2px;

    background: #FFD700;

    transition: 0.4s ease;
}

.mobile-links li a:hover {
    color: #FFD700;
}

.mobile-links li a:hover::after {
    width: 100%;
}

/* MOBILE BUTTON */

.mobile-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
    padding: 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FFD700, #ffc107);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s ease;
    border: 2px solid #fff;
    box-shadow: 0px 0px 15px #ffffff;
}


.mobile-btn i {
    color: #0ac133;
    font-size: 18px;
}

.mobile-btn:hover {
    transform: translateY(-3px);
}

/* CONTACT */

.mobile-contact {
    margin-top: 25px;
    padding-top: 15px;
    /* border-top: 1px solid rgb(255 255 255 / 34%); */
    border: 1px solid #ffffff87;
    padding: 10px;
    border-radius: 8px;
}

.mobile-contact h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;
    /* Prevent icon from shrinking */

    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #b8860b);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #000;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #fff;
    transition: 0.4s ease;
}

.mobile-contact a:hover {
    color: #FFD700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .navbar {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-wrapper {
        min-height: 75px;
    }

    .logo img {
        width: 70px;
    }

    .navbar ul {
        display: none;

    }

    .mobile-btn {
        margin-top: 25px;
        padding: 10px 14px;
    }

}

@media (max-width: 480px) {

    .mobile-sidebar {
        width: 290px;
        padding: 20px;
    }

}



/* navbar-section-css-end */


/* banner-section-css-start */

.banner-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-item {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 43, 92, 0.55),
            rgba(0, 43, 92, 0.25),
            rgba(0, 43, 92, 0.10));
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    z-index: 2;

    max-width: 520px;

    padding: 30px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 18px;
}

.banner-content span {
    display: inline-block;
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-content h1 {
    color: #fff;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-content p {
    color: #f5f5f5;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.banner-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-btn {
    min-width: 160px;
    height: 48px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg,
            #FFD700,
            #D4AF37);

    color: #002b5c;

    font-weight: 700;

    transition: .4s;
}

.banner-btn:hover {
    transform: translateY(-4px);
}

.btn-border {
    background: transparent;

    color: #fff;

    border: 2px solid #FFD700;
}

.btn-border:hover {
    background: #FFD700;
    color: #002b5c;
}

.banner-slider .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
    display: flex;
    gap: 10px;
}

.banner-slider .owl-dot span {
    width: 14px;
    height: 14px;

    display: block;

    border-radius: 50%;

    background: rgba(255, 255, 255, .4);

    transition: .4s;
}

.banner-slider .owl-dot.active span {
    width: 40px;

    border-radius: 30px;

    background: #FFD700;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .banner-content h1 {
        font-size: 60px;
    }

}

@media(max-width:991px) {

    .banner-item {
        height: 650px;
    }

    .banner-content {
        left: 5%;
        right: 5%;
        max-width: 100%;
    }

    .banner-content h1 {
        font-size: 50px;
    }

}

@media(max-width:768px) {

    .banner-item {
        height: 380px;
    }

    .banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgb(0 43 92 / 81%), rgb(0 43 92 / 52%), rgba(0, 43, 92, 0.10));
    }

    .banner-content {
        left: 0px;
        right: 0px;
        max-width: 100%;
        padding: 18px;
        text-align: left;
        border-radius: 12px;
        border: 0;
        backdrop-filter: none;
        background: none;
    }

    .banner-content span {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .banner-content h1 {
        font-size: 22px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .banner-content p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .banner-btns {
        gap: 8px;
        /* flex-direction: row; */
        flex-wrap: nowrap;
    }

    .banner-btn {
        min-width: 130px;
        width: auto;
        height: 40px;
        font-size: 12px;
        padding: 0 15px;
    }

    .banner-slider .owl-dots {
        bottom: 50px;
    }
}

/* banner-section-css-end */

/* diagnostic-section-css-start */

.diagnostic-section {
    position: relative;
    margin-top: -40px;
    z-index: 50;
    margin-bottom: 60px;
}

.diagnostic-wrapper {
    display: flex;
    gap: 25px;
    align-items: stretch;
}

/* LEFT CARD */

.diagnostic-left {
    width: 35%;
    min-height: 450px;

    background: linear-gradient(135deg,
            #0c4da2,
            #1b6fd1);

    border-radius: 20px;
    padding: 40px 30px;

    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diag-pattern {
    position: absolute;
    right: -30px;
    bottom: -30px;
    font-size: 180px;
    color: rgba(255, 255, 255, .06);
}

.diagnostic-left h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.diagnostic-left h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}


.diagnostic-left p {
    color: rgba(255, 255, 255, .92);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.diagnostic-btn {
    width: 220px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    text-decoration: none;
    background: #FFD700;
    border: 2px solid #ffd700;
    color: #002b5c;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .4s;
}

/* background fill */
.diagnostic-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #002b5c;
    transition: .4s ease;
    z-index: -1;
}

/* hover */
.diagnostic-btn:hover::before {
    left: 0;
}

.diagnostic-btn:hover {
    color: #FFD700;
    transform: translateY(-4px);
}

/* RIGHT CARD */

.diagnostic-right {
    width: 65%;
    background: #eef4fb;
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* SERVICE BOX */

.service-box {
    background: #fff;
    border-radius: 15px;
    min-height: 180px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .4s;
    border: 1px solid #dde6f2;
}

/* Hover Background Fill */

.service-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            #0c4da2,
            #1b6fd1);

    transition: .5s ease;
    z-index: 1;
}

.service-box:hover::before {
    top: 0;
}

.service-box img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: .4s;
}

.service-box:hover img {
    filter: brightness(0) invert(1);
}

.service-box h4 {
    font-size: 16px;
    color: #002b5c;

    position: relative;
    z-index: 2;

    transition: .4s;
}

.service-box:hover h4 {
    color: #fff;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.service-box:hover img {
    transform: scale(1.08);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .diagnostic-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .diagnostic-left,
    .diagnostic-right {
        width: 100%;
    }

    .diagnostic-left {
        min-height: auto;
    }

    .diagnostic-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {

    .diagnostic-section {
        margin-top: -40px;
    }

    .diagnostic-left {
        padding: 30px 20px;
        text-align: center;
    }

    .diagnostic-left h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .diagnostic-left h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .diagnostic-left p {
        margin-bottom: 10px;
    }

    .diagnostic-btn {
        width: 150px;
        margin: auto;
        height: 40px;
        font-size: 13px;
    }

    .diagnostic-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .service-box {
        min-height: 140px;
        padding: 15px 10px;
    }

    .service-box img {
        width: 45px;
        height: 45px;
    }

    .service-box h4 {
        font-size: 13px;
    }
}


/* diagnostic-section-css-end */


/* doctor-section-css-start */

.doctor-section {
    padding: 80px 0;
    background: #ffffff;
}


/* WRAPPER */

.doctor-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}


/* LEFT IMAGE */

.doctor-image {
    width: 35%;
    position: relative;
}


.doctor-image img {
    width: 100%;
    border-radius: 25px;
    display: block;
}


.doctor-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;

    background: #FFD700;
    color: #002b5c;

    padding: 12px 20px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    display: flex;
    align-items: center;
    gap: 8px;

    animation: floatBadge 3s ease-in-out infinite;
}


/* Floating Animation */

@keyframes floatBadge {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

/* RIGHT CONTENT */

.doctor-content {
    width: 65%;
}


.doctor-tag {
    color: #0c4da2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}


.doctor-content h2 {
    font-size: 42px;
    color: #002b5c;
    font-weight: 800;
    margin: 8px 0;
}


.doctor-content h4 {
    color: #444;
    font-size: 20px;
    margin-bottom: 20px;
}


.doctor-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}


.doctor-highlights span {
    background: #ecf2f9;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #002b5c;
}


.doctor-content p {
    color: #000;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 15px;
}


/* QUALIFICATIONS */

.qualification-row {
    margin-top: 50px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.qualification-box {
    background: #ecf2f9;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: .4s;
    color: #0c4da2;
}


.qualification-box i {
    font-size: 35px;
    color: #0c4da2;
    margin-bottom: 15px;
}


.qualification-box h5 {
    color: #002b5c;
    font-size: 16px;
    font-weight: 700;
}


.qualification-box:hover {
    transform: translateY(-8px);
    background: #002b5c;
    color: #FFD700;
}


.qualification-box:hover h5,
.qualification-box:hover i {
    color: #FFD700;
}


/* TABLET */

@media(max-width:991px) {

    .doctor-wrapper {
        flex-direction: column;
    }

    .doctor-image,
    .doctor-content {
        width: 100%;
    }

    .qualification-row {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media(max-width:576px) {

    .doctor-section {
        padding: 50px 0;
    }

    .doctor-content h2 {
        font-size: 28px;
    }

    .doctor-content h4 {
        font-size: 16px;
    }

    .doctor-badge {
        font-size: 12px;
        padding: 10px 15px;
    }

    .qualification-row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 10px;
    }

    .doctor-highlights {
        flex-direction: column;
    }

    .qualification-box h5 {
        color: #002b5c;
        font-size: 13px;
        font-weight: 700;
        margin: 0;
    }

    .doctor-highlights span {
        padding: 10px 18px;
        border-radius: 30px;
        font-size: 12px;
    }

}

/* doctor-section-css-end */



/* why-choose-us-section-css-start */

.why-choose-section {
    padding: 80px 0;
    background-image:
        linear-gradient(rgba(0, 43, 92, .75),
            rgba(0, 43, 92, .75)),
        url("../img/banner01.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* CENTER CARD */
.why-card {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border-radius: 25px;
    padding: 45px 50px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.why-tag {
    color: #0c4da2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.why-card h2 {
    font-size: 34px;
    color: #002b5c;
    font-weight: 800;
    margin: 5px 0;
}

.why-card>p {
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    max-width: 700px;
    margin: auto;
}

/* COLUMN ITEMS */

.why-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.why-item {
    background: #eef4fb;
    padding: 25px 15px;
    border-radius: 18px;
    transition: 0.4s;
    color: #0c4da2;
    font-size: 25px;
}

.why-item h4 {
    color: #002b5c;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-item p {
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}

.why-item:hover {
    transform: translateY(-8px);
    background: #002b5c;
    color: #fff;
}

.why-item:hover h4,
.why-item:hover p {
    color: #fff;
}

.why-item:hover i {
    background: #FFD700;
    color: #002b5c;
}

/* TABLET */
@media(max-width:991px) {

    .why-choose-section {
        background-attachment: scroll;
    }

    .why-row {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */

@media(max-width:576px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-card {
        padding: 30px 20px;
    }

    .why-card h2 {
        font-size: 26px;
    }

    .why-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-item {
        padding: 20px 15px;
    }
}

/* why-choose-us-section-css-end */

/* services-section-css-start */

.services-section {
    padding: 80px 0;
    background: #eef4fb;
}


/* HEADING */

.services-heading {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 50px;
}

.services-heading span {
    color: #0c4da2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.services-heading h2 {
    font-size: 38px;
    color: #002b5c;
    font-weight: 800;
    margin: 10px 0 15px;
}

.services-heading p {
    color: #000;
    font-size: 15px;
    line-height: 1.8;
}


/* CARD */

.service-card {

    background: #fff;
    height: 100%;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: .4s;
    border: 1px solid #dbe6f3;
}


.service-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #0c4da2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: .4s;
}

.service-card h4 {
    font-size: 18px;
    color: #002b5c;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.8;
}

.service-card:hover {
    transform: translateY(-8px);
    background: #002b5c;
}

.service-card:hover h4,
.service-card:hover p {
    color: #fff;
}

.service-card:hover .service-icon {
    background: #FFD700;
    color: #002b5c;
}

/* BUTTON */

.services-btn-box {
    text-align: center;
    margin-top: 35px;
}

.services-btn {
    width: 220px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 50px;
    background: #FFD700;
    border: 2px solid #FFD700;
    color: #002b5c;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .4s;
}


.services-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #002b5c;
    transition: .4s;
    z-index: -1;
}

.services-btn:hover::before {
    left: 0;
}

.services-btn:hover {
    color: #FFD700;
    transform: translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:576px) {

    .services-section {
        padding: 40px 0;
    }

    .services-heading h2 {
        font-size: 20px;
        margin: 5px;
    }

    .services-heading {
        margin-bottom: 30px;
    }

    .service-card {
        padding: 25px 15px;
    }

}

/* services-section-css-end */


/* counter-section-css-start */

.counter-section {

    padding: 70px 0;

    background:
        linear-gradient(135deg,
            #002b5c,
            #0c4da2);

}

.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.counter-box {
    text-align: center;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 30px 15px;
    transition: .4s;
}

.counter-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .12);
}

.counter-box h2 {
    font-size: 38px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
}

.counter-box p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* TABLET */
@media(max-width:991px) {

    .counter-wrapper {
        gap: 12px;
    }
}

/* MOBILE */

@media(max-width:576px) {
    .counter-section {
        padding: 30px 0;
    }

    .counter-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .counter-box {
        padding: 15px 5px;
        border-radius: 12px;
    }

    .counter-box h2 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .counter-box p {
        font-size: 10px;
        line-height: 1.3;
    }

}

/* counter-section-css-end */

/* testimonial-section-css-start */

.testimonial-section {
    padding: 80px 0;
    background: #eef4fb;
}


/* HEADING */

.testimonial-heading {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 50px;
}

.testimonial-heading span {
    color: #0c4da2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-heading h2 {
    font-size: 34px;
    color: #002b5c;
    font-weight: 800;
    margin: 5px 0 10px;
}

.testimonial-heading p {
    color: #000;
    line-height: 1.6;
    font-size: 14px;
}


/* CARD */

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    transition: .4s;
    border: 1px solid #dbe6f3;
}


.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}


.testimonial-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
}


.testimonial-card p {
    color: #000;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 15px;
}


/* USER */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}


.user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0c4da2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-user h5 {
    margin: 0;
    color: #002b5c;
    font-size: 16px;
    font-weight: 700;
}


.testimonial-user span {
    color: #000;
    font-size: 13px;
}


/* OWL DOTS */
.testimonial-slider .owl-dots {
    margin-top: 35px;
    text-align: center;
}


.testimonial-slider .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #b8c8dd !important;
    transition: .4s;
}


.testimonial-slider .owl-dot.active span {
    background: #0c4da2 !important;
    width: 30px;
}


/* MOBILE */
@media(max-width:576px) {

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-heading h2 {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-heading {
        margin-bottom: 20px;
    }

}

/* OWL DOTS */

.testimonial-slider .owl-dots {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.testimonial-slider .owl-dot {
    outline: none;
}

.testimonial-slider .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0;
    border-radius: 50px;
    background: #b8c8dd !important;
    display: block;
    transition: all .4s ease;
}


/* ACTIVE DOT */

.testimonial-slider .owl-dot.active span {
    width: 35px;
    background: #0c4da2 !important;
}


/* HOVER */

.testimonial-slider .owl-dot:hover span {
    background: #FFD700 !important;
}




/* testimonial-section-css-end */


/* footer-section-css-start */


.main-footer {
    width: 100%;
    background: linear-gradient(180deg,
            #00152f,
            #002b5c,
            #00152f);
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            #ffd700,
            transparent);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-card {
    position: relative;
}

.footer-logo {
    width: 90px;
    margin-bottom: 13px;
    border: 2px solid #e3bf3d;
    box-shadow: 0px 0px 15px #ffd70085;
}

.footer-about p {
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.4s ease;
    border-radius: 50%;
}

.footer-social a:hover {
    background: linear-gradient(135deg,
            #ffd700,
            #d4af37);
    color: #002b5c;
    transform: translateY(-5px);
}

.footer-card h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

.footer-card h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 2px;
    background: linear-gradient(90deg,
            #ffd700,
            #d4af37);
}


.footer-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-card ul li {
    margin-bottom: 15px;
}


.footer-card ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #d4af37;
    transform: translateY(-50%) rotate(45deg);
}

.footer-card ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    padding-left: 18px;
    transition: 0.4s ease;
    display: inline-block;
}

.footer-card ul li a::after {
    content: "";
    position: absolute;
    left: 18px;
    /* starts after the diamond icon */
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.4s ease;
}

/* .footer-card ul li a:hover {
    color: #d4af37;
} */
.footer-card ul li a:hover {
    color: #ffd700;
}

.footer-card ul li a:hover::after {
    width: calc(100% - 18px);
}


.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact a,
.footer-address {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 14px;
    line-height: 1.8;
    font-size: 15px;
    transition: 0.4s ease;
}

.footer-contact a i,
.footer-address i {
    color: #ffd700;
    font-size: 16px;
    margin-top: 5px;
    min-width: 16px;
}


.footer-contact a:hover {
    color: #d4af37;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 20px;
    text-align: center;
    background: #00152f;
}

.footer-bottom p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin: 0;
}

.footer-bottom p a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-bottom p a:hover {
    color: #ffffff;
}


.footer-contact-map{

    /* width:55%; */
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}


.footer-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 270px;
    border: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 768px) {

    .main-footer {
        padding-top: 70px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-card ul li {
        margin-bottom: 10px;
    }

    .footer-logo {
        width: 80px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-card h3 {
        font-size: 22px;
    }

    .footer-about p,
    .footer-card ul li a,
    .footer-contact a,
    .footer-address {
        font-size: 14px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

}


/* footer-section-css-end */


/* about-us-banner-section-css-start */

.about-us-banner {
    position: relative;
    overflow: hidden;
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 0;

    background: linear-gradient(135deg,
            #002b5c,
            #0c4da2,
            #1b6fd1,
            #002b5c);
}


/* LEFT TO RIGHT GOLD SHINE */
.about-us-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;

    width: 80%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .12),
            rgba(255, 255, 255, .22),
            rgba(255, 255, 255, .12),
            transparent);

    transform: skewX(-25deg);

    animation: shineLeftRight 8s linear infinite;
}

/* RIGHT TO LEFT GOLD SHINE */

.about-us-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: -150%;

    width: 80%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .15),
            rgba(255, 255, 255, .08),
            transparent);

    transform: skewX(25deg);

    animation: shineRightLeft 10s linear infinite;
}

/* ANIMATIONS */

@keyframes shineLeftRight {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes shineRightLeft {
    0% {
        right: -150%;
    }

    100% {
        right: 150%;
    }
}

/* CONTENT */

.about-content {
    width: 100%;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* TITLE */

.about-content h1 {
    margin: 0 0 15px;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg,
            #b8860b,
            #ffd700,
            #fff8b0,
            #ffd700,
            #b8860b);

    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldTextMove 5s linear infinite;
    font-family: "Oswald", sans-serif;
}

@keyframes goldTextMove {
    from {
        background-position: 0%;
    }

    to {
        background-position: 300%;
    }
}

/* BREADCRUMB */

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 12px 25px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 215, 0, 0.25);

    border-radius: 50px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 0 15px rgba(255, 215, 0, 0.15),
        inset 0 0 10px rgba(255, 215, 0, 0.08);
}

.breadcrumb-box a,
.breadcrumb-box span {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 0px;
    font-family: oswald, sans-serif;
}

.breadcrumb-box a:hover {
    color: #ffd700;
}

.breadcrumb-box .active,
.breadcrumb-box i {
    color: #ffd700;
}

/* MOBILE */

@media (max-width: 768px) {

    .about-us-banner {
        min-height: 200px;
        padding: 60px 0;
    }

    .about-content h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .breadcrumb-box {
        padding: 10px 18px;
        gap: 8px;
    }

}


/* about-us-banner-section-css-end */


/* about-us-section-css-start */

.about-section {
    padding: 80px 0;
    background: #eef4fb;
}

.about-wrapper {
    display: flex;
    gap: 35px;
    align-items: stretch;
}

/* LEFT CONTENT 70% */
.about-us-content {
    width: 70%;
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TAG */
.about-tag {
    color: #0c4da2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-us-content h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #002b5c;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-us-content p {
    color: #000;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-us-content strong {
    color: #002b5c;
}

/* BUTTON */
.about-btn {
    margin-top: 15px;
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFD700;
    border: 2px solid #FFD700;
    color: #002b5c;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .4s;
}

.about-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #002b5c;
    transition: .4s;
    z-index: -1;
}

.about-btn:hover::before {
    left: 0;
}

.about-btn:hover {
    color: #FFD700;
    transform: translateY(-4px);
}

/* RIGHT IMAGE SECTION 30% */
.about-gallery {
    width: 30%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 25px;
}

/* IMAGE BOX */
.about-img {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.about-img:hover img {
    transform: scale(1.08);
}

/* LARGE SCREEN HEIGHT MATCH */

@media(min-width:992px) {
    .about-gallery {
        align-content: center;
    }
}



/* TABLET */

@media(max-width:991px) {

    .about-wrapper {
        flex-direction: column;
    }

    .about-us-content,
    .about-gallery {

        width: 100%;

    }

    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-img {
        height: 220px;
    }

}

/* MOBILE */
@media(max-width:576px) {

    .about-section {
        padding: 50px 0;
    }

    .about-us-content {
        padding: 15px;
        /* text-align: center; */
    }

    .about-us-content h2 {
        font-size: 24px;
    }

    .about-btn {
        margin: 10px 10px;
    }

    .about-gallery {
        gap: 10px;
        padding: 10px;
    }

    .about-img {
        height: 140px;
    }
}

/* about-us-section-css-end */



/* about-page-section-css-start */

.about-page-section {
    padding: 80px 0;
    background: #eef4fb;
}

.about-page-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LEFT */

.about-page-content {
    width: 60%;
}

.about-page-tag {
    display: inline-block;
    color: #0c4da2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-page-content h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #002b5c;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-page-content p {
    color: #000;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-page-content strong {
    color: #002b5c;
}

/* RIGHT */

.about-page-image {
    width: 40%;
    position: relative;
}

.about-page-image img {
    width: 100%;
    border-radius: 25px;
    display: block;
    border: 2px solid #063f7c;
}

.about-page-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;

    background: #fff;

    padding: 18px 22px;

    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.about-page-badge h4 {
    margin: 0 0 5px;
    color: #002b5c;
    font-size: 18px;
    font-weight: 700;
}

.about-page-badge span {
    color: #000;
    font-size: 13px;
}

/* INFO SECTION */

.about-info-section {
    padding: 0 0 80px;
    background: #eef4fb;
}

.about-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 5px solid #0c4da2;
    transition: .4s;
}

.about-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.about-info-card h3 {
    color: #002b5c;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-info-card p {
    color: #000;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
}

/* TABLET */

@media(max-width:991px) {

    .about-page-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .about-page-content,
    .about-page-image {
        width: 100%;
    }

    .about-page-content h2 {
        font-size: 34px;
    }
}

/* MOBILE */

@media(max-width:576px) {

    .about-page-section {
        padding: 50px 0;
    }

    .about-page-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .about-page-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .about-page-badge {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }

    .about-info-section {
        padding-bottom: 50px;
    }

    .about-info-card {
        padding: 20px;
    }

    .about-info-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}
.about-info-card p {
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 13px;
}
}

/* about-page-section-css-end */


/* mission-vision-section-css-start */


.mission-vision-section{

    padding:80px 0;

    background:#fff;

}


/* HEADING */

.mission-heading{

    text-align:center;

    max-width:750px;

    margin:0 auto 50px;

}


.mission-heading span{

    color:#0c4da2;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

}


.mission-heading h2{

    color:#002b5c;

    font-size:38px;

    font-weight:800;

    margin:10px 0;

}


.mission-heading p{

    color: #000;

    font-size:14px;

    line-height:1.8;

}



/* WRAPPER */


.mission-wrapper{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}



/* CARD */


.mission-card{

    background:#eef4fb;

    border-radius:25px;

    padding:40px;

    display:flex;

    gap:25px;

    align-items:flex-start;

    position:relative;

    overflow:hidden;

    transition:.4s;

}


/* TOP SHINE */

.mission-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:5px;

    background:#FFD700;

    transition:.5s;

}


.mission-card:hover::before{

    left:0;

}


.mission-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.1);

}



/* ICON */


.mission-icon{

    min-width:70px;

    height:70px;

    border-radius:50%;

    background:#002b5c;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#FFD700;

    font-size:28px;

    transition:.4s;

}


.mission-card:hover .mission-icon{

    background:#0c4da2;

    transform:rotateY(360deg);

}



/* CONTENT */


.mission-content h3{

    color: #002b5c;

    font-size:25px;

    font-weight:800;

    margin-bottom:15px;

}


.mission-content p{

    color: #000;

    font-size:14px;

    line-height:1.8;

    margin-bottom:12px;

}



/* TABLET */


@media(max-width:991px){

    .mission-wrapper{

        grid-template-columns:1fr;

    }

}



/* MOBILE */


@media(max-width:576px){


    .mission-vision-section{

        padding:50px 0;

    }


    .mission-heading h2{

        font-size:28px;

    }


    .mission-card{

        flex-direction:column;

        padding:25px;

        text-align:center;

        align-items:center;

    }


    .mission-icon{

        width:65px;

        height:65px;

        font-size:24px;

    }


    .mission-content h3{

        font-size:22px;

    }

}


/* mission-vision-section-css-end */

/* gallery-section-css-start */


.gallery-section{

    padding:80px 0;

    background:#eef4fb;

}



/* HEADING */

.gallery-heading{

    text-align:center;

    max-width:700px;

    margin:0 auto 45px;

}


.gallery-heading span{

    color:#0c4da2;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

}


.gallery-heading h2{

    color:#002b5c;

    font-size:38px;

    font-weight:800;

    margin:10px 0;

}

.gallery-heading p{
    color: #000;
    line-height:1.6;
}

/* GALLERY BOX */
.gallery-wrapper{

    row-gap:30px;
}


.gallery-box{

    height:280px;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    background:#fff;

}



.gallery-box img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}



/* OVERLAY */


.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,43,92,.65);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.4s;

}



.gallery-overlay i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#FFD700;

    color:#002b5c;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    transform:scale(0);

    transition:.4s;

}



/* HOVER */


.gallery-box:hover img{

    transform:scale(1.12);

}


.gallery-box:hover .gallery-overlay{

    opacity:1;

}


.gallery-box:hover .gallery-overlay i{

    transform:scale(1);

}



/* TABLET */

@media(max-width:991px){

    .gallery-box{

        height:250px;

    }

}



/* MOBILE */


@media(max-width:576px){


    .gallery-section{

        padding:50px 0;

    }


    .gallery-heading h2{

        font-size:28px;

    }


    .gallery-wrapper{

        row-gap:15px;

    }


    .gallery-box{

        height:200px;

        border-radius:15px;

    }


}

/* gallery-section-css-end */


/* contact-section-css-start */


.contact-section{

    padding:80px 0;

    background:#eef4fb;

}



/* HEADING */

.contact-heading {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px;
}


.contact-heading span{

    color: #0c4da2;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

}


.contact-heading h2{

    color: #002b5c;
    font-size:34px;
    font-weight:800;
    margin: 8px 0;
}

.contact-heading p{
    color: #000;
}

/* WRAPPER */
.contact-wrapper{
    display:flex;
    gap:25px;
    align-items:stretch;
}

/* CONTACT CARD */

.contact-info{

    width:45%;

    background:#fff;

    padding:35px;

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}



/* LOGO */


.contact-logo{

    background:linear-gradient(
        135deg,
        #002b5c,
        #0c4da2
    );

    padding:25px;

    border-radius:18px;

    margin-bottom:25px;

    color:#fff;

}


.contact-logo h3{

    font-size:22px;

    margin-bottom:8px;

}


.contact-logo p{

    color: #FFD700;

    font-weight:700;

    margin:0;

}



/* ITEMS */


.contact-item{

    display:flex;

    gap:15px;

    margin-bottom:22px;

}


.contact-icon{

    min-width:50px;

    height:50px;

    border-radius:50%;

    background:#eef4fb;

    color:#0c4da2;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}


.contact-icon.emergency{

    color:#e63946;

}


.contact-item h4{

    margin:0 0 6px;

    color: #002b5c;

    font-size:16px;

}


.contact-item p{

    margin:0;

    color: #000;

    font-size:14px;

    line-height:1.7;

}


.contact-item a{

    color:#0c4da2;

    font-weight:700;

    text-decoration:none;

}



/* MAP */


.contact-map{

    width:55%;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}


.contact-map iframe{

    width:100%;

    height:100%;

    min-height:550px;

    border:0;

}



/* TABLET */


@media(max-width:991px){

    .contact-wrapper{

        flex-direction:column;

    }


    .contact-info,
    .contact-map{

        width:100%;

    }


    .contact-map iframe{

        min-height:400px;

    }

}



/* MOBILE */


@media(max-width:576px){


    .contact-section{

        padding:50px 0;

    }


    .contact-heading h2{

        font-size:26px;

    }


    .contact-info{

        padding:20px;

        border-radius:18px;

    }


    .contact-logo h3{

        font-size:18px;

    }


    .contact-item{

        gap:10px;

    }


    .contact-icon{

        min-width:42px;

        height:42px;

        font-size:16px;

    }


    .contact-map iframe{

        min-height:300px;

    }


}


/* contact-section-css-end */





















/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    right: 25px;
    /* slightly off-screen */
    bottom: 90px;
    /* ABOVE back-to-top button */
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366, #1EBE5D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9998;
    /* below top button if needed */
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    /* slide fully into view */
    transform: scale(1.08);
    color: #FFFFFF;
}



/* top_to_bottam-css-start */

#scroll {
    position: fixed;
    right: 24px;
    bottom: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #132A58;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 9999;
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll:hover {
    background-color: #1243a5;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

/* top_to_bottam-css-end */





@media (max-width: 576px) {

    .breadcrumbs-area h2 {
        font-size: 34px;
    }

    .breadcrumbs-color {
        padding: 1% 28%;
    }

    #scroll {
        right: 22px;
        bottom: 16px;
        z-index: 99999;
    }

}



@media (min-width: 576px) and (max-width: 767.98px) {


    .breadcrumbs-area h2 {
        font-size: 34px;
    }

    .breadcrumbs-color {
        padding: 1% 24%;
    }

    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }

}




@media (min-width: 768px) and (max-width: 991.98px) {

    .breadcrumbs-color {
        padding: 1% 35%;
    }

    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }
}




@media (min-width: 992px) and (max-width: 1199.98px) {


    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }


}