* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif !important;
}

.topbar {
    background: linear-gradient(124deg, #980201 0 61.5%, #03264A 61.65% 100%);
    padding: 0;
    height: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1031;
    box-shadow: 0 5px 18px rgba(36, 42, 76, 0.18);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0));

}

.topbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(61.5% - 16px);
    width: 34px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    transform: skewX(-34deg);
    transform-origin: top;

}

.topbar .container,
.topbar .row {
    height: 100%;
}

.topbar-info-text p {
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.topbar-info-text i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 12px;
}

.topbar-info-text i.me-2 {
    margin-right: 0 !important;
}

.topbar-info-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.topbar-info-text a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.topbar-contact-wrap {
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.topbar-social-links ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
    justify-content: end;
    align-items: center;
}

.topbar-social-links ul::before {
    content: "Follow Us:";
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-right: 4px;
    white-space: nowrap;
}

.topbar-social-links li a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.topbar-social-links li a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.topbar-social-links li a i {
    color: #fff;
    font-size: 13px;
}

@media (max-width: 991px) {
    .topbar {
        height: auto;
        min-height: 50px;
        padding: 8px 0;
        background: linear-gradient(135deg, #980201 0 100%);
    }

    .topbar::after {
        display: none;
    }

    .topbar .row {
        gap: 8px;
    }

    .topbar-contact-wrap,
    .topbar-social-links ul {
        justify-content: center;
    }

    .topbar-social-links ul {
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .topbar-info-text p {
        font-size: 13px;
    }

    .topbar-social-links ul::before {
        display: none;
    }
}

/* Transparent navbar initially */
.transparent-navbar {
    background: #fff !important;
    top: 50px;
    min-height: 76px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: top 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    z-index: 1030;
}

.transparent-navbar.scrolled {
    top: 0;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.navbar.fixed-top.scrolled {
    top: 0;
}

/* Open dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    transition: all.3s;
}

.dropdown-menu {
    position: relative;
    max-height: 70vh;
    overflow-y: auto;
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 8px 0 !important;
    box-shadow: 6px 6px 0 #980201 !important;
}

.dropdown-item:hover {
    background-color: #980201 !important;
    color: #fff !important;
}

/* nav area */
.navbar {
    background-color: #fff !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.navbar.fixed-top {
    top: 50px;
}

.nav-menu {
    gap: 25px;
}

.links-area ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.links-area ul a {
    text-decoration: none;
}

.links-area i {
    color: #980201;
    font-size: 20px;
}

.nav-link {
    font-weight: 600 !important;
    color: #000 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    font-weight: 600 !important;
    color: #980201 !important;

}

.navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
}

/* .navbar-brand img {
    display: block;
    width: 90px;
    height: auto;
} */

.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
    padding: 0.35rem 0.5rem !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* footer */
footer {
    background-color: #03264A;
    position: relative;
    padding-top: 25px;
}

/* footer:after {
        content: "";
        top: 0;
        position: absolute;
        background-image: url(../images/clouds_2.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 300px;
    } */

.footer-box h2 {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 17px;
    color: var(--s-white);
}

.footer-box p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.footer-box h3 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}

.footer-box ul li {
    margin-bottom: 0.5rem;
}

.footer-box li a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: all.3s;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    transition: all.3s;

}

.footer-box a {
    text-decoration: none;
    color: #fff;
}

.footer-box ul li a:hover {
    color: #fff;
    letter-spacing: 1px;
    transition: all.3s;
}

.footer1stRow {
    padding: 2rem 0 1.5rem 0;
    position: relative;
    z-index: 1;
    /* border-top: 1px solid #2525251e; */
}

.socialmediaicon li a i {
    background-color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 8px;
    padding: 0;
    color: #112F4E;
    transition: 0.3s;
    border-radius: 100px;
}

.socialmediaicon ul {
    list-style: none;
    padding: 0;
}

.socialmediaicon ul li a i:hover {
    transform: rotate(360deg);
    background-color: #fff;
    color: #112F4E;
}

.SocialIcon h3 {
    font-size: 17px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.copyRight {
    border-top: 1px solid #ffffff5b;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.copyRight a {
    /* text-decoration: none; */
    color: #fff;
}

.copyRight p {
    color: #fff;
}

/* Back To Top CSS Start Here */
.button {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #980201;
    cursor: pointer;
    border: 2px solid var(--s-primary);
    /* mix-blend-mode: multiply;     */
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.btn-txt {
    z-index: 10;
}

.type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #03264A;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
}

.button:hover {
    box-shadow: 1px 1px 200px var(--s-white);
    color: #fff;
    border: none;
}

.type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
}

/* cursor */
.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    --dot-x: 0px;
    --dot-y: 0px;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 1.5px solid #980201;
    border-radius: 50%;
    background-color: transparent;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s;
}

.cb-cursor::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #980201;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + var(--dot-x)), calc(-50% + var(--dot-y)));
    opacity: 0.9;
    transition: width 0.28s ease, height 0.28s ease, opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-cursor.is-idle::before {
    width: 18px;
    height: 18px;
    opacity: 0.35;
    transform: translate(-50%, -50%);
}

/* banner start */
.hero-section {
    margin-top: 76px;
}

.mySwiper,
.mySwiper .swiper-slide,
.banner {
    min-height: 760px;
}

.mySwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease;
    z-index: 0;
}

.slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 35%, rgba(214, 175, 63, 0.24), transparent 24%), linear-gradient(100deg, rgb(7 31 77 / 52%) 0%, rgb(7 31 77 / 38%) 42%, rgba(7, 31, 77, 0.28) 100%)
}

.mySwiper .swiper-slide-active .slide-bg {
    transform: scale(1.08);
}

.banner {
    position: relative;
    z-index: 1;
    padding: 160px 0 90px;
}

.banner-content {
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background-color: #fff;
}

.banner-content h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 22px;
    text-wrap: balance;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 32px;
}


.swiper-pagination {
    bottom: 28px !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #fff !important;
    opacity: 0.55 !important;
}

.swiper-pagination-bullet-active {
    width: 34px !important;
    border-radius: 999px !important;
    background: #980201 !important;
    opacity: 1 !important;
}


@media (max-width: 991px) {
    .hero-section {
        margin-top: 76px;
    }

    .mySwiper,
    .mySwiper .swiper-slide,
    .banner {
        min-height: 680px;
    }

    .banner {
        padding: 135px 0 80px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        margin-top: 74px;
    }

    .mySwiper,
    .mySwiper .swiper-slide,
    .banner {
        min-height: 640px;
    }

    .banner {
        padding: 115px 0 70px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 16px;
    }

}


.btn-primary {
    position: relative;
    display: inline-block;
    padding: 16px 35px;
    color: #fff;
    background: #980201 !important;
    border: none !important;
    font-weight: 700 !important;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all.3s;
    border-radius: 0px !important;
}

.btn-primary::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 200%;
    left: 50%;
    top: 50%;
    background-color: #03264A !important;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all.3s;
}

.btn-primary::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 25px;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover::before {
    width: 120%;
}

.btn-primary:hover {
    color: #fff;
}


/* about us section */
.about-us {
    padding: 90px 0;
    background: linear-gradient(180deg, #f4f8fc 0%, #fff 100%);
}

/* .about-content {
    max-width: 480px;
} */

.about-content h3 {
    color: #980201;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about-content h2 {}

.textt-secondary {
    color: #000;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-shadow: 5px 1px 2px #98020170;
}

.about-content p {
    color: #666a73;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.about-img-collage {
    position: relative;
    min-height: 535px;
    display: grid;
    grid-template-columns: 1fr 0.94fr;
    gap: 22px;
    align-items: center;
    padding-right: 42px;
}

.about-photo {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(12, 136, 213, 0.14);
}

.about-photo-large {
    height: 535px;
}

.about-photo-small {
    height: 445px;
    margin-top: 44px;
}

.about-img-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-experience-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 168px;
    height: 218px;
    border-radius: 80px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(17, 47, 78, 0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px;
}

.about-experience-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #980201;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 14px;
}

.about-experience-card strong {
    color: #03264A;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.about-experience-card span:last-child {
    color: #000;
    font-size: 15px;
    line-height: 1.25;
    margin-top: 6px;
}

.what-we-do-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.what-we-do-body ul li {
    background-image: url(../images/icon-check.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 24px auto;
    line-height: 1.5em;
    margin-bottom: 20px;
    padding-left: 35px;
}

.what-we-do-body ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-content {
        max-width: 100%;
    }

    .about-img-collage {
        min-height: 480px;
        max-width: 680px;
        margin: 0 auto;
        padding-right: 30px;
    }

    .about-photo-large {
        height: 480px;
    }

    .about-photo-small {
        height: 395px;
    }

    .about-img-collage img {
        height: 100%;
    }

    .about-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .about-us {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-feature-list ul {
        grid-template-columns: 1fr;
    }

    .about-content .btn-primary {
        min-width: 165px;
        padding: 12px 28px !important;
    }

    .about-img-collage {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 16px;
        padding-right: 0;
    }

    .about-photo,
    .about-photo-large,
    .about-photo-small {
        height: 310px;
        margin-top: 0;
        border-radius: 16px;
    }

    .about-img-collage img {
        height: 100%;
    }

    .about-experience-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
        border-radius: 18px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
        margin-top: 0;
    }

    .about-experience-icon {
        width: 58px;
        height: 58px;
        font-size: 23px;
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .about-experience-card strong {
        font-size: 36px;
    }
}

.textt-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #980201 !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.textt-primary::before {
    content: "";
    width: 14px;
    height: 2px;
    background: #03264A;
}

.textt-primary::after {
    content: "";
    width: 14px;
    height: 2px;
    background: #03264A;
}

.about-feature-list ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 14px;
    margin-top: 24px;
}

.about-feature-list ul li {
    margin-bottom: 0;
    font-weight: 700;
    color: #980201 !important;
}

@media (max-width: 575px) {
    .about-feature-list ul {
        grid-template-columns: 1fr;
    }
}

/* services section */
.service-section {
    position: relative;
    padding: 95px 0 105px;
    background:
        linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
    overflow: hidden;
}

.service-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, #980201 0%, #03264A 100%);
}

.service-heading {
    max-width: 790px;
    margin: 0 auto 48px;
}

.service-heading .textt-primary {
    justify-content: center;
}

.service-heading h2 {
    margin-bottom: 18px;
}

.service-heading p {
    color: #666a73;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 720px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.service-card {
    position: relative;
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    align-items: center;
    padding: 0 28px 34px;
    border: 1px solid rgba(3, 38, 74, 0.1);
    background: #fff;
    box-shadow: 0 20px 50px rgba(3, 38, 74, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: #980201;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: rgba(152, 2, 1, 0.28);
    box-shadow: 0 28px 65px rgba(3, 38, 74, 0.14);
    transform: translateY(-8px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card-featured {
    border-color: rgba(152, 2, 1, 0.22);
    transform: translateY(-18px);
}

.service-card-featured:hover {
    transform: translateY(-26px);
}

.service-image-wrap {
    position: relative;
    display: block;
    width: min(78%, 220px);
    aspect-ratio: 1;
    margin: -28px auto 26px;
    border: 9px solid #fff;
    border-radius: 50%;
    box-shadow: 0 18px 38px rgba(3, 38, 74, 0.16);
    overflow: hidden;
    isolation: isolate;
}

.service-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 7px rgba(152, 2, 1, 0.1);
    pointer-events: none;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.service-card:hover .service-image-wrap img {
    transform: scale(1.08);
}

.service-content {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: center;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 13px;
    margin-bottom: 15px;
    color: #980201;
    background: rgba(152, 2, 1, 0.08);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-tag i {
    color: #03264A;
    font-size: 14px;
}

.service-content h3 {
    color: #000;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 13px;
}

.service-content p {
    color: #666a73;
    font-size: 16px;
    line-height: 1.62;
    margin-bottom: 20px;
}

.service-content ul {
    display: grid;
    gap: 9px;
    width: 100%;
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
    text-align: left;
}

.service-content li {
    position: relative;
    color: #03264A;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    padding-left: 27px;
}

.service-content li::before {
    content: "\f00c";
    position: absolute;
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #980201;
    color: #fff;
    font-family: "Font Awesome 7 Free";
    font-size: 9px;
    font-weight: 900;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    margin-top: auto;
    padding: 0 18px;
    color: #fff;
    background: #03264A;
    font-weight: 800;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-link i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #980201;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-link:hover {
    background: #980201;
    color: #fff;
}

.service-link:hover i {
    background: #03264A;
    transform: translateX(3px);
}

@media (max-width: 1199px) {
    .service-card {
        padding-right: 22px;
        padding-left: 22px;
    }

    .service-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .service-section {
        padding: 80px 0;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 56px;
    }

    .service-card-featured,
    .service-card-featured:hover {
        transform: none;
    }

    .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 560px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .service-heading {
        margin-bottom: 42px;
    }

    .service-heading h2 {
        font-size: 36px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .service-card,
    .service-card:nth-child(3) {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .service-section {
        padding: 62px 0 68px;
    }

    .service-heading h2 {
        font-size: 32px;
        text-shadow: 4px 1px 2px #98020145;
    }

    .service-heading p,
    .service-content p {
        font-size: 15px;
    }

    .service-card {
        padding: 0 18px 28px;
    }

    .service-image-wrap {
        width: min(76%, 190px);
        margin-bottom: 22px;
    }

    .service-content h3 {
        font-size: 21px;
    }

    .service-link {
        width: 100%;
    }
}



/* about us section */
/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    position: relative;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, #980201 0%, #03264A 100%);
}

.why-choose-img {
    position: relative;
    max-width: 560px;
    min-height: 540px;
}

.why-choose-img::before {
    content: "";
    position: absolute;
    background-image: url(../images/des.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -5%;
    left: 12%;
    opacity: 0.5;
    z-index: 0;
    width: 90px;
    height: 120px;
    animation: des 4s ease-in-out infinite;
}

.why-choose-img img:first-child {
    width: 72%;
    border-radius: 25px;
    height: 500px;
    transform: rotate(-3deg);
    margin-left: 36px;
    z-index: 1;
    object-fit: cover;
    box-shadow: 0 24px 55px rgba(1, 43, 93, 0.14);
}

.why-choose-img img:last-child {
    position: absolute;
    width: 42%;
    height: 220px;
    top: 42px;
    border-radius: 25px;
    transform: rotate(4deg);
    right: 12px;
    border: 4px solid #fff;
    object-fit: cover;
    box-shadow: 0 18px 42px rgba(1, 43, 93, 0.16);
}

@keyframes des {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-35px);
    }

    100% {
        transform: translateY(0);
    }
}

/* .why-choose-content h3 {
    color: #82CDF8;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    text-transform: uppercase;
} */

/* .why-choose-content h2 {
    color: #012B5D;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
} */

.why-choose-content p {
    color: #666a73;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.why-choose-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-choose-body ul li {
    background-image: url(../images/icon-check.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 24px auto;
    line-height: 1.5em;
    margin-bottom: 20px;
    padding-left: 35px;
}

.why-choose-body ul li:last-child {
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .why-choose-content {
        max-width: 100%;
    }

    .why-choose-img img {
        height: 380px;
    }
}

@media (max-width: 575px) {
    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-content h2 {
        font-size: 36px;
    }

    .why-choose-content p {
        font-size: 16px;
    }

    .why-choose-content .btn-primary {
        min-width: 165px;
        padding: 12px 28px !important;
    }

    .why-choose-img img {
        height: 290px;
        border-radius: 12px;
    }
}

/* stats */
.stats-section {
    padding: 36px 0;
    /* background: #f4f7fb; */
}

.stats-row {
    position: relative;
    /* top: -100px; */
}

.stats-card {
    min-height: 136px;
    height: 100%;
    padding: 30px 28px 28px 66px;
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 14px 35px rgb(7 20 67 / 22%);
    transition: all.3s;
}

.stats-card:hover {
    top: -10px;
    transition: all.3s;
    box-shadow: 0 14px 8px rgb(7 20 67 / 38%);
}

.stats-icon {
    width: 64px;
    height: 64px;
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #980201;
    border-radius: 50%;
    font-size: 25px;
}

.stats-card h3 {
    color: #03264A;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 12px;
}

.stats-card p {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .stats-card {
        margin-left: 32px;
    }
}

@media (max-width: 575px) {
    .stats-card {
        margin-left: 0;
        padding-left: 92px;
    }

    .stats-icon {
        left: 18px;
    }
}

/* newsletter */
.newsletter {
    padding: 100px;
    text-align: center;
    background: radial-gradient(circle at 80% 25%, rgb(152 2 1 / 26%), #00000030 22%), linear-gradient(135deg, rgba(12, 136, 213, 0.61) 0%, rgb(10 118 185 / 32%) 35%, rgba(8, 95, 148, 0.27) 70%, rgb(152 2 1 / 26%) 100%), url(../images/newsletter.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.newsletter::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, #980201 0%, #03264A 100%);
}

/* gallery */
.gallery {
    position: relative;
    padding: 100px 0px;
}

.gallery::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, #980201 0%, #03264A 100%);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    /* border-radius: 20px; */
    height: 450px;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 20px; */
    transition: all 0.5s ease;
}

.gallery-image:hover img {
    transform: scale(1.08);
}

/* Optional overlay effect */
.gallery-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.gallery-image:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-image {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .gallery-image {
        height: 250px;
        border-radius: 15px;
    }

    .gallery-image img {
        border-radius: 15px;
    }
}

/* Testimonials */
.testimonmial {
    padding: 100px 0;
    position: relative;
}

.testimonmial::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, #980201 0%, #03264A 100%);
}

.testimonmial-content {
    margin-bottom: 50px;
}

.testimonmial-content h5 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
}

.testimonmial-content h2 {
    font-size: 45px;
    font-weight: 600;
    color: #000;
}

/* Swiper */
#testimonialSwiper {
    padding: 20px 0 50px;
}

#testimonialSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

/* Card */
.testimonial-card {
    width: 100%;
    max-width: 360px;
    padding: 25px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Author */
.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-meta h4 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #980201;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-edit h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.testimonial-edit p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

/* Pagination */
.swiper-pagination-bullet {
    background: #000;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonmial-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .testimonmial {
        padding: 60px 0;
    }

    .testimonmial-content h2 {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

/* contact */
.contact-behind {
    background: linear-gradient(135deg, #980201);
    /* border: 1px solid rgba(214, 175, 63, 0.42); */
    border-radius: 42px;
    margin: 0px 100px 40px 100px;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
}

.content4 img {
    background: #03264A;
    border-radius: 8px;
    padding: 16px;
    width: 58px;
}

.contactUSPage {
    background: #fff;
    border-top: 5px solid #980201;
    border-radius: 15px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16) !important;
    padding: 50px 20px;
    position: relative;
}

.content5 {
    padding-left: 14px;
}

.content5 h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.content5 h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
}

.content5 h3 a {
    color: inherit;
}

.contact-content {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 18px;
}

.contact-section .textt-primary {
    color: #fff !important;
}

.contact-section h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.contact-image-wrap {
    position: relative;
    isolation: isolate;
    max-width: 500px;
    width: 100%;
    padding: 18px;
}

.contact-image-wrap::before {
    content: "";
    position: absolute;
    inset: 9% 2% 4% 14%;
    background: #ffffffb3;
    border-radius: 28px;
    transform: rotate(-4deg);
    z-index: -2;
}

.contact-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #fff;
    border-radius: 30px;
    transform: rotate(3deg);
    z-index: -1;
}

.contact-image-wrap img {
    display: block;
    width: 100%;
    border: 8px solid rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-image-wrap:hover img {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}

.titleBar span {
    color: #980201;
    display: block;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 22px;
}

.form-label {
    color: #980201;
    font-weight: 700;
}

.form-control,
.form-select {
    background-color: #f8fafc !important;
    border: 1px solid rgba(7, 31, 77, 0.14) !important;
    color: #980201 !important;
    min-height: 55px;
}

.form-control:focus,
.form-select:focus {
    border-color: #980201 !important;
    box-shadow: 0 0 0 4px rgba(214, 175, 63, 0.18) !important;
}

.form-control::placeholder {
    color: #7a8494 !important;
}

option {
    background-color: #fff;
    color: #980201;
}

@media (max-width: 767px) {
    .contact-behind {
        border-radius: 24px;
        margin: 70px 5px;
        padding: 70px 0;
    }

    .contact-section {
        margin-bottom: 28px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-image-wrap {
        max-width: 420px;
        margin-top: 10px;
        padding: 12px;
    }

    .contact-image-wrap img {
        border-width: 6px;
        border-radius: 20px;
    }

    .titleBar span {
        font-size: 26px;
    }
}


/* about us page */
.other-banner {
    background-image: linear-gradient(rgb(0 0 0 / 58%), rgb(0 0 0 / 32%)), url(../images/other-banner.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-content {
    text-align: center;
    padding: 0 16px;
}

.new-content h3 {
    font-size: clamp(32px, 5vw, 55px);
    color: #fff;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
}

.new-content .breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 6px;
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    color: #fff !important;
    line-height: 1.4;
}

.breadcrumb-item a {
    color: #fff !important;
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

@media (max-width: 767px) {
    .other-banner {
        height: 380px;
        background-attachment: scroll;
    }

    .new-content h3 {
        font-size: 34px;
    }

    .breadcrumb-item {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .other-banner {
        height: 320px;
    }

    .new-content h3 {
        font-size: 28px;
    }

    .new-content .breadcrumb {
        max-width: 100%;
    }
}

.about-page {
    padding: 100px 0;
}

.about-imgg {
    position: relative;
    border-radius: 25px;
    border: 5px solid #980201;
    overflow: hidden;
}

.about-imgg img {

    /* border: 5px solid #03264A; */
    overflow: hidden;
    transform: scale(1);
    transition: all.3s;
    width: 100%;
}

.about-imgg:hover img {
    transform: scale(1.1);
    transition: all.3s;
}

/* our mission */
.mission {
    width: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    background-image: linear-gradient(135deg, #980201, rgb(75 142 187 / 61%) 100%), url(../images/download.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-content h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 0.18em;
}

.mission-content h3 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.12;
}

.mission-content p {
    margin-top: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.85;
}

.mission-box {
    background-color: rgba(255, 255, 255, 0.96);
    margin-top: 0;
    min-height: 100%;
    margin-bottom: 0;
    padding: 34px 28px;
    gap: 10px;
    border-radius: 26px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.mission-box-content h3 {
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 25px;
    margin-top: 25px;
    letter-spacing: 1px;

}

.mission-box-content h5 {
    margin-top: 0;
    font-size: 14px;
    margin-bottom: 0rem;
    color: #5d7381;
    font-weight: 500;
    line-height: 1.7;

}

.work-para {
    text-align: center;
}

.process-box {
    min-height: 100%;
    background: #980201;
    color: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(251, 88, 106, 0.22);
}

.process-box h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    margin-bottom: 14px;
}

.process-box h2 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 18px;
    color: #fff;
}

.process-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.process-gap {
    padding: 90px 0;

}

.process-title-wrap {
    padding: 20px 0 42px;
}

.process-gap h3 {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
}

.step-box {
    height: 100%;
    padding: 38px 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 24px 55px rgba(251, 88, 106, 0.22);

}

.step-box:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 88, 106, 0.55);
    box-shadow: 0 28px 65px rgba(251, 88, 106, 0.16);
}

.step-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #980201, #03264A);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 16px 35px rgba(251, 88, 106, 0.22);
}

.step-box h4 {
    margin: 22px 0 12px;
    font-size: 22px;
    font-weight: 800;
}

.step-icon i {
    color: #fff;
}

.step-box p {
    margin: 0;
    line-height: 1.75;
}

@media(max-width:992px) {
    .process-box {
        padding: 36px 28px;
    }

    .process-gap {
        padding: 70px 0;
    }

    .process-title-wrap {
        padding-top: 18px;
    }
}

@media(max-width:767px) {
    .process-box {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .process-gap {
        padding: 60px 0;
    }

    .step-box {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .step-box h4 {
        font-size: 20px;
    }

    .step-icon {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }
}

/* service detail page */
.services1 {
    position: relative;
    padding: 100px 0 82px;
    background: #fff;
    overflow: hidden;
}

.services1::before {
    content: "";
    position: absolute;
    right: -130px;
    top: 64px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(2, 150, 221, 0.08);
}

.services-content1 {
    position: relative;
    z-index: 1;
}

.services-content1 h3 {
    color: #980201;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}

.services-content1 p,
.innerServicesPage p,
.accordion-body {
    color: #6d7280;
    font-size: 16px;
    line-height: 1.8;
}

.services-image {
    position: relative;
    padding: 22px;
}

.services-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 390px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 24px 55px rgb(36 42 76 / 39%);
}

.aboutSection {
    position: relative;
    padding: 90px 0;
    background: #f4f7fb;
}

.allServicesList {
    position: sticky;
    top: 110px;
}

.allServicesListBody {
    padding: 34px 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgb(204 18 18 / 16%);
}

.allServicesListBody h2,
.innerServicesPage h1,
.titleBar h3 {
    color: #980201;
}

.allServicesListBody h2 {
    font-size: 28px;
}

.revSite-btn {
    color: #980201;
    font-weight: 700;
    background: #f4f7fb;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.revSite-btn:hover,
.revSite-btn.active {
    color: #fff;
    background: #03264A;
    border-left-color: #980201;
}

.innerServicesPage {
    padding: 42px;
    background: #fff;
    box-shadow: 0 18px 45px rgb(204 18 18 / 16%);
}

.innerServicesPage h1 {
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 18px;
}

.innerServicesPage .what-we-do-body {
    margin-top: 18px;
    margin-bottom: 0;
}

.services1,
.services-image,
.allServicesList,
.innerServicesPage,
.FAQs-box,
.accordion-item {
    will-change: transform;
}

@media (max-width: 991px) {

    .services1,
    .aboutSection,
    .fq-section {
        padding: 70px 0;
    }

    .services-content1 h3,
    .innerServicesPage h1,
    .titleBar h3 {
        font-size: 30px;
    }

    .allServicesList {
        position: static;
    }
}

@media (max-width: 575px) {

    .services1,
    .aboutSection,
    .fq-section {
        padding: 56px 0;
    }

    .services-image {
        padding: 12px;
    }

    .services-image::before {
        transform: translate(8px, 8px);
    }

    .services-image img,
    .FAQs-box {
        min-height: 300px;
    }

    .innerServicesPage {
        padding: 28px 20px;
    }
}


.fq-section {
    padding: 96px 0;
    background: #fff;
}

.FAQs-box {
    min-height: 520px;
    background-image: linear-gradient(rgba(36, 42, 76, 0.25), rgba(36, 42, 76, 0.25)), url(../images/faq-image.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
}

.fq-target img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.accordion-button {
    color: #980201 !important;
    font-weight: 700;
    background: #f4f7fb !important;
    box-shadow: none !important;
}

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

.accordion-body {
    background: #fff;
    border: 1px solid rgba(36, 42, 76, 0.08);
    border-top: 0;
}