.mr-about {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
/*    background: #f7f7f7;*/
}

.mr-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}

.mr-row {
    display: flex;
    align-items: center;
    gap: 69px;
    flex-wrap: wrap;
}

/*==============================
LEFT IMAGE SIDE
==============================*/

.mr-about-left {
    flex: 1 1 48%;
    position: relative;
}

.mr-about-img {
    position: relative;
    border: 8px solid #143b8d;
    border-radius: 180px 180px 180px 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.mr-about-img {
    position: relative;
    border-radius: 180px 180px 180px 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    /*    height: 690px;*/
}

/* IMAGE */

.mr-about-img img {
    width: 100%;
    display: block;
/*    border-radius: 180px 180px 180px 0;*/
}

/* ANIMATED BORDER */

.mr-about-img::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    /*    border:3px solid #143b8d;*/
    border-radius: 190px 190px 190px 0;
    z-index: 2;
    pointer-events: none;

    animation: borderMove 4s linear infinite;
}

/* OPTIONAL EXTRA GLOW */

.mr-about-img::after {
    content: "";
    position: absolute;
    inset: -15px;
    border-radius: 200px 200px 200px 0;
    background: rgba(20, 59, 141, 0.08);
    z-index: -1;
}

/* ANIMATION */

@keyframes borderMove {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* EXPERIENCE BOX */

.mr-exp-box {
    position: absolute;
    left: -40px;
    bottom: 80px;
    background: #fff;
    padding: 25px 30px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.mr-exp-box h2 {
    font-size: 62px;
    line-height: 1;
    color: #143b8d;
    margin-bottom: 10px;
    font-weight: 700;
}

.mr-exp-box p {
    color: #143b8d;
/*    font-size: 16px;*/
    font-weight: 500;
}

/*==============================
RIGHT CONTENT
==============================*/

.mr-about-right {
    flex: 1 1 45%;
}

.mr-subtitle {
    color: #143b8d;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.mr-heading {
    font-size: 48px;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.mr-text {
    color: #555;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* FEATURE BOX */

.mr-feature-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.mr-feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
/*    background: #efefef;*/
    padding: 10px 5px;
    transition: 0.4s;
}

.mr-feature-box:hover {
    transform: translateY(-5px);
   /* background: #143b8d; */
    color: #000;
}


.mr-feature-box:hover h4 {
    color: #000;
}
.mr-feature-box:hover i {
    color: #fff
}

.mr-feature-box i {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    background: #143b8d;
    color: #fff;
    font-size: 20px;
    transition: 0.4s;
}

.mr-feature-box h4 {
    font-size: 20px;
    color: #111;
    transition: 0.4s;
    font-weight: 600;
}

/* BUTTON */

.mr-btn {
    display: inline-block;
/*    background: #143b8d;*/
    background: #efefef;
    color: #000;
    text-decoration: none;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.4s;
}

.mr-btn:hover {
    background: #0f2e6e;
    color: #fff;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1199px) {

    .mr-heading {
        font-size: 40px;
    }

    .mr-about-img img {
        height: 550px;
    }
}

@media(max-width:991px) {

    .mr-row {
        flex-direction: column;
        gap: 50px;
    }

    .mr-about-left,
    .mr-about-right {
        width: 100%;
        flex: 100%;
    }

    .mr-about-img img {
        height: auto;
    }

    .mr-exp-box {
        left: 20px;
        bottom: 20px;
    }
}

@media(max-width:767px) {

    .mr-about {
/*        padding: 70px 0;*/
        padding: 40px 0;
    }

    .mr-heading {
        font-size: 34px;
    }

    .mr-feature-wrap {
        grid-template-columns: 1fr;
    }

    .mr-feature-box h4 {
        font-size: 18px;
    }

    .mr-about-img {
        border-radius: 80px 80px 80px 0;
    }

    .mr-exp-box {
        width: 180px;
        padding: 20px;
        display: none;
    }

    .mr-exp-box h2 {
        font-size: 48px;
    }

    .mr-exp-box p {
/*        font-size: 16px;*/
    }
}

@media(max-width:575px) {

    .mr-heading {
        font-size: 28px;
    }

    .mr-text {
        font-size: 13px !important;
    }

    .mr-feature-box {
        padding: 18px 15px;
    }

    .mr-btn {
        width: 100%;
        text-align: center;
        color: #fff;
    }

    .mr-exp-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }
}



/*our -prod*/
.sb-products {
    position: relative;
    padding: 100px 0;
    background: #02458b;
    overflow: hidden;
}

/* BACKGROUND DESIGN */

.sb-products::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.sb-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* SECTION TITLE */

.sb-sec-title {
    text-align: center;
    margin-bottom: 70px;
}

.sb-sec-title span {
    color: #fff;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.sb-sec-title h2 {
    color: #fff;
    font-size: 42px;
    margin-top: 12px;
    font-weight: 700;
}

/* GRID */

.sb-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 85px 25px;
}

/* CARD */

.sb-product-card {
    position: relative;
    background: #fff;
    padding: 90px 25px 35px;
    text-align: center;
    transition: 0.4s;
    overflow: visible;
}

.sb-product-card:hover {
    transform: translateY(-10px);
}

/* CIRCLE IMAGE */

.sb-product-img {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    background: #d9d9d9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sb-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PRODUCT CONTENT */

.sb-product-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 18px;
    font-weight: 700;
}

.sb-product-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* BORDER LINE */

.sb-product-card .line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 18px 0;
}

/* ARROW */

.sb-arrow {
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    background: #143b8d;
    color: #fff;
    display: inline-block;
    transition: 0.4s;
}

.sb-product-card:hover .sb-arrow {
    background: #0d2d6d;
    transform: translateX(5px);
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:1199px) {

    .sb-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:991px) {

    .sb-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sb-sec-title h2 {
        font-size: 36px;
    }
}

@media(max-width:767px) {

    .sb-products {
        padding: 70px 0;
    }

    .sb-product-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .sb-sec-title {
        margin-bottom: 90px;
    }

    .sb-sec-title h2 {
        font-size: 30px;
    }

    .sb-product-card {
        padding: 85px 20px 30px;
    }
}






/*Our Client*/

.client-section {
    width: 100%;
    padding: 80px 0;
    /*        background: #f7f9fc;*/
    overflow: hidden;
}

.client-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}

/* TITLE */

.client-title {
    text-align: center;
    margin-bottom: 60px;
}

.client-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #002b7f;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.client-line {
    width: 90px;
    height: 2px;
    background: #002b7f;
    margin: auto;
    position: relative;
}

.client-line::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #002b7f;
    border-radius: 50%;
    background: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* SLIDER */

.client-slider {
    width: 100%;
    overflow: hidden;
}


.client-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}


.client-slider .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CLIENT BOX */

.client-box {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #e8e8e8;
}

/*
    .client-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
*/
.client-box:hover {
    transform: translateY(-6px);
    transition: 0.4s ease;
}

.client-box img {
    width: 100%;
    max-width: 170px;
    height: 55px;
    object-fit: contain;
    margin: auto;
    transition: 0.4s ease;
    /*        filter: grayscale(100%);*/
    /*        opacity: 0.7;*/
}


.client-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* MOBILE */

@media(max-width:767px) {

    .client-section {
        padding: 50px 0;
    }

    .client-title {
        margin-bottom: 40px;
    }

    .client-title h2 {
        font-size: 24px;
        letter-spacing: 2px;
        line-height: 1.5;
    }

    .client-box {
        padding: 25px 15px;
    }

    .client-box img {
        max-width: 130px;
        height: 70px;
    }
}



/*industrie we serve*/


.sector-slider {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
}

.sector-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.sector-slider .swiper-slide {
    height: auto;
    display: flex;
}

/* BOX */

.sector-box {
    width: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
    transition: 0.4s;
}

/* IMAGE */

.sector-img {
    position: relative;
    overflow: hidden;
}

.sector-img img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

/* HOVER IMAGE */

.sector-img:hover img {
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    /*    transform: scale(1.05);*/
}

/* OVERLAY */

.sector-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 110px;
    background: linear-gradient(to top,
            rgba(0, 33, 92, 0.85),
            rgba(0, 33, 92, 0));
    transition: all 0.5s ease;
}

/* HOVER OVERLAY */

.sector-img:hover .sector-overlay {
    height: 100%;
    border-top-left-radius: 220px;
    border-top-right-radius: 220px;
    background: rgba(0, 102, 255, 0.35);
}

/* CONTENT */

.sector-content {
    padding: 22px 15px 30px;
    text-align: center;
    background: #fff;
}

.sector-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    line-height: 1.5;
}


/*counter */


.testimonial-section {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

.testimonial-container-fluid {
    width: 100%;
    padding: 0 40px;
}

.testimonial-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* gap: 30px; */
}

.testimonial-left {
    flex: 0 0 58%;
    max-width: 58%;
}

.testimonial-right {
    flex: 0 0 39%;
    max-width: 39%;
}

.testimonial-title {
    font-size: 42px;
    font-weight: 700;
    color: #0d2f7d;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* PROFILE */

.profile-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.profile-item {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: 0.4s;
    border: 3px solid transparent;
}

.profile-item i {
    color: #fff;
    font-size: 28px;
}

.profile-item.active {
    border-color: #0d2f7d;
    transform: scale(1.1);
}

.profile-item.active::after {
    content: '"';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0d2f7d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* TESTIMONIAL CONTENT */

.testimonial-content {
    display: none;
    animation: fade 0.5s ease;
}

.testimonial-content.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stars {
    color: #0d2f7d;
    margin-bottom: 20px;
}

.stars i {
    margin-right: 5px;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.9;
    color: #173b89;
    margin-bottom: 30px;
}

.client-name {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.client-name span {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: red;
    margin-right: 10px;
    vertical-align: middle;
}

/* BUTTON */

.nav-btns {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.nav-btns button {
    width: 55px;
    height: 55px;
    border: none;
    background: #ece8e8;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btns button:hover {
    background: #0d2f7d;
    color: #fff;
}

/* RIGHT BOX */

.stats-box {
    width: 100%;
    background: #173b89;
    padding: 50px 35px;
}

.stat-item {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.stat-item i {
    font-size: 50px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.stat-text {
    font-size: 18px;
    margin-top: 8px;
}

/* TABLET */

@media(max-width:991px) {

    .testimonial-left,
    .testimonial-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .stats-box {
        margin-top: 40px;
    }

    .testimonial-title {
        font-size: 32px;
    }

    .testimonial-text {
        font-size: 18px;
    }
}

/* MOBILE */

@media(max-width:767px) {

    .testimonial-container-fluid {
        padding: 0 15px;
    }

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-title {
        font-size: 24px;
        text-align: center;
    }

    .profile-list {
        justify-content: center;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .client-name {
        font-size: 18px;
    }

    .nav-btns {
        justify-content: center;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .stat-number {
        font-size: 34px;
    }

    .profile-item {
        width: 58px;
        height: 58px;
    }

    .profile-item i {
        font-size: 22px;
    }
}



/*product page design*/
.benefits-section {
    /*    padding:70px 20px;*/
}



.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    color: #1f4698;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.section-title h2 span {
    background: #1f4698;
    color: #fff;
    padding: 0 10px;
}

.title-line {
    width: 70px;
    height: 3px;
    background: #1f4698;
    margin-top: 18px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 40px;
}

/* CARD */

.benefit-card {
    position: relative;
    height: 100% !important;
}

.card-back {
    position: absolute;
    width: 92%;
    height: 100%;
    background: #5b6067;
    border-radius: 8px;
    top: -10px;
    left: 18px;
    transform: rotate(-5deg);
    z-index: 1;
}

.card-front {
    position: relative;
    background: #1f4698;
    border-radius: 8px;
    padding: 26px 14px 0px;
    text-align: center;
    z-index: 2;
    height: 100% !important;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
}

.benefit-card:hover .card-front {
    transform: translateY(-8px);
}

.number {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #1f4698;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    z-index: 5;
}

.icon {
    width: 90px;
    height: 90px;
    border: 3px solid #fff;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.card-front h3 {
    font-size: 31px;
    line-height: 1.4;
    margin-bottom: 22px;
    font-weight: 700;
    color: #fff;
}

.card-front p {
    font-size: 12px;
    line-height: 1.8;
    color: #f0f0f0;
}

/* TABLET */

@media(max-width:991px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 35px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .card-front {
        min-height: auto;
    }

}

/* MOBILE */

@media(max-width:767px) {

    .benefits-section {
        padding: 50px 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .card-front {
        padding: 70px 22px 35px;
    }

    .card-front h3 {
        font-size: 24px;
    }

    .card-front p {
        font-size: 16px;
        line-height: 1.7;
    }

    .icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }

    .number {
        width: 70px;
        height: 70px;
        font-size: 28px;
        top: -38px;
    }

}

.number {
    display: none;
}



/*about page*/
/* =========================
   PHOENIX METAL ABOUT PAGE
========================= */

.pm-about-page {
    overflow: hidden;
    background: #ffffff;
}

/* HERO SECTION */

.pm-about-hero {
    position: relative;
    padding: 140px 0;
    background:
        linear-gradient(rgba(10, 30, 60, 0.55), rgba(10, 30, 60, 0.55)),
        url('images/phoenix-metal/home/new.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pm-about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pm-about-hero-content h1 {
    color: #ffffff;
    font-size: 58px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

/* ABOUT SECTION */

.pm-about-section {
    padding: 90px 0;
}

.pm-about-intro {
    /*    max-width: 950px;*/
    margin: 0 auto 70px;
    text-align: center;
}

.pm-about-subtitle {
    display: inline-block;
    color: #1f4698;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.pm-about-intro p {
    font-size: 16px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 15px;
}

/* GRID SECTION */

.pm-about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 90px;
}

.pm-about-image,
.pm-about-content {
    flex: 1;
}

.pm-about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.pm-about-content h2 {
    /*    font-size: 38px;*/
    color: #1f4698;
    margin-bottom: 25px;
    font-weight: 700;
}

.pm-about-list {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.pm-about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #444444;
    line-height: 1.7;
}

.pm-about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1f4698;
    font-weight: bold;
}

.pm-about-btn {
    display: inline-block;
    background: #1f4698;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
}

.pm-about-btn:hover {
    background: #0d2d6f;
    color: #ffffff;
}

/* LEADERSHIP SECTION */

.pm-leader-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.pm-leader-reverse {
    flex-direction: row-reverse;
}

.pm-leader-image,
.pm-leader-content {
    flex: 1;
}

.pm-leader-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.pm-leader-content h2 {
    /*    font-size: 38px;*/
    color: #1f4698;
    margin-bottom: 25px;
    font-weight: 700;
}

.pm-leader-content p {
    color: #555555;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 18px;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 991px) {

    .pm-about-grid,
    .pm-leader-section {
        flex-direction: column;
        gap: 40px;
    }

    .pm-leader-reverse {
        flex-direction: column;
    }

    .pm-about-content,
    .pm-leader-content {
        text-align: center;
    }

    .pm-about-list {
        display: inline-block;
        text-align: left;
    }

    .pm-about-hero {
        padding: 100px 0;
    }

    .pm-about-hero-content h1 {
        font-size: 42px;
    }

    .pm-about-content h2,
    .pm-leader-content h2 {
        font-size: 32px;
    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 767px) {

    .pm-about-section {
        padding: 60px 0;
    }

    .pm-about-hero {
        padding: 80px 0;
    }

    .pm-about-hero-content h1 {
        font-size: 34px;
    }

    .pm-about-subtitle {
        font-size: 25px;
        letter-spacing: 1px;
    }

    .pm-about-intro p,
    .pm-about-list li,
    .pm-leader-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .pm-about-content h2,
    .pm-leader-content h2 {
        font-size: 28px;
    }

    .pm-about-btn {
        padding: 12px 26px;
        font-size: 14px;
    }

    .pm-about-grid,
    .pm-leader-section {
        margin-bottom: 60px;
    }

}


/*25-5-26*/

.vm-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.vm-slides {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

/* .vm-slides img {
    width: 100%;
    flex-shrink: 0;
    height: 95vh;
    object-fit: cover;
} */

.vm-slides img {
    width: 100%;
/*    max-height: 88vh;*/
    height: auto;
    object-fit: contain;
    flex: 0 0 100%;
}






@media (max-width: 1440px) {
    .vm-slides img {
        height: 650px;
    }
}

@media (max-width: 1024px) {
    .vm-slides img {
        height: 500px;
    }
}




@media (max-width: 768px) {
    .vm-slides img {
        height: 350px;
    
    }
    

}

/*
@media (max-width: 480px) {
    .vm-slides img {
        height: 220px;
           width: 100%;
            object-fit: cover;
        
    }
}
*/


@media (max-width: 480px) {
    .vm-slides img {
        height: auto;
        object-fit: contain;   /* 🔥 shows full image */
/*        background: #f7f7f7;       fills empty space */
    }
}







/*
@media (max-width: 1024px) {

    .header-nav .navbar-nav {
        display: flex;
        flex-wrap: nowrap;   
        justify-content: center;
    }

    .header-nav .navbar-nav li {
        padding: 0 6px;  
    }

    .header-nav .navbar-nav li a {
        font-size: 13px;  
        padding: 10px 6px;
        white-space: nowrap; 
    }
}


@media (max-width: 1024px) {

    .logo-header img {
        max-width: 160px;  
        width: 100%;
        height: auto;
    }
}
*/



/*
@media (max-width: 1024px) {

    .main-bar .container {
        display: block;
        align-items: center;
        justify-content: space-between;
    }

}
*/



/*@media (max-width: 1024px) {*/

/*
    .logo-header {
        flex: 0 0 auto;
    }
*/
/*

    .logo-header img {
        max-width: 215px;
        height: auto;
    }

}
*/
/*
@media (max-width: 1024px) {

    .header-nav {
        flex: 1;
        display: flex ;
        justify-content: flex-end;
    }

    .header-nav .navbar-nav {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .header-nav .navbar-nav li {
        padding: 0 5px;
    }

    .header-nav .navbar-nav li a {
        font-size: 13px;
        padding: 8px 5px;
        white-space: nowrap;
    }

}
*/












*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.web-container{
    position:relative;
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.web-slider{
    display:flex;
    transition:transform .5s ease;
}

.web-slide{
    min-width:100%;
    flex:0 0 100%;
}

.web-slide img{
    width:100%;
    /* height:835px; */
    display:block;
}

.svb{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.5);
    color:#fff;
    cursor:pointer;
    z-index:10;
    font-size:20px;
}

.mr{
    left:15px;
}

.ms{
    right:15px;
}

.mmr{
    text-align:center;
    margin-top:15px;
}

.mmr-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#ccc;
    display:inline-block;
    margin:0 4px;
    cursor:pointer;
}

.mmr-dot.active{
    background:#333;
}

/* Tablet */
@media (max-width:768px){

    .svb{
        width:35px;
        height:35px;
        font-size:16px;
    }

    .mr{
        left:10px;
    }

    .ms{
        right:10px;
    }

    .mmr-dot{
        width:10px;
        height:10px;
    }
}

/* Mobile */
@media (max-width:480px){

    .svb{
        width:30px;
        height:30px;
        font-size:14px;
    }

    .mr{
        left:5px;
    }

    .ms{
        right:5px;
    }

    .mmr{
        margin-top:10px;
    }

    .mmr-dot{
        width:8px;
        height:8px;
        margin:0 3px;
    }
}
.founder-name {
    color: #ff0000;
}

/* new css -slier */
.pm-slider-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.pm-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.pm-slide {
    min-width: 100%;
}

.pm-slide img {
    width: 100%;
    display: block;
}

.pm-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 45px;
    height: 45px;
    font-size: 20px;
}

.pm-prev {
    left: 15px;
}

.pm-next {
    right: 15px;
}

.pm-dots {
    text-align: center;
    margin-top: 15px;
}

.pm-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.pm-dot.active {
    background: #000;
}



.pm-slider-track {
    display: flex;
    flex-direction: row;
}


