body {
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
}
/* =========================
   TOP BAR
========================= */

.aymd-nav-scx-top{
    background:#2b388f;
    padding:12px 0;
}

.aymd-nav-scx-top-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.aymd-nav-scx-contact{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.aymd-nav-scx-contact-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#ffffff;
    font-size:14px;
    font-weight:500;
}

.aymd-nav-scx-contact-item svg{
    width:16px;
    height:16px;
    fill:#ffffff;
}

.aymd-nav-scx-social{
    display:flex;
    align-items:center;
    gap:18px;
}

.aymd-nav-scx-social a{
    color:#ffffff;
    opacity:0.9;
    transition:0.3s;
}

.aymd-nav-scx-social a:hover{
    opacity:1;
}

.aymd-nav-scx-social svg{
    width:20px;
    height:20px;
    fill:#ffffff;
}

/* =========================
   NAVBAR
========================= */

.aymd-nav-scx{
    background:#ffffff;
    position:relative;
    z-index:10;
    border-bottom:1px solid #ececec;
}

.aymd-nav-scx-navbar{
    padding:10px 0;
}



.aymd-nav-scx-logo img {
    width:250px;
    position:relative;
}






.aymd-nav-scx-toggle{
    border:0;
    box-shadow:none !important;
    padding:0;
}

.aymd-nav-scx-toggle span{
    width:26px;
    height:2px;
    background:#111111;
    display:block;
    margin:6px 0;
}

.aymd-nav-scx-links{
    gap:34px;
}

.aymd-nav-scx-links .nav-link{
    font-size:15px;
    font-weight:600;
    color:#111111;
    padding:0 !important;
    transition:0.3s;
}

.aymd-nav-scx-links .nav-link:hover{
    color:#2b388f;
}

.aymd-nav-scx-dropdown-menu{
    border:0;
    border-radius:14px;
    padding:14px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}


.aymd-nav-scx-right{
    display:flex;
    align-items:center;
    gap:20px;
    margin-left:35px;
}



.aymd-nav-scx-cart-count{
    position:absolute;
    top:-7px;
    right:-7px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#2b388f;
    color:#ffffff;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.aymd-nav-scx-btn{
    min-width:210px;
    height:56px;
    background:#2b388f;
    color:#ffffff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:15px;
    font-weight:700;
    border-radius:4px;
    transition:0.3s;
}

.aymd-nav-scx-btn:hover{
    background:#156fe0;
    color:#ffffff;
}

/* =========================
   HERO BANNER
========================= */

.aymd-nav-scx-banner{
    position:relative;
    background:url('../img/new-banner-img.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    min-height:620px;
    display:flex;
    align-items:center;
}

.aymd-nav-scx-banner-content{
    position:relative;
    z-index:2;
    max-width:560px;
}

.aymd-nav-scx-tag{
    display:inline-block;
    background:#e9f3ff;
    color:#2b388f;
    font-size:13px;
    font-weight:700;
    padding:10px 18px;
    border-radius:4px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:26px;
}

.aymd-nav-scx-banner-content h1{
    font-size:45px;
    line-height:1.15;
    font-weight:700;
    color:#111111;
    margin-bottom:24px;
}

.aymd-nav-scx-banner-content p{
    font-size: 16px;
    line-height: 1.6;
    color:#555555;
    margin-bottom:38px;
}

.aymd-nav-scx-banner-btn{
    min-width:190px;
    height:56px;
    background:#2b388f;
    color:#ffffff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:15px;
    font-weight:700;
    border-radius:4px;
    transition:0.3s;
}

.aymd-nav-scx-banner-btn:hover{
    background:#156fe0;
    color:#ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

    .aymd-nav-scx-links{
        gap:24px;
    }

    .aymd-nav-scx-banner-content h1{
        font-size:46px;
    }

}

@media(max-width:991px){

    .aymd-nav-scx-navbar{
        padding:16px 0;
    }

    .aymd-nav-scx-links{
        gap:0;
        margin-top:25px;
        padding:20px;
        background:#f8f9fb;
        border-radius:18px;
    }

    .aymd-nav-scx-links .nav-item{
        width:100%;
    }

    .aymd-nav-scx-links .nav-link{
        padding:12px 0 !important;
    }

    .aymd-nav-scx-right{
        margin-left:0;
        margin-top:24px;
        justify-content:flex-start;
    }

    .aymd-nav-scx-banner{
        min-height:auto;
        padding:90px 0;
    }

    .aymd-nav-scx-banner-content h1{
        font-size:40px;
    }

}

@media(max-width:767px){

    .aymd-nav-scx-top{
        display:none;
    }



    .aymd-nav-scx-logo{
        width:42px;
        height:42px;
    }



    .aymd-nav-scx-logo::after{
        width:42px;
        height:18px;
        top:12px;
    }

    .aymd-nav-scx-right{
        flex-wrap:wrap;
        gap:16px;
    }

    .aymd-nav-scx-btn{
        width:100%;
        min-width:100%;
    }

    .aymd-nav-scx-banner{
        padding:70px 0;
    }

    .aymd-nav-scx-banner-content h1{
        font-size:34px;
    }

    .aymd-nav-scx-banner-content p{
        font-size:15px;
        line-height:1.8;
    }

    .aymd-nav-scx-banner-btn{
        width:100%;
    }

}

@media(max-width:575px){

    .aymd-nav-scx-banner-content h1{
        font-size:30px;
    }

}

/* =========================
   ABOUT SECTION
========================= */

.aymd-abt-scx{
    padding:110px 0;
    background:#ffffff;
}

.aymd-abt-scx-img{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:#dcecff;
}

.aymd-abt-scx-img img{
    width:100%;
    height:740px;
    object-fit:cover;
    display:block;
}

.aymd-abt-scx-content{
    padding-left:50px;
}

.aymd-abt-scx-content h2{
    font-size:40px;
    line-height:1.2;
    font-weight:700;
    color:#111111;
    margin-bottom:30px;
    max-width:620px;
}

.aymd-abt-scx-content p{
    font-size: 16px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 10px;
}

.aymd-abt-scx-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.aymd-abt-scx-tag{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: #2b388f;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.aymd-abt-scx-tag:hover{
    background:#1e88ff;
    color:#ffffff;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .aymd-abt-scx-content{
        padding-left:30px;
    }

    .aymd-abt-scx-content h2{
        font-size:40px;
    }

    .aymd-abt-scx-img img{
        height:640px;
    }

}

@media(max-width:991px){

    .aymd-abt-scx{
        padding:90px 0;
    }

    .aymd-abt-scx-img{
        margin-bottom:45px;
    }

    .aymd-abt-scx-content{
        padding-left:0;
    }

    .aymd-abt-scx-img img{
        height:560px;
    }

}

@media(max-width:767px){

    .aymd-abt-scx{
        padding:70px 0;
    }

    .aymd-abt-scx-content h2{
        font-size:34px;
    }

    .aymd-abt-scx-content p{
        font-size:15px;
        line-height:1.85;
    }

    .aymd-abt-scx-img img{
        height:460px;
    }

    .aymd-abt-scx-tags{
        gap:12px;
    }

    .aymd-abt-scx-tag{
        width:100%;
        justify-content:flex-start;
        padding:14px 20px;
        font-size:14px;
    }

}

@media(max-width:575px){

    .aymd-abt-scx-content h2{
        font-size:30px;
    }

    .aymd-abt-scx-img{
        border-radius:18px;
    }

    .aymd-abt-scx-img img{
        height:400px;
    }

}
.aymd-pro-scx{
    padding: 110px 0 80px;
    background:#f3f4f6;
}

.aymd-pro-scx-head{
    text-align:center;
    margin-bottom:70px;
}

.aymd-pro-scx-head h2{
    font-size:40px;
    line-height:1.25;
    font-weight:700;
    color:#0c2344;
    max-width:720px;
    margin:0 auto;
}

/* CARD */

.aymd-pro-scx-card{
    background:#ffffff;
    border-radius:24px;
    padding:20px 20px 20px;
    height:100%;
    transition:0.3s;
}
.aymd-pro-scx-card a {
    text-decoration: none;
}
.aymd-pro-scx-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.aymd-pro-scx-card-content{
    margin-bottom: 5px;
    margin-top: 20px;
}

.aymd-pro-scx-card-content h3{
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #0c2344;
    margin-bottom: 5px;
}

.aymd-pro-scx-card-content p{
    font-size: 16px;
    line-height: 1.5;
    color: #5f6672;
    margin: 0;
    min-height: 100px;
}
.pro-cta {
    display: inline-block;
    background: #2b388f;
    text-decoration: none;
    color: #fff;
    padding: 5px 20px 5px;
    margin-top: 10px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
}
.pro-cta:hover {
    background: #156fe0;
    color: #fff;
}
/* IMAGE */

.aymd-pro-scx-img{
    overflow:hidden;
    border-radius:18px;
}

.aymd-pro-scx-img img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.aymd-pro-scx-card:hover .aymd-pro-scx-img img{
    transform:scale(1.05);
}

/* BUTTON */

.aymd-pro-scx-btn-wrap{
    text-align:center;
    margin-top:40px;
}

.aymd-pro-scx-btn{
    padding: 15px 40px 15px;
    background:#2b388f;
    color:#ffffff;
    text-decoration:none;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.aymd-pro-scx-btn:hover{
    background:#156fe0;
    color:#ffffff;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .aymd-pro-scx-head h2{
        font-size:38px;
    }

    .aymd-pro-scx-card-content h3{
        font-size:24px;
    }

}

@media(max-width:991px){

    .aymd-pro-scx{
        padding:90px 0;
    }

    .aymd-pro-scx-head{
        margin-bottom:50px;
    }

    .aymd-pro-scx-card{
        margin-bottom:30px;
    }

}

@media(max-width:767px){

    .aymd-pro-scx{
        padding:70px 0;
    }

    .aymd-pro-scx-head h2{
        font-size:32px;
    }

    .aymd-pro-scx-card{
        border-radius:20px;
        padding:28px 22px 22px;
    }

    .aymd-pro-scx-card-content h3{
        font-size:22px;
    }

    .aymd-pro-scx-card-content p{
        font-size:15px;
        line-height:1.8;
    }

    .aymd-pro-scx-img img{
        height:260px;
    }

    .aymd-pro-scx-btn{
        width:100%;
    }

}

@media(max-width:575px){

    .aymd-pro-scx-head h2{
        font-size:28px;
    }

}
/* =========================
   CTA SECTION
========================= */

.aymd-cta-scx{
    position:relative;
    padding:100px 0;
    background:#2b388f;
    overflow:hidden;
    z-index:1;
}

.aymd-cta-scx::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    z-index:-1;
}

.aymd-cta-scx::after{
    content:"";
    position:absolute;
    bottom:-140px;
    left:-140px;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(255,255,255,0.04);
    z-index:-1;
}

.aymd-cta-scx-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.aymd-cta-scx-content{
    max-width:700px;
}

.aymd-cta-scx-sub{
    display:inline-block;
    padding:10px 18px;
    background:rgba(255,255,255,0.12);
    border-radius:50px;
    color:#cfe3ff;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.aymd-cta-scx-content h2{
    font-size:40px;
    line-height:1.2;
    font-weight:700;
    color:#ffffff;
    margin-bottom:24px;
}

.aymd-cta-scx-content p{
    font-size:17px;
    line-height:1.5;
    color:rgba(255,255,255,0.78);
    margin:0;
}

/* ACTION AREA */

.aymd-cta-scx-action{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.aymd-cta-scx-btn{
    min-width:210px;
    height:60px;
    background:#1e88ff;
    color:#ffffff;
    text-decoration:none;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.aymd-cta-scx-btn:hover{
    background:#364295;
    color:#ffffff;
}

.aymd-cta-scx-btn-outline{
    min-width:210px;
    height:60px;
    border:1px solid rgba(255,255,255,0.18);
    color:#ffffff;
    text-decoration:none;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.aymd-cta-scx-btn-outline:hover{
    background:#ffffff;
    color:#2b388f;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .aymd-cta-scx-content h2{
        font-size:42px;
    }

}

@media(max-width:991px){

    .aymd-cta-scx{
        padding:90px 0;
    }

    .aymd-cta-scx-wrap{
        flex-direction:column;
        align-items:flex-start;
    }

}

@media(max-width:767px){

    .aymd-cta-scx{
        padding:70px 0;
    }

    .aymd-cta-scx-content h2{
        font-size:34px;
    }

    .aymd-cta-scx-content p{
        font-size:15px;
        line-height:1.8;
    }

    .aymd-cta-scx-action{
        width:100%;
    }

    .aymd-cta-scx-btn,
    .aymd-cta-scx-btn-outline{
        width:100%;
    }

}

@media(max-width:575px){

    .aymd-cta-scx-content h2{
        font-size:30px;
    }

}
/* =========================
   FOOTER SECTION
========================= */

.aymd-ftr-scx{
    position:relative;
    background:#041b36;
    overflow:hidden;
    color:#ffffff;
}

.aymd-ftr-scx-top{
    padding:90px 0 60px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

/* BRAND */

.aymd-ftr-scx-brand{
    margin-bottom:28px;
}







.aymd-ftr-scx-brand p{
    font-size:16px;
    line-height:1.9;
    color:rgba(255,255,255,0.72);
    margin:0;
    max-width:360px;
}

/* TITLE */

.aymd-ftr-scx-title{
    font-size:22px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:30px;
}

/* LINKS */

.aymd-ftr-scx-links{
    list-style:none;
    padding:0;
    margin:0;
}

.aymd-ftr-scx-links li{
    margin-bottom:16px;
}

.aymd-ftr-scx-links a{
    color:rgba(255,255,255,0.72);
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.aymd-ftr-scx-links a:hover{
    color:#1e88ff;
    padding-left:6px;
}

/* CONTACT */

.aymd-ftr-scx-contact-item{
    display:flex;
    gap:16px;
    margin-bottom:24px;
}

.aymd-ftr-scx-contact-icon{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
}

.aymd-ftr-scx-contact-icon svg{
    width:20px;
    height:20px;
    fill:#1e88ff;
}

.aymd-ftr-scx-contact-text h4{
    font-size:16px;
    font-weight:600;
    color:#ffffff;
    margin-bottom:6px;
}

.aymd-ftr-scx-contact-text p,
.aymd-ftr-scx-contact-text a{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,0.72);
    margin:0;
    text-decoration:none;
}
.aymd-ftr-scx-contact-text a:hover {
    color: #1e88ff;
}

.aymd-ftr-scx-logo img {
    width: 200px;
    margin-bottom: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}
/* BOTTOM */

.aymd-ftr-scx-bottom{
    padding:28px 0;
}

.aymd-ftr-scx-bottom-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.aymd-ftr-scx-copy{
    font-size:15px;
    color:rgba(255,255,255,0.65);
}

.aymd-ftr-scx-social{
    display:flex;
    align-items:center;
    gap:14px;
}

.aymd-ftr-scx-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.aymd-ftr-scx-social a:hover{
    background:#1e88ff;
    transform:translateY(-4px);
}

.aymd-ftr-scx-social svg{
    width:18px;
    height:18px;
    fill:#ffffff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .aymd-ftr-scx-top{
        padding:80px 0 40px;
    }

    .aymd-ftr-scx-col{
        margin-bottom:40px;
    }

}

@media(max-width:767px){

    .aymd-ftr-scx-top{
        padding:70px 0 30px;
    }



    .aymd-ftr-scx-brand p{
        font-size:15px;
        line-height:1.8;
    }

    .aymd-ftr-scx-title{
        font-size:20px;
        margin-bottom:22px;
    }

    .aymd-ftr-scx-links a{
        font-size:15px;
    }

    
    .aymd-ftr-scx-bottom-wrap{
        justify-content:center;
        text-align:center;
    }

}
/* =========================
   CONTACT SECTION
========================= */

.aymd-con-scx-2{
    padding:120px 0;
    background:#ffffff;
}

/* TOP */

.aymd-con-scx-2-head{
    text-align:center;
    margin-bottom:70px;
}

.aymd-con-scx-2-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:10px;
    background:#eef2ff;
    color:#2f3fa5;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.aymd-con-scx-2-tag span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#2f3fa5;
}

.aymd-con-scx-2-head h2{
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #111111;
    width: 80%;
    margin: 0 auto 20px;
}

.aymd-con-scx-2-head h2 span{
    color:#2f3fa5;
}

.aymd-con-scx-2-head p{
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.5;
    color: #66707d;
}

/* WRAPPER */

.aymd-con-scx-2-wrap{
    background:#f7f9fd;
    border-radius:34px;
    overflow:hidden;
    border:1px solid #edf1f7;
}

/* MAP */

.aymd-con-scx-2-map{
    height:100%;
    min-height:620px;
}

.aymd-con-scx-2-map iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

/* CONTENT */

.aymd-con-scx-2-content{
    padding:70px 55px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.aymd-con-scx-2-content h3{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:#111111;
    margin-bottom:22px;
}

.aymd-con-scx-2-content p{
    font-size:16px;
    line-height:1.9;
    color:#66707d;
    margin-bottom:42px;
}

/* INFO ITEMS */

.aymd-con-scx-2-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.aymd-con-scx-2-item{
    display:flex;
    align-items:flex-start;
    gap:22px;
    padding:28px;
    background:#ffffff;
    border-radius:24px;
    transition:0.3s;
}

.aymd-con-scx-2-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 50px rgba(0,0,0,0.06);
}

.aymd-con-scx-2-icon{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:20px;
    background:#2f3fa5;
    display:flex;
    align-items:center;
    justify-content:center;
}

.aymd-con-scx-2-icon svg{
    width:30px;
    height:30px;
    fill:#ffffff;
}

.aymd-con-scx-2-info h4{
    font-size:24px;
    font-weight:700;
    color:#111111;
    margin-bottom:12px;
}

.aymd-con-scx-2-info p,
.aymd-con-scx-2-info a{
    font-size:16px;
    line-height:1.9;
    color:#66707d;
    margin:0;
    text-decoration:none;
    transition:0.3s;
}

.aymd-con-scx-2-info a:hover{
    color:#2f3fa5;
}

/* RESPONSIVE */

@media(max-width:1399px){

    .aymd-con-scx-2-head h2{
        font-size:46px;
    }

}

@media(max-width:1199px){

    .aymd-con-scx-2{
        padding:100px 0;
    }

    .aymd-con-scx-2-head h2{
        font-size:42px;
    }

    .aymd-con-scx-2-content{
        padding:60px 40px;
    }

}

@media(max-width:991px){

    .aymd-con-scx-2{
        padding:90px 0;
    }

    .aymd-con-scx-2-map{
        min-height:420px;
    }

}

@media(max-width:767px){

    .aymd-con-scx-2{
        padding:70px 0;
    }

    .aymd-con-scx-2-head{
        margin-bottom:50px;
    }

    .aymd-con-scx-2-head h2{
        font-size:34px;
    }

    .aymd-con-scx-2-head p{
        font-size:15px;
        line-height:1.8;
    }

    .aymd-con-scx-2-wrap{
        border-radius:24px;
    }

    .aymd-con-scx-2-content{
        padding:40px 24px;
    }

    .aymd-con-scx-2-content h3{
        font-size:30px;
    }

    .aymd-con-scx-2-item{
        flex-direction:column;
        padding:24px;
    }

    .aymd-con-scx-2-icon{
        width:64px;
        height:64px;
        min-width:64px;
        border-radius:18px;
    }

}

@media(max-width:575px){

    .aymd-con-scx-2-head h2{
        font-size:30px;
    }

}
span.bold {
    font-weight: 600;
}
.aymd-pro-scx .col-lg-4 {
    margin-bottom: 35px;
}
.ban-mob {
    display: none;
}
.pro-main-desc-wrap {
    padding-bottom: 60px;
    background: #f3f3f3;
    padding-top: 40px;
}
.pro-main-desc-sec h2 {
    margin: 40px 0 20px;
    font-weight: 700;
}
.pro-main-desc-sec h3 {
    font-size: 24px;
}
.am-gallery-wrap {
    position: relative;
}
.slider-nav .slidePrevBtn {
    position: absolute;
    top: 45%;
    left: 0;
}
.slider-nav .slideNextBtn {
    position: absolute;
    top: 45%;
    right: 0;
}
.slider-nav button {
    background: #2b388f;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: none;
}
.slider-nav .slideNextBtn img {
    width: 25px;
    margin-left: 5px;
}
.slider-nav .slidePrevBtn img {
    width: 25px;
    margin-left: 0px;
}
.aymd-cont-pg-scx {
    padding: 100px 0;
    background: #f8fafc;
}
.aymd-cont-pg-scx .col-lg-5 {
    margin-bottom: 20px;
}
.aymd-cont-pg-scx-info {
    height: 100%;
    background: #2b388f;
    padding: 50px;
    border-radius: 24px;
    color: #fff;
}

.aymd-cont-pg-scx-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
}

.aymd-cont-pg-scx-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.aymd-cont-pg-scx-desc {
    margin-bottom: 40px;
    opacity: .9;
    line-height: 1.8;
}

.aymd-cont-pg-scx-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.aymd-cont-pg-scx-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.aymd-cont-pg-scx-item h6 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
}

.aymd-cont-pg-scx-item p {
    margin: 0;
    opacity: .9;
}
.aymd-cont-pg-scx-item p a {
    color: #fff;
    text-decoration: none;
}
.aymd-cont-pg-scx-form-wrap {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
    height: 100%;
}

.aymd-cont-pg-scx-form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
}

.aymd-cont-pg-scx-field {
    margin-bottom: 20px;
}

.aymd-cont-pg-scx-field input,
.aymd-cont-pg-scx-field textarea {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    padding: 15px 18px;
    outline: none;
    transition: .3s;
    background: #fff;
}

.aymd-cont-pg-scx-field input:focus,
.aymd-cont-pg-scx-field textarea:focus {
    border-color: #2b388f;
    box-shadow: 0 0 0 4px rgba(43,56,143,.1);
}

.aymd-cont-pg-scx-btn {
    background: #2b388f;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

.aymd-cont-pg-scx-btn:hover {
    transform: translateY(-2px);
}

.aymd-cont-pg-scx-map {
    margin-top: 40px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
}

.aymd-cont-pg-scx-map iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

@media (max-width: 991px) {

    .aymd-cont-pg-scx-info {
        margin-bottom: 30px;
    }

    .aymd-cont-pg-scx-title {
        font-size: 34px;
    }

    .aymd-cont-pg-scx-form-wrap,
    .aymd-cont-pg-scx-info {
        padding: 35px;
    }
}
.aymd-abt-pg-scx {
    padding: 100px 0;
    background: #f8fafc;
}

.aymd-abt-pg-scx-hero  {
    margin-bottom: 100px;
}
.aymd-abt-pg-scx-section {
    margin-bottom: 20px;
}

.aymd-abt-pg-scx-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 10px;
    background: rgba(43,56,143,.1);
    color: #2b388f;
    font-weight: 600;
    margin-bottom: 20px;
}

.aymd-abt-pg-scx-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 25px;
}

.aymd-abt-pg-scx-subtitle {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111827;
}

.aymd-abt-pg-scx-desc,
.aymd-abt-pg-scx-content p {
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 20px;
}

.aymd-abt-pg-scx-image img {
    width: 100%; 
    object-fit: cover;
    border-radius: 24px;
}

.aymd-abt-pg-scx-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.aymd-abt-pg-scx-stat {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    flex: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    margin-bottom: 10px;
}

.aymd-abt-pg-scx-stat h3 {
    color: #2b388f;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.aymd-abt-pg-scx-stat span {
    color: #6b7280;
}

.aymd-abt-pg-scx-list {
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

.aymd-abt-pg-scx-list li {
    padding: 12px 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.aymd-abt-pg-scx-list li:last-child {
    border-bottom: none;
}


@media (max-width: 991px) {

    .aymd-abt-pg-scx {
        padding: 80px 0;
    }

    .aymd-abt-pg-scx-title {
        font-size: 38px;
    }

    .aymd-abt-pg-scx-subtitle {
        font-size: 32px;
    }

    .aymd-abt-pg-scx-image {
        margin-bottom: 30px;
    }

    .aymd-abt-pg-scx-stats {
        flex-wrap: wrap;
    }

    .aymd-abt-pg-scx-card {
        margin-bottom: 25px;
    }
}