﻿/* For Product Category */
.wrap-category {
    width: 100%;
    position: relative;
    padding: 10px 0 20px;
}

    /* Swiper wrapper */
    .wrap-category .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }

    /* Swiper slide */
    .wrap-category .swiper-slide {
        height: auto;
        box-sizing: border-box;
    }

.category-box {
    height: 100%;
    min-height: 150px;
    padding: 6px 10px 25px;
    border-radius: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

    /* Hover */
    .category-box:hover {
        transform: translateY(-7px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .category-box .images {
        width: 135px;
        height: 135px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .category-box .images a {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-box .images img {
            width: 90%;
            height: 90%;
            object-fit: contain;
            transition: transform 0.35s ease;
            border-radius: 50%;
            padding: 3px 3px;
            background: aliceblue;
        }

    .category-box:hover .images img {
        transform: scale(1.06);
    }

    .category-box .content {
        width: 100%;
        text-align: center;
    }

    .category-box .title {
        margin: 0 0 8px;
        line-height: 1.2;
    }

        .category-box .title a {
            color: #14263a;
            font-size: 20px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

    .category-box:hover .title a {
        color: #b58a3a;
    }

    .category-box p {
        margin: 0;
        color: #777;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.5;
    }

.wrap-category .button-custom-slider {
    pointer-events: none;
}

.wrap-category .swiper-button-prev,
.wrap-category .swiper-button-next {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.wrap-category .swiper-button-prev {
    left: -55px;
}

.wrap-category .swiper-button-next {
    right: -55px;
}

    .wrap-category .swiper-button-prev:after,
    .wrap-category .swiper-button-next:after {
        font-size: 18px;
        font-weight: 600;
        color: #1b2b3c;
    }

    .wrap-category .swiper-button-prev:hover,
    .wrap-category .swiper-button-next:hover {
        background: #b58a3a;
    }

        .wrap-category .swiper-button-prev:hover:after,
        .wrap-category .swiper-button-next:hover:after {
            color: #fff;
        }

@media (max-width: 991px) {

    .category-box {
        min-height: 290px;
        padding: 25px 12px 20px;
    }

        .category-box .images {
            width: 110px;
            height: 110px;
            margin-bottom: 15px;
        }

        .category-box .title a {
            font-size: 18px;
        }

        .category-box p {
            font-size: 14px;
        }

    .wrap-category .swiper-button-prev {
        left: -20px;
    }

    .wrap-category .swiper-button-next {
        right: -20px;
    }
}

@media (max-width: 767px) {

    .wrap-category {
        padding: 5px 5px 25px;
    }

    .category-box {
        min-height: 240px;
        padding: 20px 8px;
        border-radius: 18px;
    }

        .category-box .images {
            width: 130px!important;
            height: 130px!important;
            margin-bottom: 12px;
        }

        .category-box .title {
            margin-bottom: 5px;
        }

            .category-box .title a {
                font-size: 16px;
            }

        .category-box p {
            font-size: 13px;
        }

    /* Mobile arrow */
    .wrap-category .swiper-button-prev,
    .wrap-category .swiper-button-next {
        width: 38px;
        height: 38px;
    }

    .wrap-category .swiper-button-prev {
        left: -8px;
    }

    .wrap-category .swiper-button-next {
        right: -8px;
    }

        .wrap-category .swiper-button-prev:after,
        .wrap-category .swiper-button-next:after {
            font-size: 14px;
        }
}

@media (max-width: 480px) {

    .category-box {
        min-height: 220px;
        padding: 18px 6px;
    }

        .category-box .images {
            width: 75px;
            height: 75px;
        }

        .category-box .title a {
            font-size: 23px;
        }

        .category-box p {
            font-size: 12px;
        }
}

/* For Achiever Card */
.achiever-section {
    padding: 70px 0;
    background: #0c0b08;
}

.achiever-heading h5 {
    color: #d9a441;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 8px;
}

.achiever-heading h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.achiever-card {
    position: relative;
    width: 100%;
    max-width: 330px;
    min-height: 470px;
    margin: 20px auto;
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, rgba(255, 215, 100, .20), transparent 35%), linear-gradient( 145deg, #211707, #604511 35%, #181108 70%, #3b280c );
    border: 1px solid rgba(218, 168, 61, .65);
    border-radius: 22px;
    /*box-shadow: 0 15px 45px rgba(0,0,0,.55), inset 0 0 30px rgba(255,190,50,.08);*/
    padding: 42px 25px 25px;
    text-align: center;
    transition: all .4s ease;
    z-index: 1;
}


    /* Hover */

    .achiever-card:hover {
        transform: translateY(-10px);
        /*box-shadow: 0 25px 55px rgba(0,0,0,.65), 0 0 35px rgba(218,168,61,.25);*/
        border-color: #e8bd58;
    }

.gold-pattern {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: radial-gradient(circle, #ffd66b 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}


/* Decorative circles */

.achiever-card::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255,211,101,.18);
    border-radius: 50%;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.achiever-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255,211,101,.08);
    border-radius: 50%;
    bottom: -170px;
    left: 50%;
    transform: translateX(-50%);
}

.achiever-crown {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffd45c;
    font-size: 28px;
    filter: drop-shadow(0 0 7px rgba(255,202,75,.6));
    z-index: 5;
}

.achiever-badge {
    position: absolute;
    top: 25px;
    right: 22px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #7b4c00;
    background: linear-gradient( 145deg, #fff1a8, #d89c20, #fff0a0 );
    border: 3px solid #ffe18a;
    box-shadow: 0 4px 12px rgba(0,0,0,.4), 0 0 12px rgba(255,204,70,.3);
    z-index: 5;
}

    .achiever-badge i {
        font-size: 21px;
    }

.achiever-ribbon {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient( 90deg, #8d5d12, #f1c75b, #9a6918 );
    color: #241702;
    padding: 5px 22px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,.35);
    z-index: 4;
}

.achiever-image-wrap {
    position: relative;
    margin-top: 48px;
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
}


/* Outer frame */

.image-frame-outer {
    position: relative;
    width: 170px;
    height: 170px;
    padding: 7px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #fff2a5, #b77b12, #ffe58a, #8e5d0b, #f5ce65 );
    box-shadow: 0 0 0 4px rgba(255,212,94,.12), 0 8px 25px rgba(0,0,0,.55), 0 0 25px rgba(255,199,61,.22);
    z-index: 2;
}


    /* Decorative outer ring */

    .image-frame-outer::before {
        content: "";
        position: absolute;
        inset: -9px;
        border-radius: 50%;
        border: 2px dashed rgba(255,215,110,.65);
        animation: rotateFrame 15s linear infinite;
    }


/* Inner frame */

.image-frame-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 5px;
    background: #241706;
    overflow: hidden;
}


/* Image */

.achiever-image {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    border-radius: 50%;
    display: block;
    border: 2px solid #d9a441;
    max-width:100%;
}


/* Frame animation */

@keyframes rotateFrame {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.achiever-details {
    position: relative;
    z-index: 3;
}

    .achiever-details h3 {
        margin: 0 0 7px;
        color: #fff;
        font-size: 23px;
        font-weight: 700;
        letter-spacing: .3px;
    }


/* ID */

.achiever-id {
    color: #d8c7a0;
    font-size: 13px;
    margin-bottom: 13px;
}

    .achiever-id i {
        color: #e4b94f;
        margin-right: 5px;
    }


/* Line */

.rank-line {
    width: 65px;
    height: 2px;
    margin: 0 auto 15px;
    background: linear-gradient( 90deg, transparent, #e6b94f, transparent );
}


/* Rank */

.achiever-rank span {
    display: block;
    color: #c5aa72;
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.achiever-rank strong {
    display: block;
    color: #ffd866;
    font-size: 21px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255,204,75,.25);
}


/* Congratulations */

.achievement-text {
    margin-top: 16px;
    color: #e8c76b;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .achievement-text i {
        font-size: 8px;
        margin: 0 5px;
    }

.achiever-slider {
    padding: 10px 5px 35px;
}

    .achiever-slider .swiper-slide {
        display: flex;
        justify-content: center;
    }

@media (max-width: 991px) {

    .achiever-card {
        max-width: 310px;
        min-height: 455px;
    }

    .achiever-heading h2 {
        font-size: 30px;
    }
}


@media (max-width: 767px) {

    .achiever-section {
        padding: 50px 0;
    }

    .achiever-heading h2 {
        font-size: 26px;
    }

    .achiever-card {
        max-width: 300px;
        min-height: 440px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .image-frame-outer {
        width: 155px;
        height: 155px;
    }
}


@media (max-width: 400px) {

    .achiever-card {
        max-width: 285px;
    }

    .image-frame-outer {
        width: 145px;
        height: 145px;
    }

    .achiever-details h3 {
        font-size: 21px;
    }
}

.rad {
    border-radius: 22px!important;
}
.bulk {
    border-radius:50px;
}
.blob-btn:hover {
    color: #FFFFFF;
    border-radius: 50px;
}

@media (max-width: 480px) {
    .flat-category .wrap-category {
        margin-left: 0px;
        
    }
    .flat-box {
        position: relative;
        top: -30px;
    }
    .lin {
        position: relative;
        top: 15px;
    }

    .box-2 {
        height: 360px;
    }
    .mar {
        margin-top: 25px;
    }
    .modal-achiever-slide .achiever-card {        
        max-width: 330px!important;
        
    }
    .icons {
        position: fixed;
        top: 61%!important;
        right: 8% !important;
    }
    .quote-float {
        margin:13px;
    }
    .eve {
        background-repeat:no-repeat;
    }
}

.con {   
    position: relative;   
    top: -20px;
}

.dis:hover {
    transform: translateY(0px)!important;
}

/* for modal */
.new-achiever-card {
    position: relative;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
}

.new-achiever-frame {
    position: relative;
    padding: 12px;
    background: #d4af37;
    border-radius: 4px;
    box-shadow: 0 0 0 3px #8f6b16, 0 0 0 6px #e6c65c, 0 8px 20px rgba(0, 0, 0, 0.20);
}

    /* Inner frame border */
    .new-achiever-frame::before {
        content: "";
        position: absolute;
        inset: 7px;        
        pointer-events: none;
        z-index: 2;
    }

.new-achiever-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f1e8;
    border: 4px solid #6f5110;
}

.new-achiever-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modal-achiever-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.modal-achiever-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.7s ease-in-out;
}

.modal-achiever-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .modal-achiever-slide .achiever-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

/* for social media icons */
.icons {
    position: fixed;
    top: 57%;
    right: 2%;
    width: 169px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

    .icons a {
        padding: 2px;
        font-size: 20px;
        font-family: 'Open Sans', sans-serif;
        margin: 2px;
        text-align: left;
        border-radius: 50px 0px 0px 50px;
        transform: translate(134px, 0px);
        transition: all 0.5s;
    }

        .icons a i {
            margin-right: 20px;            
            height: 40px;
            width: 40px;
            color: black;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            transition: all 0.5s;
        }

            .icons a i.fa-facebook-f {
                background-color: #415ca0;
                color: white;
            }

            .icons a i.fa-instagram {
                background-color: #cf1a6c;
                color: white;
            }

            .icons a i.fa-youtube {
                background-color: #fb141e;
                color: white;
            }

            .icons a i.fa-twitter {
                background-color: #25a5f5;
                color: white;
            }


/* for footer address */
.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .contact-address .address-icon {
        flex: 0 0 15px;
        color: orange;
        margin-top: 13px;
    }

    .contact-address .address-text {
        flex: 1;
        line-height: 28px;
    }

.sub {    
    line-height: 40px!important;
    height: 45px;
}

/* for member login icon */
.quote-float {
    position: fixed;
    right: 0;
    bottom: 300px;
    width: 45px;
    height: 140px;
    background: #020445;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: sideways-rl;
    transform: rotate(180deg);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,.25);
    z-index: 1;
    transition: .3s ease;
    animation: flash 1s infinite;
    margin: 12px;
}

@keyframes flash {

    0% {
        background: #020445;
    }

    50% {
        background: #18218a;
    }

    100% {
        background: #020445;
    }
}

.quote-float:hover {
    background: #07116f;
    color: #fff;
    text-decoration:none;
}

/* for language */
.google-translate {
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Google Translate Box */
    .google-translate #google_translate_element {
        display: inline-flex;
        align-items: center;
        background: #ffffff;
        border: 1px solid #e2e2e2;
        border-radius: 35px;
        padding: 3px 5px;
        height: 38px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        margin: 41px 0;
        position: relative;
        left: 180px;
    }

    /* Google Translate default iframe/dropdown */
    .google-translate .goog-te-gadget {
        font-family: 'Open Sans', sans-serif !important;
        font-size: 0 !important;
        color: transparent !important;
    }

    /* Select dropdown */
    .google-translate .goog-te-combo {
        margin: 0 !important;
        padding: 5px 28px 5px 10px;
        height: 30px;
        min-width: 125px;
        border: none;
        outline: none;
        background: #fff;
        color: #333;
        font-size: 14px;
        font-family: 'Open Sans', sans-serif;
        cursor: pointer;
        border-radius: 4px;
    }

        /* Hover */
        .google-translate .goog-te-combo:hover {
            background: #f7f7f7;
        }

    /* Remove Google branding extra space */
    .google-translate .goog-te-gadget span {
        display: none !important;
    }

/* Google Translate top banner hide */
body {
    top: 0 !important;
}

.goog-te-banner-frame {
    display: none !important;
}

/* Mobile */
@media (max-width: 575.98px) {

    .google-translate #google_translate_element {
        height: 34px;
        padding: 26px 10px;
        position: relative;
        left: 0px;
        background: #3db9ed;
        border-radius: 9px;
    }

    .google-translate .goog-te-combo {
        min-width: 105px;
        height: 28px;
        font-size: 12px;
        padding: 4px 20px 4px 7px;
    }
   
     .heading-section h5 {
            font-size:20px;
        }
    .heading-section h2 {
        font-size: 27px;
    }
    .heading-section h3 {
        font-size: 20px;
    }
    .content h3 {
        font-size: 21px;
    }
    .txt {
        font-size:30px!important;
    }
    .foot {
        position: relative;
        top: 280px;
        left: 30px;
        background:none;
    }
    .widget-social-footer .icon-bottom a i {
        width: 40px;
        height: 40px;
    }
}

@media screen and (min-width: 400px) and (max-width: 430px) {
    .quote-float {
        position: fixed;
        right: 0;
        bottom: 315px;
    }
    .box-2 {
        padding: 12px 36px 0!important;
    }
    .foot {
        top:250px!important;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1280px) {
    .header_1 #main-nav {
        left:100px!important;
    }
    .google-translate #google_translate_element {
        left:124px!important;
    }
    .quote-float {
        position: fixed;
        right: 0;
        bottom: 340px;
    }
}

/* for testimonial */
.feed {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 700px;
}
.look {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    min-width: 0;
    box-sizing: border-box;
}

    .look .title {
        position: absolute;
        top: 20px;
        left: 30px;
        width: 230px;
        margin: 0 !important;
        z-index: 10;
        font-size: 23px !important;
        line-height: 1.5 !important;
    }

    .look .meta {
        position: absolute;
        top: 98px;
        left: 28px;
        margin: 0 !important;
        z-index: 10;
    }

        .look .meta a {
            white-space: nowrap;
            margin: 0 !important;
        }


/* for govt modal */

/*#exampleModal .modal-dialog {
    max-width: 850px;
    margin: 60px auto;
}*/

#exampleModal .modal-content {
    border: none;
    border-radius: 8px;
/*    overflow: hidden;
*/    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.20);
}

/* Header */
#exampleModal .modal-header {
    position: relative;
    padding: 6px 25px;
    background: #f5f5dc !important;
    border-bottom: 4px solid #1f4d3a;
    display: flex;
    align-items: center;
}

#exampleModal .modal-title {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    color: #1f3d32;
    letter-spacing: 0.2px;
}

/* Close Button */
#exampleModal .close {
    width: 34px;
    height: 34px;
    margin: 0;
    padding: 0;
    border: 1px solid #b9b9a5;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    font-size: 25px;
    line-height: 28px;
    opacity: 1;
    transition: all 0.3s ease;
}

    #exampleModal .close:hover {
        background: #1f4d3a;
        color: #ffffff;
        border-color: #1f4d3a;
    }

/* Body */
#exampleModal .modal-body {
    padding: 8px 32px 8px;
    color: #444;
    font-size: 15px;
    line-height: 1.75;
}

    /* Main Section Headings */
    #exampleModal .modal-body h5 {
        position: relative;
        margin-top: 20px;
        margin-bottom: 12px;
        padding-left: 14px;
        font-size: 18px;
        font-weight: 700;
        color: #1f4d3a;
        border-left: 4px solid #c59d5f;
    }

        /* First heading */
        #exampleModal .modal-body h5:first-child {
            margin-top: 0;
            padding: 12px 15px;
            border-left: none;
            border-bottom: 1px solid #ddd;
            background: #f7f7f2;
            color: #1f3d32;
            font-size: 20px;
        }

    /* Paragraph */
    #exampleModal .modal-body p {
        margin-bottom: 10px;
        color: #555;
    }

        /* Highlight Labels */
        #exampleModal .modal-body p b {
            font-weight: 700;
            color: #333;
        }

            /* Acknowledgement / Resolution */
            #exampleModal .modal-body p b[style] {
                color: #8a6d1d !important;
                font-weight: 700;
            }

    /* Contact Details Section */
    #exampleModal .modal-body h5:nth-of-type(3) {
        margin-top: 25px;        
        
    }

        /* Contact information */
        #exampleModal .modal-body h5:nth-of-type(3) + p {
            margin-top: 15px;
        }

        /* Contact labels */
        #exampleModal .modal-body h5:nth-of-type(3) ~ p b {
            display: inline-block;
            min-width: 145px;
            color: #8a6d1d;
        }

/* Subtle document effect */
#exampleModal .modal-body {
    background: linear-gradient( to bottom, rgba(245, 245, 220, 0.25), rgba(255, 255, 255, 1) );
}

/* Mobile */
@media (max-width: 767px) {

    #exampleModal .modal-dialog {
        max-width: calc(100% - 24px);
        margin: 35px auto;
    }

    #exampleModal .modal-header {
        padding: 15px 18px;
    }

    #exampleModal .modal-title {
        font-size: 19px;
    }

    #exampleModal .modal-body {
        padding: 22px 18px 25px;
        font-size: 14px;
        line-height: 1.7;
    }

        #exampleModal .modal-body h5 {
            font-size: 17px;
        }

            #exampleModal .modal-body h5:first-child {
                font-size: 18px;
            }

            #exampleModal .modal-body h5:nth-of-type(3) ~ p b {
                min-width: 120px;
            }
}

/* Small Mobile */
@media (max-width: 480px) {

    #exampleModal .modal-dialog {
        max-width: calc(100% - 16px);
        margin: 20px auto;
    }

    #exampleModal .modal-header {
        padding: 14px 15px;
    }

    #exampleModal .modal-title {
        font-size: 18px;
    }

    #exampleModal .modal-body {
        padding: 18px 15px 22px;
    }

        #exampleModal .modal-body p {
            margin-bottom: 9px;
        }

        #exampleModal .modal-body h5:nth-of-type(3) ~ p b {
            display: block;
            min-width: auto;
            margin-bottom: 2px;
        }

    #exampleModal .close {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }
}