﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

p {
    text-align: justify;
}

.fw {
    font-weight: bold;
}

.uline {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

    .uline::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50%;
        height: 3px;
        background-color: #e31e25;
    }

@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.element {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

    .element.left.animate {
        animation: slideFromLeft 2s cubic-bezier(.215, .61, .355, 1) forwards;
    }

    .element.right.animate {
        animation: slideFromRight 2s cubic-bezier(.215, .61, .355, 1) forwards;
    }

    .element.top.animate {
        animation: slideFromTop 2s cubic-bezier(.215, .61, .355, 1) forwards;
    }

    .element.bottom.animate {
        animation: slideFromBottom 2s cubic-bezier(.215, .61, .355, 1) forwards;
    }

.left-animation,
.right-animation,
.top-animation,
.bottom-animation {
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

    .left-animation.animate,
    .right-animation.animate,
    .top-animation.animate,
    .bottom-animation.animate {
        opacity: 1;
    }

@keyframes revealFromLeft {
    0% {
        clip-path: polygon(-100% 0, 0 0, 0 100%, -100% 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@keyframes revealFromRight {
    0% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@keyframes revealFromTop {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% -100%, 0% -100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@keyframes revealFromBottom {
    0% {
        clip-path: polygon(0 100%, 100% 100%, 100% 200%, 0% 200%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

.left-animation.animate {
    animation: revealFromLeft 3s cubic-bezier(.215, .61, .355, 1) forwards;
}

.right-animation.animate {
    animation: revealFromRight 3s cubic-bezier(.215, .61, .355, 1) forwards;
}

.top-animation.animate {
    animation: revealFromTop 3s cubic-bezier(.215, .61, .355, 1) forwards;
}

.bottom-animation.animate {
    animation: revealFromBottom 3s cubic-bezier(.215, .61, .355, 1) forwards;
}

.top-links a {
    color: white;
}

.nav-link {
    color: black !important;
}

.main-logo {
    width: 185px;
    height: 95px;
}

.top-links li {
    margin-top: 5px !important;
}

.navbar-nav .dropdown-item {
    background-color: #e0f4ff;
    margin-bottom: 2px;
    border-radius: 10px;
    word-break: break-word;
    white-space: normal;
    padding: 8px;
}

.navbar-nav .fixed-h-l {
    height: 300px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #265387 transparent;
}

    .navbar-nav .fixed-h-l::-webkit-scrollbar-track {
        background: transparent;
    }

@media (min-width: 992px) {
    .navbar-nav .mega-menu {
        width: 100%;
        max-width: 1000px;
        background: #e9f6fd;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: 100%;
        z-index: 999;
        display: none;
        animation: fadeIn 0.3s ease-in-out;
    }

    .navbar-nav .nav-item.dropdown:hover .mega-menu {
        display: block;
    }

    .navbar-nav .dropdown-image {
        width: 100%;
        height: 300px;
        border-radius: 8px;
    }

    .all-blog-head p {
        font-size: 19px;
    }

    .blog-heading p {
        text-align: center !important;
    }
}

.navbar-nav .dropdown-item:hover {
    background-color: #d2ecfa;
    color: #004080;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

ul {
    list-style-type: none;
}

.top-left-link ul, .top-right-link ul {
    margin-bottom: 0px !important;
}

.offcanvas a.nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    font-weight: bold;
}

.p-logo {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50px;
}

.floating-bttns menu {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 160px;
    height: 160px;
    z-index: 1051;
}

    .floating-bttns menu a {
        position: absolute;
        width: 70px;
        height: 70px;
        color: white;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

.floating-bttns .trigger {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    background: #e21e25;
    color: white;
    font-size: 1.4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1052;
}

    .floating-bttns .trigger i {
        transition: transform 0.3s ease;
    }

.floating-bttns menu.open .trigger i {
    transform: rotate(135deg);
}

.floating-bttns .action {
    opacity: 0;
    pointer-events: none;
    transform: translate(0, 0);
}

.floating-bttns menu.open .action {
    opacity: 1;
    pointer-events: auto;
}

    .floating-bttns menu.open .action:nth-child(1) {
        transform: translate(-20px, 105px);
    }

    .floating-bttns menu.open .action:nth-child(2) {
        transform: translate(-10px, 35px);
    }

    .floating-bttns menu.open .action:nth-child(3) {
        transform: translate(40px, -15px);
    }

    .floating-bttns menu.open .action:nth-child(4) {
        transform: translate(107px, -35px);
    }

.floating-bttns .action i {
    font-size: 20px;
}

.floating-bttns .link-panel {
    position: fixed;
    bottom: 220px;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 1050;
}

    .floating-bttns .link-panel.active {
        display: flex;
    }

    .floating-bttns .link-panel a {
        background-color: #1976d2;
        color: white;
        border: 1px solid #1976d2;
        padding: 8px 14px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 14px;
        white-space: nowrap;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        transition: background 0.3s, color 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

footer {
    background-color: #1b4779;
    color: white;
    font-size: 16px;
}

    footer a {
        color: white;
    }

    footer li {
        list-style-type: none !important;
        padding-bottom: 7px;
        display: flex;
        align-items: flex-start;
        gap: 6px;
    }

    footer i {
        min-width: 20px;
    }

    footer .ccc i {
        margin-top: 5px;
    }

    footer .last-i i {
        font-size: 22px;
    }

.top-links .top-right-link i {
    font-size: 19px;
}

@media screen and (max-width: 575px) {
    ul {
        padding: 0px !important;
    }

    .no-transform {
        transform: translateY(0) !important;
    }

    .no-center {
        text-align: left !important;
    }

    .slider-images {
        height: 390px !important;
    }

    .aboutus-bg {
        height: 360px !important;
    }

    .f-w {
        width: 100% !important;
        margin: 0px !important;
        padding: 0px !important;
    }

    .pt-bttn {
        width: 100% !important;
    }

    .top-left-link li, .no-top-s, .top-right-link li {
        margin-top: 0px !important;
    }

    .top-left-link ul {
        flex-direction: column;
        gap: 0px !important;
    }

    .top-right-link {
        justify-content: center !important;
    }

    .r-d {
        display: flex !important;
        flex-direction: column-reverse;
    }

    .main-big-image .main-image {
        height: 340px !important;
    }

    .left-one .col-2 {
        padding: 0px !important;
    }

    .small-images {
        height: 60px !important;
    }

    .s-r-w {
        display: flex;
    }

        .s-r-w .all-small-c {
            width: 20% !important;
        }

    .ws {
        white-space: nowrap !important;
    }

    .sec-pop-s {
        display: flex;
        flex-direction: column-reverse !important;
    }

    .s-reverse {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .all-blogs-con img.f-w.right-animation, .all-blogs-con img.f-w.left-animation, .all-blogs-con .yu-img {
        height: 210px !important;
    }

    .main-d-image, .main-ptimg {
        height: 200px !important;
    }

    .t-imgs {
        height: 200px !important;
    }

    .contact-f-img {
        height: 250px !important;
    }

    .top-right-link ul {
        margin-top: 4px !important;
    }
}

@media screen and (min-width: 576px) {
    .esc .col-sm-4 {
        width: 32% !important;
    }

    .four-box .col-sm-4 {
        width: 32% !important;
    }

    .all-p-list {
        transform: translateY(-30%);
        border-radius: 10px;
        box-shadow: 0 0 5px #bcbae9;
    }

    .pp-form {
        padding-bottom: 130px !important;
    }

    .two-pt-link .fixed-w-tp {
        width: 49% !important;
        transform: translateY(-50%);
    }

    .tp-main {
        margin-top: -40px;
    }

    .all-d-tab-container .col-sm-2 {
        width: 19.5% !important;
    }

    .side-b {
        border-right: 1px solid #a2a2a2;
    }

    .three-pdf .col-sm-4 {
        width: 32% !important;
    }

    .exx-s .col-sm-3 {
        width: 23% !important;
    }

    .top-left-link .b-l {
        padding-right: 10px;
        border-right: 1px solid white;
        height: 19px;
    }

    .sub-product-list .col-sm-2 {
        width: 19% !important;
    }

    .image-container {
        max-width: 57% !important;
    }

    .pt-main-three-points .col-sm-4 {
        width: 32%;
    }

    .c-info-sec .col-sm-4 {
        width: 32% !important;
    }

    .top-right-link h6 {
        margin-top: 4px;
    }
}

@media screen and (min-width: 576px) and (max-width: 800px) {
    .top-right-link {
        display: flex !important;
        flex-direction: column !important;
    }

        .top-right-link ul {
            padding: 0px !important;
            justify-content: space-between !important;
            gap: 10px !important;
        }
}

@media screen and (max-width: 767px) {
    .side-list li {
        border-radius: 50px !important;
    }

    .about-products .ppp {
        width: 100% !important;
    }
}

@media screen and (min-width: 768px) {
    .s-rl {
        padding-inline: 35px !important;
    }

    .about-products .ppp {
        transform: translate(-10%, -10%);
    }

    .col-md-4:first-child .side-list li::after {
        content: "";
        position: absolute;
        right: -20px;
        top: 0;
        height: 100%;
        width: 20px;
        background: transparent;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        background-color: #1d3d72;
    }

    .col-md-4:last-child .side-list li::after {
        content: "";
        position: absolute;
        left: -20px;
        top: 0;
        height: 100%;
        width: 20px;
        background: transparent;
        clip-path: polygon(100% 0, 0 50%, 100% 100%);
        background-color: #1d3d72;
    }

    .side-list li {
        position: relative;
        z-index: 2;
    }

    .all-bptl .r-side {
        transform: translateY(10%);
    }
}

@media screen and (min-width: 576px) and (max-width: 991px) {
    .all-blogs-con img.f-w.right-animation, .all-blogs-con img.f-w.left-animation {
        height: 250px !important;
        width: 45% !important;
    }

    .all-blogs-con .yu-img {
        height: 200px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .apimg {
        height: 480px !important;
    }
}

@media screen and (max-width: 991px) {
    .offcanvas {
        background-color: #295d97 !important;
    }

        .offcanvas a.nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
            color: white !important;
        }

    .r-d2 {
        display: flex !important;
        flex-direction: column-reverse;
    }

    .f-w2 {
        width: 100% !important;
        margin: 0px !important;
        padding: 0px !important;
    }

    .c-c {
        color: white;
    }

    .lb-img {
        height: 320px !important;
    }

    .s-reverse2 {
        display: flex !important;
        flex-direction: column-reverse !important;
    }
}

@media screen and (min-width: 992px) {
    .all-about-p .col-lg-6 {
        width: 45% !important;
    }

    .all-about-p .col-lg-4 {
        width: 30% !important;
    }

    .all-about-p .col-lg-2 {
        width: 25% !important;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .main-logo {
        width: 120px !important;
        height: 90px !important;
        margin-left: -15px !important;
    }

    .p-logo {
        width: 40px !important;
        height: 40px !important;
    }

    .c-c {
        font-size: 9px !important;
    }
}

@media screen and (max-width: 1200px) {
    .circle {
        height: 300px !important;
    }
}

.slider-images {
    width: 100%;
    height: 560px;
    transform: scale(1);
}

.carousel-item.active .slider-images {
    animation: zoomOut 4s ease-in-out forwards;
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

html.noscroll, body.noscroll {
    overflow: hidden;
    height: 100%;
}

.auto-pu {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

    .auto-pu.show {
        display: flex;
    }

.auto-pu-content {
    position: relative;
    background-color: #f0f6f8;
    padding: 10px;
    border-radius: 0.75rem;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    opacity: 0;
    transform: scale(0.5);
    animation: popup-animate 0.5s ease-out forwards;
    max-height: 90vh;
    overflow: hidden;
}

.auto-pu .height-p-c {
    max-height: 55vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

@keyframes popup-animate {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.auto-pu .close-btn {
    position: absolute;
    top: 0;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #1d3d72;
    cursor: pointer;
    line-height: 1;
}

.auto-pu .tab {
    overflow: hidden;
}

    .auto-pu .tab button {
        background-color: #1d3d72;
        color: white;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 10px;
        transition: 0.3s;
        flex: 1;
        font-weight: bold;
    }

        .auto-pu .tab button.active {
            background-color: #daebf2;
            color: #1d3d72;
        }

.auto-pu .tabcontent {
    display: none;
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.auto-pu .c-info a {
    color: black;
}

.auto-pu .c-info i {
    color: #1d3d72;
    font-size: 24px;
}

.auto-pu .c-info .all-inf {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 17px;
}

.auto-pu .pp-c {
    width: 90px;
    height: 85px;
    background-color: white;
    border-radius: 50px;
}

.three-pdf .row {
    transform: translateY(-30%);
    z-index: 999;
    position: relative;
}

.three-pdf .col-sm-4 {
    background-color: #d0e1e6;
    margin-bottom: 10px;
    box-shadow: 0 0 5px #b3b3b3;
}

.three-pdf i {
    font-size: 20px;
    background-color: #295d97;
    color: white;
    padding: 10px;
    border-radius: 50px;
    transform: translateY(-50%);
    border: 5px solid #d0e1e6;
}

.three-pdf a {
    color: black !important;
    font-weight: bold;
}

.three-pdf p {
    text-align: center;
}

.our-portfolio .tabcontent {
    display: none;
}

.our-portfolio .tab {
    position: relative;
    overflow: visible;
    display: flex;
    gap: 15px;
    flex-direction: row;
}

.our-portfolio button.active {
    background-color: #393186;
    position: relative;
    z-index: 1;
}

    .our-portfolio button.active::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #393186;
        z-index: 0;
    }

.our-portfolio button {
    background-color: #295d97;
    color: white;
    padding: 10px;
    padding-inline: 30px;
    border: none;
    font-weight: bold;
    border-radius: 10px;
}

.our-portfolio .hover-container a {
    color: white !important;
}

.expertise-images {
    width: 100%;
    height: 360px;
}

.expertise-para {
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.esc .col-sm-4 {
    padding: 0px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    text-align: center;
    background: #e1edff;
}

.esc i {
    font-size: 40px;
    background-color: #1b4779;
    padding: 10px;
    color: white;
    border-radius: 50%;
    transform: translateY(-70%);
}

.esc .s-rl-content {
    padding: 15px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.esc h4 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #1d3d72;
    text-align: center;
}

.esc p {
    color: #4f4e4e;
    font-weight: 500;
    padding: 15px;
}

.all-partners .swiper {
    width: 90%;
    height: 160px;
    margin: 50px auto;
}

.all-partners .swiper-slide {
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .all-partners .swiper-slide img {
        width: 98%;
        height: 95%;
        border-radius: 4px;
        box-shadow: 0 0 10px #b8b8b8;
    }

.same-size {
    width: 100%;
    height: 200px;
}

.diff-size {
    width: 100%;
    height: 400px;
}

.diagonal-box {
    background: #f6f6f6;
}

.wcu-src {
    text-align: center;
    box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
    padding: 15px;
    margin-bottom: 15px;
    background-color: #295d97;
    color: white;
}

    .wcu-src i {
        font-size: 20px;
        margin-bottom: 10px;
    }

.four-box .element {
    position: relative;
    overflow: hidden;
    background-color: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: color 0.3s ease;
    z-index: 0;
}

    /* Bottom-to-top background fill */
    .four-box .element::before {
        content: '';
        position: absolute;
        bottom: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #265387;
        z-index: -2;
        transition: bottom 0.6s ease;
    }

    /* Border from center */
    .four-box .element::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0%;
        height: 0%;
        border: 2px solid #ffffff;
        border-radius: 8px;
        transform: translate(-50%, -50%);
        z-index: -1;
        transition: width 0.6s ease, height 0.6s ease;
    }

    .four-box .element:hover::before {
        bottom: 0;
    }

    .four-box .element:hover::after {
        width: 100%;
        height: 100%;
    }

.four-box .shine {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(25deg);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.four-box .element:hover .shine {
    animation: shine-move 1.6s ease forwards;
}

@keyframes shine-move {
    0% {
        transform: translate(-150%, -150%) rotate(25deg);
        opacity: 0;
    }

    30% {
        opacity: 0.5;
    }

    100% {
        transform: translate(150%, 150%) rotate(25deg);
        opacity: 0;
    }
}

.four-box .element:hover {
    color: white;
}

    .four-box .element:hover h5,
    .four-box .element:hover p,
    .four-box .element:hover i {
        color: white;
    }

.four-box .element i {
    color: #265387;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.four-box .element h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.four-box .element p {
    transition: color 0.3s ease;
}

@media (min-width: 992px) {
    .image-wrapper {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.img-fixed {
    max-width: 280px;
}

.four-box .col-sm-4 {
    background-color: #efeded;
    margin-bottom: 15px;
    padding: 16px;
    text-align: center;
    transition: all ease-in-out 0.5s;
}

    .four-box .col-sm-4:hover {
        box-shadow: 0 0 10px rgb(66 63 63 / 51%);
        border-radius: 10px;
    }

.four-box i {
    color: #295d97;
    margin-bottom: 20px;
}

.four-box p {
    text-align: center;
    margin-top: 10px;
}

.expertise-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

    .expertise-slider a {
        background-color: #295d97;
        color: white;
        padding: 10px;
    }

.expertise-slides {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .expertise-slides::-webkit-scrollbar {
        display: none;
    }

.expertise-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

    .expertise-slide img {
        width: 100%;
        height: 300px;
    }

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}

.dot {
    width: 10px;
    height: 10px;
    background: #295d97;
    border-radius: 999px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

    .dot.active {
        width: 35px;
        opacity: 1;
    }

.swiper {
    margin: 20px auto;
}

.swiper-slide {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img {
        width: 100%;
        height: 300px;
        display: block;
    }

.hover-container {
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 51%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-text {
    color: white;
    font-size: 20px;
    text-align: center;
}

.hover-container a {
    color: white;
    font-weight: bold;
}

.hover-container:hover .overlay {
    opacity: 1;
}

.circle {
    width: 100%;
    height: 400px;
    border-radius: 50%;
    background: #1b4779;
    border: 6px solid #002650;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.list .item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

    .list .item.show {
        opacity: 1;
        transform: translateX(0);
    }

.number {
    width: 36px;
    height: 36px;
    background: #1b4779;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.text {
    background: var(--color);
    padding: 10px 20px;
    color: #fff;
    border-radius: 40px;
    font-weight: bold;
    width: 100%;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .text:hover {
        transform: scale(1.05);
    }

.item:nth-child(5) .text {
    color: #000;
}

.hex-center {
    width: 100%;
    max-width: 320px;
    height: 260px;
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: #365b9d;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    margin: 0 auto;
    box-shadow: 0 0 8px #162f56;
}

    .hex-center img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.side-list li {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #1d3d72 25%, #1d3d72 100%);
    padding: 10px 16px;
    margin-bottom: 14px;
    cursor: default;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 40px;
    background: #9bb9e3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-right: 12px;
}

    .icon-wrapper img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

.main-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: #e1e5ec;
    user-select: none;
}

.all-p-list .owl-nav {
    display: none;
}

.all-p-list i {
    background-color: white;
    color: #1d3d72;
    font-size: 40px;
    padding: 20px;
    border-radius: 10px;
}

.all-p-list h5 {
    color: white;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.two-pt-link .fixed-w-tp {
    background-color: #c8d7ff;
    border-radius: 10px;
    box-shadow: 0 0 2px #969697;
}

.all-products .col-sm-3 {
    text-align: center;
    margin-bottom: 15px;
}

.all-products a {
    font-size: 20px;
    color: #1d3d72 !important;
    font-weight: bold;
}

.all-products-images {
    width: 100%;
    height: 260px;
}

.about-products .col-sm-4 h4 {
    background-color: #e4eefd;
    padding-block: 20px;
    font-weight: bold;
}

.about-products .ppp {
    background-color: #1b4779;
    color: white;
    border-radius: 10px;
    padding: 10px;
}

.tp-main .col-sm-4:hover {
    background-color: #e9f0fb;
    box-shadow: 0 0 5px #c8d7ff;
    border-radius: 6px;
}

.main-big-image {
    position: relative;
}

    .main-big-image .main-image {
        width: 100%;
        height: 430px;
    }

.mySlides {
    display: none;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 55%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.numbertext {
    color: #f2f2f2;
    font-size: 17px;
    font-weight: bold;
    text-shadow: 0 0 4px black;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.small-images {
    width: 100%;
    height: 72px;
    border-radius: 5px;
    padding: 4px;
}

    .small-images.active {
        border: 1px solid #1d3d72;
    }

.all-about-p .middle-one p {
    font-size: 19px;
}

.all-side-blogs {
    background-color: #f4f3f8;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 10px;
    display: inline-block;
    width: 100%;
}

    .all-side-blogs a {
        color: #1d3d72;
        overflow: hidden;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: 17px;
        font-weight: bold;
    }

    .all-side-blogs .slide-blog-imgs {
        width: 50px;
        height: 50px;
        float: left;
        margin-right: 9px;
    }

.all-d-tab-container {
    overflow: hidden;
    display: flex !important;
    justify-content: space-between;
}

    .all-d-tab-container button {
        float: left;
        transition: 0.3s;
        cursor: pointer;
    }

.all-d-panel {
    display: none;
}

.all-pro-des .col-sm-2 {
    padding: 0px;
}

.all-d-tab-btn {
    border: none;
    background-color: white;
    color: #184363;
    font-weight: bold;
    padding: 10px;
    font-size: 19px;
    width: 100%;
}

    .all-d-tab-btn.active {
        background-color: #edf4f6;
        color: #15a9e3;
        border-radius: 10px;
    }

.p-form {
    background: #1d3d72;
    box-shadow: 0 0 6px #a9a9a9;
    border-radius: 4px;
    padding: 15px;
    padding-block: 30px;
}

.similar-section .swiper-container-wrapper {
    margin: auto;
    overflow: hidden;
}

.similar-section .swiper {
    width: 100%;
    padding-block: 10px;
    margin: 0px;
}

.similar-section .swiper-slide {
    text-align: left;
}

.similar-section .swiper-button-prev,
.similar-section .swiper-button-next {
    color: #000;
    display: none;
}

.similar-section .swiper-button-visible {
    display: block !important;
    top: 43%;
}

.similar-section .similar-imgs {
    width: 100%;
    height: 200px;
}

.similar-section .similar-content {
    padding: 10px;
}

    .similar-section .similar-content h5 {
        color: #4b4a48;
        font-size: 16px;
        overflow: hidden;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .similar-section .similar-content a {
        background-color: #d0e1e6;
        color: #1976d2;
        font-weight: bold;
        text-align: center;
        width: 100% !important;
        display: inline-block;
        padding: 2px;
        border-radius: 4px;
    }

.Usage-inf .accordion {
    background-color: #f4f3f8;
    color: #184363;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 19px;
    position: relative;
    transition: background-color 0.3s;
}

    .Usage-inf .accordion::after {
        content: '+';
        color: #184363;
        font-size: 18px;
        position: absolute;
        right: 20px;
        transition: 0.3s;
    }

    .Usage-inf .accordion.active::after {
        content: '−';
        color: #184363;
    }

.Usage-inf .panel {
    padding: 15px;
    display: none;
    font-size: 15px;
    overflow: hidden;
}

.htq {
    width: 125px;
    height: 100px;
    float: left;
    margin-right: 15px;
}

.all-in a {
    color: black !important;
}

.h-notifications a {
    color: black;
}

.notifications-item {
    background-color: white;
    box-shadow: 0 0 10px rgb(185 185 185);
    padding: 10px;
    border-radius: 4px;
}

.nn-sec h5, .nn-sec p {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.exx-s .col-sm-3 {
    color: white;
    background-color: #1b4779;
    font-weight: bolder;
    padding: 10px;
    border: 4px solid white;
    border-radius: 10px;
}

.sub-product-list .col-sm-2:hover {
    background-color: #f1f5fb;
}

.sub-product-list .col-sm-2 a {
    color: #1d3d72;
    padding: 5px;
}

.sub-product-list .col-sm-2 {
    box-shadow: 0 0 2px black !important;
    padding: 10px;
    margin-bottom: 10px;
    background-color: white;
    border-radius: 10px;
}

.sub-product-list .main-link {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: left !important;
}

.all-breadcumber-sec {
    background: #dde6ff;
}

    .all-breadcumber-sec a, .all-breadcumber-sec h3 {
        color: #1d3d72;
    }

.lb-img {
    width: 100%;
    height: 490px;
    display: block;
}

.image-container {
    position: relative;
    width: 100%;
}

.image-shadow-overlay {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -80px 100px black;
}

.img-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    padding: 15px;
}

.all-blog-head .two-bttns {
    background-color: #e31e25;
    font-weight: bold;
    color: white;
    padding: 8px;
    border-radius: 4px;
    padding-inline: 15px;
}

.lb-r-secs {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    box-shadow: 0 0 5px #9e9c9c;
}

.lb-imgs {
    width: 180px;
    float: right;
    margin-left: 15px;
    height: 162px;
}

.lb-r-secs a {
    color: black;
}

.lb-r-secs h4, .lb-r-secs i {
    color: #1d3d72 !important;
}

.lb-r-p {
    padding: 10px;
}

.lb-r h4, .lb-r h6 {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.lb-l h2, .lb-l h4 {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.lb-r.scroll-box {
    overflow: hidden;
    position: relative;
}

.lb-r .scroll-inner {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

.lb-r-secs {
    flex-shrink: 0;
}

.t-imgs {
    width: 100%;
    height: 400px;
}

.tranding-blogs h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #295d97;
}

.tranding-blogs .top-para {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tranding-blogs a {
    background-color: #1d3d72;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 4px;
}

.tranding-blogs .slider-slide {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
}

.tranding-blogs .col-md-6.animate__animated.animate__backInRight {
    padding: 0px;
}

.popular-images .swiper-slide {
    position: relative;
    overflow: hidden;
}

.popular-images .popular-imgs {
    width: 100%;
    height: 300px;
    display: block;
}

.popular-images .show-popular-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    text-align: left;
}

    .popular-images .show-popular-img a {
        color: white;
        text-shadow: 2px 2px 3px #e31e25;
        text-decoration: none;
        font-weight: 600;
    }

    .popular-images .show-popular-img p {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        margin: 0;
    }

.popular-images .swiper-slide:hover .show-popular-img p {
    opacity: 1;
    max-height: 100px;
    margin-top: 5px;
}

.popular-video-sec .swiper-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
    pointer-events: none;
}

.popular-video-sec .swiper-button-prev2,
.popular-video-sec .swiper-button-next2,
.popular-video-sec .swiper-pagination2 {
    position: static;
    pointer-events: auto;
    color: #333;
    font-size: 20px;
    cursor: pointer;
}

.popular-video-sec .swiper-button-prev:after, .popular-video-sec .swiper-button-next:after {
    font-size: 12px;
}

.All-Blog-link {
    height: 1000px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.All-Blog-link {
    scrollbar-color: #1d3d72 transparent;
}

.Blogs-imgs {
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 9px;
}

.All-Blog-items {
    display: inline-block;
    width: 100%;
    box-shadow: 0 0 5px #c0c0c0;
    padding: 7px;
    margin-bottom: 10px;
    border-radius: 4px;
    background: linear-gradient(96.44deg, #c5d5ff, #e2f0ff 51.56%, #d7d4ff);
}

    .All-Blog-items a {
        color: #1d3d72;
        font-weight: bold;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

.popular-videos {
    width: 100%;
    height: 300px;
}

.pdf-link {
    display: flex;
    align-items: center;
    position: relative;
}

.pdf-text {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-left: 3px;
    white-space: nowrap;
}

.pdf-link:hover .pdf-text {
    opacity: 1;
    transform: translateX(0);
}

.bpt-sec .card-body {
    height: 550px;
    overflow-y: scroll;
    scrollbar-width: none;
    background-color: #ebf0f6;
    border-radius: 0px !important;
}

.bpt-sec ul.drop-item {
    padding-left: 0px !important;
}

.bpt-sec .d-inline-flex {
    background-color: #1d3d72;
    width: 100%;
    padding: 5px;
    color: white;
}

.bpt-sec .drop-item li {
    background-color: #d2e4fa;
    font-weight: bold;
    padding: 6px;
    margin-bottom: 10px;
}

    .bpt-sec .drop-item li a {
        color: #1d3d72;
    }

.bpt-sec .d-inline-flex a {
    color: white;
}

.similar-blogs {
    width: 100%;
    height: 200px !important;
}

.swiper-slide {
    position: relative !important;
    overflow: visible !important;
    z-index: 1;
}

.s-b-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.similar-blogs {
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.similar-blog-sec .s-b-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}

.similar-blog-sec .s-b-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    text-align: center;
    z-index: 2;
    width: 100%;
    pointer-events: none;
}

    .similar-blog-sec .s-b-content a {
        color: white;
        font-weight: bold;
        text-shadow: 0 0 4px black;
        padding: 5px 10px;
        transition: color 0.4s ease;
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        pointer-events: auto;
    }

.similar-blog-sec .s-b-wrapper:hover .s-b-content {
    top: 73%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.68) 100%);
    border-radius: 0 0 5px 5px;
    pointer-events: auto;
}

.similar-blog-sec .s-b-wrapper:hover .s-b-overlay {
    top: 85%;
    transform: translateX(-50%);
    background: transparent;
    backdrop-filter: none;
}

.similar-blog-sec .swiper {
    padding-bottom: 90px;
}

.similar-blog-sec .swiper-pagination {
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.similar-blog-sec .swiper-button-prev,
.similar-blog-sec .swiper-button-next {
    width: 10px;
    height: 10px;
    color: white;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    bottom: 45px;
    top: auto !important;
    z-index: 11;
}

    .similar-blog-sec .swiper-button-next::after, .similar-blog-sec .swiper-button-prev::after {
        font-size: 14px;
        background-color: #1d3d72;
        padding: 10px;
    }

.similar-blog-sec .swiper-button-prev {
    left: calc(50% - 70px);
}

.similar-blog-sec .swiper-button-next {
    right: calc(50% - 70px);
}

.pt-main-three-points .col-sm-4 {
    background: #295d97;
    color: white;
    position: relative;
    padding: 20px;
    padding-top: 45px;
    border-radius: 10px;
    transition: color 0.3s ease;
    z-index: 1;
}

.three-main-points {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50px;
    position: absolute;
    transform: translate(-45%, -98%);
    border: 1px solid #295d97;
}

.pt-main-three-points .col-sm-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #e6f0ff;
    z-index: 0;
    transition: height 0.4s ease;
}

.pt-main-three-points .col-sm-4:hover::before {
    height: 100%;
}

.pt-main-three-points .col-sm-4 h4,
.pt-main-three-points .col-sm-4 p {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.pt-main-three-points .col-sm-4:hover h4,
.pt-main-three-points .col-sm-4:hover p {
    color: black;
}

.more-p th {
    background-color: #1d3d72 !important;
    color: white !important;
}

.more-p td {
    background-color: #e0f0ff !important;
}

.p-f .mySwiper2 {
    width: 100%;
    position: relative;
}

    .p-f .mySwiper2 .swiper-slide {
        text-align: center;
        background: #fff;
        transition: 0.3s ease;
    }

.p-f .swiper-nav2 {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

    .p-f .swiper-nav2 button {
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        pointer-events: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

        .p-f .swiper-nav2 button:hover {
            background-color: #007bff;
        }

.p-f .pt-all-con {
    background-color: #d0e1e6;
    padding: 8px;
}

    .p-f .pt-all-con a {
        color: #1d3d72;
        font-weight: bold;
    }

.t-f .swiper {
    position: relative;
    padding-bottom: 60px;
}

.t-f .swiper-nav {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 10;
}

.t-f .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.t-f .pt-imgs {
    width: 100%;
    height: 250px !important;
}

.t-f .pt-all-con {
    padding: 10px;
    box-shadow: 1px 2px 5px #acacac;
    background-color: #deedff;
    text-align: center;
}

    .t-f .pt-all-con a {
        color: #1d3d72;
        font-weight: bold;
        overflow: hidden;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

.c-info-sec .col-sm-4 {
    background-color: #1976d2;
    color: white;
    padding: 10px;
    padding-block: 20px;
    border-radius: 15px;
}

.cu a {
    color: black;
}

.c-info-sec a {
    color: white;
}

.all-bptl a {
    text-align: center;
    color: #1d3d72;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    padding: 10px;
}

.pro-list-imgs {
    width: 100%;
    height: 300px;
}

.all-bptl .swiper-slide {
    border-radius: 10px !important;
    overflow: hidden !important;
}
