body{
    margin:0;
    font-family: Arial, sans-serif;
}

.hero-section{
     background: linear-gradient(135deg, var(--hero1), var(--hero2));
    min-height: 100vh;
    color:#fff;
    overflow:hidden;
}

.navbar-nav .nav-link{
   
    color: var(--heading) !important;
    font-size: 20px;
    margin-left: 20px;
    font-weight: 450;
}
.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
    margin-top: -9px;
}

.hero-content{
    min-height: 80vh;
}

.hero-title{
    font-size: 80px;
    line-height: 1.1;
    font-family: Georgia, serif;

    /* Smooth transition */
    transition: all 0.3s ease;

    /* Optional styling */
    cursor: pointer;
}

/* Hover Effect */
.hero-title:hover{
    transform: translateY(-5px) scale(1.02);
    color: #f1eeea;
    text-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero-subtitle{
    font-size: 32px;
    margin-top: 20px;
    line-height: 1.4;
}

.hero-subtitle,
.hero-subtitle * {
    color: #fff !important;
    font-style: italic;
    line-height: 1.6;
}
.img-main{
    width: 95%;
    display: block;
    margin: 20px auto;
    height: 300px;

    /* Clean modern look */
    border-radius: 16px;
    overflow: hidden;

    /* Smooth shadow */
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);

    /* Smooth animation */
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                filter 0.3s ease;

    /* Slight image enhancement */
    filter: brightness(1.02) contrast(1.05);
}

/* Hover effect */
.img-main:hover{
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    filter: brightness(1.05) contrast(1.08);
}
.about-section{
    background: var(--about-bg);
    padding: 100px 0;
    
}

.about-title{
    font-size: 58px;
    color: var(--about-title);
    font-family: Georgia, serif;
    margin-bottom: 25px;
}

.about-text,
.about-text p,
.about-text span,
.about-text div{
    color: var(--about-desc) !important;
    font-size: 17px;
    line-height: 1.7;
}
.about-img {
    width: 100%;
    max-width: 900px;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.about-text,
.about-text p,
.about-text span,
.about-text div,
.about-text strong,
.about-text ul,
.about-text li {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 15px;
       text-align: left;
}
.about-sections .container{
    padding-top: 40px;
}
.about-text strong {
    font-weight: 600;
}

.about-text p:last-child {
    margin-bottom: 0;
}
.read-more-btn{
    color: var(--about-title);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.read-more-btn:hover{
    text-decoration: underline;
}

.about-sections {
    padding-top: 0 !important;
    margin-top: -30px;
    height: 385px;
}

.about-banner-full {
    margin: 0;
    padding: 0;
    line-height: 0;
}
.about-banner-img {
    width: 100%;
    max-height: 450px;
    height: auto;
    object-fit: cover;
    display: block;
}
.about-header {
    min-height: auto;
    padding-bottom: 2px;
    height: 138px;
}




/* =========================
   JOURNEY SECTION
========================= */

.journey-section {
    background: var(--section);
    padding: 70px 0;
    overflow: hidden;
}

/* Mobile */
@media (max-width: 767px) {

    .journey-section {
        padding: 155px 0 70px;
    }

}

/* =========================
   TITLE
========================= */

.main-title {
    text-align: center;
    margin-bottom: 45px;
}

.main-title h2 {
    color: var(--primary);
    font-size: 58px;
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.journey-subtitle {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================
   STEP BOX
========================= */

.step-box {
    background: #f4f0eb;
    border-radius: 24px;
    text-align: center;
    padding: 15px 1px;
    min-height: 241px;
    cursor: pointer;
    transition: 0.35s ease;
    border: 2px solid transparent;
    position: relative;
}

.step-box:hover {
    transform: translateY(-3px);
}

/* ACTIVE BOX */

.step-box.active {
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.step-box.active h6,
.step-box.active h3 {
    color: #fff;
}

/* ICON */

.title-icon {
    margin-bottom: 15px;
}

.step-box img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

/* STEP */

.step-box h6 {
    font-size: 14px;
    letter-spacing: 4px;
    color: #b8a89c;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* TITLE */

.step-box h3 {
    font-size: 40px;
    line-height: 1.1;
    color: var(--primary);
    font-family: Georgia, serif;
    margin-bottom: 22px;
}

/* =========================
   STEP TAGS
========================= */

.step-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.step-tags span {
    background: #efe6dc;
    border: 1px solid #d8c8b7;
    color: var(--primary);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 13px;
    line-height: 1.2;
    display: inline-block;
    max-width: 100%;
    word-break: break-word;
}

/* ACTIVE TAG */

.step-box.active .step-tags span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}

/* =========================
   ACCORDION
========================= */

.custom-accordion .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.custom-accordion .card-header {
    background: var(--primary);
    border: none;
    padding: 0;
}

.custom-accordion .btn-link {
    width: 100%;
    text-align: left;
    color: #fff !important;
    text-decoration: none !important;
    padding: 11px 25px;
    font-size: 25px;
    font-weight: 700;
    position: relative;
}

.custom-accordion .btn-link:hover {
    text-decoration: none;
}

.custom-accordion .btn-link:focus {
    box-shadow: none;
}

/* NUMBER */

.number {
    width: 32px;
    height: 32px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 15px;
    font-weight: bold;
}

/* ICON */

.icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* BODY */

.custom-accordion .card-body {
    background: #fff;
    padding: 40px;
}

/* =========================
   NORMAL CONTENT
========================= */

.acc-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.acc-text {
    flex: 1;
    min-width: 300px;
    color: var(--text);
    line-height: 1.9;
    font-size: 16px;
}

.acc-gallery {
    flex: 1;
    min-width: 300px;
}

.acc-gallery img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 221px;
}

/* =========================
   COMMITTEE SLIDER
========================= */

.committee-slider {
    width: 100%;
}

.member-card {
    padding: 10px;
}

.member-image img {
    width: 100%;
    height: 390px;
    border-radius: 14px;
    object-fit: cover;
    object-position: center top; /* upper side visible */
}

.member-content h3 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.member-content h6 {
    font-size: 18px;
    color: #777;
    margin-bottom: 20px;
    font-weight: 600;
}

.member-desc {
    color: var(--text);
    line-height: 1.9;
    width: 100%;
    max-width: 500px;
}

/* =========================
   OWL NAV
========================= */

.committee-slider .owl-nav {
    margin-top: 25px;
    text-align: center;
}

.committee-slider .owl-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    background: var(--primary) !important;
    color: #fff !important;
    margin: 0 5px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .main-title h2 {
        font-size: 38px;
    }

    .step-box {
        min-height: auto;
    }

    .step-box h3 {
        font-size: 34px;
    }

    .custom-accordion .btn-link {
        font-size: 18px;
        padding: 18px;
    }

    .custom-accordion .card-body {
        padding: 20px;
    }

    .member-content {
        margin-top: 25px;
    }

    .member-content h3 {
        font-size: 28px;
    }

}
@media (max-width: 767px) {

    .member-card {
        padding: 0;
    }

    .member-image img {
        width: 100%;
        height: 280px;
    }

    .member-content {
        margin-top: 20px;
        text-align: center;
    }

    .member-content h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .member-content h6 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .member-desc {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.8;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .swiper-button-next,
    .swiper-button-prev {
        transform: scale(0.8);
    }

    .custom-accordion .card-body {
        padding: 15px;
    }
}
        /* ===================================
           NEWS SECTION
        =================================== */

 .news-section {
    background: var(--section);
    padding: 80px 0;
    position: relative;
}

.news-title {
    color: var(--primary);
    font-size: 58px;
  
    font-family: Georgia, serif;
    margin-bottom: 25px;
}

.newsSlider {
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

.news-card {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.news-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.news-content {
    padding: 15px;
}

.news-date {
    color: #777;
    font-size: 12px;
    margin-bottom: 8px;
}

.news-heading {
    color: var(--title);
    font-size: 22px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-text {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

.read-more {
    color: #d08b22;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}
        /* ===================================
           SWIPER ARROWS
        =================================== */

        .swiper-button-next,
        .swiper-button-prev {
            color: #d08b22 !important;
            width: 45px;
            height: 45px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 18px;
            font-weight: bold;
        }

        .swiper-button-next {
            right: -5px;
        }

        .swiper-button-prev {
            left: -5px;
        }

        /* ===================================
           RESPONSIVE
        =================================== */

        @media(max-width:991px) {

            .main-title h2,
            .news-title {
                font-size: 36px;
            }

            .acc-content {
                flex-direction: column;
            }

            .acc-text,
            .acc-gallery {
                width: 100%;
            }

            .custom-accordion .btn-link {
                font-size: 22px;
            }
        }

        @media(max-width:576px) {

            .main-title h2,
            .news-title {
                font-size: 28px;
            }

            .custom-accordion .btn-link {
                font-size: 18px;
                padding: 15px;
            }

            .step-box {
                height: auto;
                margin-top: 35px;
            }
        }
.events-section{
    background: var(--section);
    padding: 55px 0;
}

.events-title{

    color: var(--events-title-color);
 font-size: 58px;
  
    font-family: Georgia, serif;
   
    margin-bottom: 22px;
}

.event-card{
    background: var(--events-card-bg);
    margin-bottom: 10px;
}

.event-img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.event-content{
    padding: 18px 28px;
}

.event-date{
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

.event-heading{
    font-size: 22px;
    color: var(--events-heading-color);
    font-family: Georgia, serif;
    line-height: 1.3;
    margin-bottom: 12px;
}

.event-text{
    font-size: 14px;
    line-height: 1.35;
    color: #444;
    margin-bottom: 10px;
}

 
@media(max-width:768px){
    .events-title{
        font-size: 34px;
    }

    .event-heading{
        font-size: 20px;
    }

    .event-img{
        min-height: 200px;
    }

    .event-content{
        padding: 20px;
    }
}

.stats-section {
    padding: 80px 0;
    position: relative;
    background: var(--stats-section-bg, #fff);
}

/* LEFT SIDE */
.stats-small {
color: var(--stats-subheading, #666) !important;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.stats-title {
    color: var(--stats-heading, #111);
    font-size: 58px;
    font-family: Georgia, serif;
    line-height: 1.1;
    margin: 0;
}

/* BOX */
.stats-box {
    background: var(--stats-box-bg, #f5f5f5);
    padding: 45px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TOP LINE */
.top-line {
    width: 100%;
    height: 4px;
    background: #d08b22;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
}

/* COUNTER */
.counter {
    font-size: 48px;
    font-weight: 700;
    color: #111;
}

/* TEXT */
.stats-box p {
    color: #555;
    font-size: 15px;
    margin: 0;
}

/* % sign */
.counter.percent::after {
    content: "%";
    margin-left: 2px;
}
@media(max-width:768px){
    .stats-title{
        font-size: 36px;
        margin-bottom: 30px;
    }

    .counter{
        font-size: 30px;
    }
}
.stats-box{
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.top-line{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #d08b22;
    border-radius: 8px 8px 0 0;
}

.stats-box h3{
    font-size: 42px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.stats-box p{
    font-size: 16px;
    color: #444;
    margin: 0;
}
/* FAQ */
.faq-section{
    background: var(--faq-section-bg);
    padding: 80px 0;
}

.faq-title{
    font-size: 58px;
    color: var(--faq-heading-color);
    font-family: Georgia, serif;
    
}

.faq-image{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 10px;
}

.faq-box{
    border: 1px solid #d63c3c;
    border-radius: 18px;
    padding: 18px 22px;
    margin-bottom: 15px;
    background: #f7f7f7;
    margin-top: 20px;
}

.faq-box h4{
    font-size: 30px;
    font-family: Georgia, serif;
    margin-bottom: 8px;
    color: var(--faq-title-color);
}

.faq-box p{
    font-size: 15px;
    color: #444;
    margin: 0;
}


/* Partner Section */
.partner-section{
    background: var(--partner-section-bg);
    padding: 70px 0;
}

.partner-title{
    font-size: 58px;
    color: var(--partner-heading-color);
    font-family: Georgia, serif;
    margin-bottom: 40px;
}



/* Logo */
.partner-logo{
    width: 100%;
    max-width: 150px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin: auto;
    display: block;
}

/* Arrow */
.carousel-control-prev,
.carousel-control-next{
    width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-size: 60% 60%;
    /* background-color: #8b1626; */
    border-radius: 50%;
    padding: 20px;
}

.gallery-section{
    background: var(--gallery-section-bg);
    padding: 70px 0;
}

.gallery-title{
    font-size: 58px;
    color: var(--gallery-heading-color);
    font-family: Georgia, serif;
}

.gallery-img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
}
/* =========================
   MODAL IMAGE
========================= */
#modalImage{
    width:100%;
    border-radius:10px;
}

.modal-backdrop.show{
    opacity:0.9;
}

/* =========================
   FOOTER
========================= */
.custom-footer{
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0 25px;
}

.custom-footer p{
    margin: 0 0 10px;
    font-size: 15px;
}

.footer-logo img{
    max-height: 70px;
    width: auto;
}

.social-icons a{
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.15);
    color: var(--footer-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover{
    background: #d70000;
    color: #fff;
}

.custom-footer hr{
    border-color: rgba(255,255,255,0.2);
    margin: 30px auto 20px;
    width: 60%;
}

.copyright{
    font-size: 14px;
}
/* Mobile */
@media(max-width:768px){
    .partner-title{
        font-size: 38px;
    }

    .partner-logo{
        max-width: 110px;
        height: 70px;
    }
}
/*mobile view*/
/* Mobile Responsive */
@media (max-width: 768px){
    .hero-title{
        font-size: 42px;
        line-height: 1.3;
        text-align: center;
        padding: 0 10px;
    }
}

@media (max-width: 768px){
    .hero-subtitle{
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
        padding: 0 10px;
    }
}

/* Mobile View */
@media (max-width: 768px){
    .img-main{
        width: 92%;
        height: 300px; /* little bit stretched height */
    }
}
html {
    scroll-behavior: smooth;
}
/* CONTACT SECTION */

/* SECTION */
.contact-section{
    background: var(--contact-bg);
}

/* BANNER */
.contact-banner-full img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* TITLE */
.contact-title{
    color: var(--contact-title) !important;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* BOX */
.contact-box{
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* TEXT */
.contact-box p,
.contact-box strong{
    color: var(--contact-desc);
    line-height: 1.6;
}

/* MAP */
.contact-map iframe{
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px){
    .contact-banner-full img{
        height: 250px;
    }

    .contact-box{
        margin-bottom: 20px;
    }

    .contact-map iframe{
        height: 240px;
    }
}
.principal-section{
    padding:80px 0;
}

.principal-img{
    width:85%;
    height:317px;
    object-fit:cover;
    object-position:top;
    border-radius:18px;
}

.principal-title{
    font-size:35px;
    font-weight:700;
    margin-bottom:15px;
}

.principal-name{
    font-size:26px;
    font-weight:600;
    margin-bottom:5px;
}

.principal-designation{
    font-size:16px;
    margin-bottom:20px;
    color:#666;
}

.principal-text{
    font-size:14px;
    line-height:1.8;
}


/* TABLET */
@media (max-width: 768px){

    .principal-section{
        padding:60px 0;
    }

    .principal-img{
        width:100%;
        height:469px;
        margin-bottom:25px;
        display:block;
    }

    .principal-title{
        font-size:28px;
    }

    .principal-name{
        font-size:22px;
    }

    .principal-section .col-lg-5{
        margin-top:150px !important;
    }
}


/* MOBILE */
@media (max-width: 480px){

    .principal-section{
        padding:40px 0;
        overflow:hidden;
    }

    .principal-img{
        width:100%;
        height:220px;
        margin-bottom:20px;
        position:relative;
        z-index:1;
        margin-top: 28px;
    }

    .principal-title{
        font-size:24px;
        line-height:1.3;
    }

    .principal-name{
        font-size:20px;
    }

    .principal-designation{
        font-size:14px;
    }

    .principal-text{
        font-size:13px;
        line-height:1.7;
    }

    .principal-section .col-lg-5{
        margin-top:155px !important;
    }
}

.journey-progress{
    margin:40px auto;
    max-width:100%;
    padding:10px;
    background: rgba(255,255,255,0.75);
    border-radius:18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
}

/* HEADER */
.progress-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}

.progress-title{
    font-weight:700;
    font-size:18px;
    color: var(--primary);
}

.progress-percent{
    font-weight:700;
    font-size:14px;
    padding:5px 12px;
    border-radius:20px;
    background: rgba(138,30,45,0.12);
    color: var(--primary);
}

/* BAR */
.progress-bar-bg{
    width:100%;
    height:12px;
    background:#e5e5e5;
    border-radius:50px;
    overflow:hidden;
}

.progress-bar-fill{
    height:100%;
    background: linear-gradient(
        90deg,
        var(--primary),
        rgba(138,30,45,0.65)
    );
    border-radius:50px;
    transition: width 0.8s ease-in-out;
}

.progress-grid{
    margin-top:20px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}
.stage-block{
    display:flex;
    flex-direction:column;
    gap:1px;
}
.stage-title{
    font-size:18px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:5px;
}

.stage-items{
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* ITEM */
.item{
    display:flex;
    align-items:center;

    padding:10px 14px;

    border-radius:22px;

    font-size:14px;
    font-weight:500;

    box-sizing:border-box;

    position:relative;
}

/* DONE */
.item.done{
    background:#e7f7ea;
    color:#1e7e34;
}

/* PENDING */
.item.pending{
    background:#fdeaea;
    color:#c0392b;
}
/* DONE ICON */
.item.done .icon{
    background:#1e7e34;
    color:#fff;
    border-radius:50%;
    width:18px;
    height:18px;
}

/* PENDING ICON */
.item.pending .icon{
    background:#c0392b;
    color:#fff;
    border-radius:50%;
    width:18px;
    height:18px;
}
/* TEXT */
.item .text{
    padding-right:20px;
}

/* ICON */
.item .icon{
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);

    font-size:13px;
    font-weight:700;
}
/* FOOTER */
.progress-subtext{
    margin-top:14px;
    font-size:13px;
    color: var(--text);
    text-align:center;
}

/* TABLET */
@media(max-width:768px){

    .progress-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .stage-title{
        font-size:16px;
    }

    .item{
        font-size:13px;
        padding:9px 12px;
    }

    .progress-header{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

}

/* MOBILE */
@media(max-width:480px){

    .journey-progress{
        padding:16px;
        border-radius:14px;
    }

    .progress-title{
        font-size:16px;
    }

    .progress-percent{
        font-size:12px;
        padding:4px 10px;
    }

    .stage-title{
        font-size:15px;
    }

    .item{
        font-size:12px;
        padding:8px 10px;
        border-radius:16px;
    }

    .item .icon{
        right:10px;
        font-size:12px;
    }

    .progress-subtext{
        font-size:12px;
    }

}