   
    iframe.goog-te-banner-frame {
        display: none !important;
    }

    .goog-te-banner-frame {
        display: none !important;
    }

    body {
        position: static !important;
        top: 0 !important;
    }

    html {
        margin-top: 0 !important;
    }

    .goog-tooltip,
    .goog-tooltip:hover {
        display: none !important;
    }

    .goog-text-highlight {
        background: none !important;
        box-shadow: none !important;
    }




    .join-badge {
        position: relative;
        padding: 5px 22px;
        background: linear-gradient(45deg, #ff512f, #f09819);
        color: #fff;
        font-weight: 700;
        border-radius: 999px;
        text-decoration: none;
        letter-spacing: 0.5px;
        animation: float 2.5s ease-in-out infinite, shake 4s infinite;
        box-shadow: 0 0 15px rgba(255, 81, 47, 0.6);
    }
    




                            /* ❌ Default: Desktop hide */
                            .join-badge-mobile {
                                display: none;
                            }

                            /* ✅ Mobile only */
                            @media (max-width: 768px) {
                                .join-badge-mobile {
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;

                                    /* position: fixed; */
                                    /* bottom: 20px;
        right: 20px; */

                                    /* width: 52px;
        height: 52px; */

                                    /* background: #25D366;
        color: #fff;
        font-size: 24px;
        border-radius: 50%; */

                                    /* box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        z-index: 99999;  */
                                    /* text-decoration: none; */
                                }
                            }





    /* ===== Modal size ===== */
    .modal-dialog {
        max-width: 380px;
        margin: auto;
    }

    /* ===== Smooth entry animation ===== */
    .modal.fade .modal-dialog {
        transform: translateY(40px) scale(.92);
        opacity: 0;
        transition: .45s cubic-bezier(.25, .8, .25, 1);
    }

    .modal.show .modal-dialog {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    /* ===== Card ===== */
    .id-app-card {
        background: linear-gradient(180deg, #ffffff, #f5f9ff);
        border-radius: 26px;
        overflow: hidden;
        border: none;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
        position: relative;
    }

    /* ===== Header ===== */
    .id-header {
        background: linear-gradient(135deg, #1a2fff, #0066ff, #00c6ff);
        color: #fff;
        padding: 15px;
        text-align: center;
        font-weight: 600;
        letter-spacing: .5px;
        position: relative;
    }

    /* Header glow */
    .id-header:after {
        content: '';
        position: absolute;
        bottom: -18px;
        left: 0;
        width: 100%;
        height: 18px;
        background: linear-gradient(to bottom, rgba(0, 198, 255, .45), transparent);
    }

    /* Close */
    .id-header .close {
        position: absolute;
        right: 12px;
        top: 8px;
        color: #fff;
        opacity: 1;
    }

    /* ===== Logo ===== */
    .id-logo {
        text-align: center;
        margin-top: 14px;
    }

    .id-logo img {
        max-width: 125px;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .25));
    }

    /* ===== Profile ===== */
    .id-profile {
        text-align: center;
        margin-top: 12px;
    }

    /* Glowing profile ring */
    .id-profile img {
        width: 95px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #fff;
        background: #fff;
        box-shadow:
            0 0 0 4px #ff8c00,
            0 0 25px rgba(255, 140, 0, .9);
        animation: pulse 2.5s infinite;
    }

    /* Pulse animation */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 4px #ff8c00, 0 0 15px rgba(255, 140, 0, .6);
        }

        50% {
            box-shadow: 0 0 0 7px #ffae42, 0 0 28px rgba(255, 174, 66, .9);
        }

        100% {
            box-shadow: 0 0 0 4px #ff8c00, 0 0 15px rgba(255, 140, 0, .6);
        }
    }

    /* Name */
    .id-name {
        font-size: 18px;
        font-weight: 700;
        margin-top: 8px;
        color: #1c1c1c;
    }

    /* Badge */
    .id-badge {
        display: inline-block;
        background: linear-gradient(135deg, #ff8c00, #ffb347);
        color: #fff;
        font-size: 12px;
        padding: 4px 14px;
        border-radius: 30px;
        margin-top: 6px;
        box-shadow: 0 6px 14px rgba(255, 140, 0, .45);
    }

    /* ===== Details ===== */
    .id-details {
        padding: 14px 20px;
        font-size: 13px;
    }

    .id-details div {
        display: flex;
        justify-content: space-between;
        margin-bottom: 7px;
        border-bottom: 1px dashed rgba(0, 0, 0, .08);
        padding-bottom: 5px;
    }

    .id-details span:last-child {
        font-weight: 600;
        color: #111;
    }

    .id-details {
        padding: 20px 50px;
        font-size: 14px;
        font-weight: 900;
    }

    /* ===== Bottom ===== */
    .id-bottom {
        background: linear-gradient(135deg, #ff8c00, #ffb347);
        color: #fff;
        padding: 12px;
        /* display:flex; */
        justify-content: space-around;
        text-align: center;
        font-size: 13px;
    }

    .id-bottom b {
        font-size: 15px;
    }
    





            /* ===== Modal size ===== */
            .modal-dialog {
                max-width: 380px;
                margin: auto;
            }

            /* ===== Smooth entry animation ===== */
            .modal.fade .modal-dialog {
                transform: translateY(40px) scale(.92);
                opacity: 0;
                transition: .45s cubic-bezier(.25, .8, .25, 1);
            }

            .modal.show .modal-dialog {
                transform: translateY(0) scale(1);
                opacity: 1;
            }

            /* ===== Card ===== */
            .id-app-card {
                background: linear-gradient(180deg, #ffffff, #f5f9ff);
                border-radius: 26px;
                overflow: hidden;
                border: none;
                box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
                position: relative;
            }

            /* ===== Header ===== */
            .id-header {
                background: linear-gradient(135deg, #1a2fff, #0066ff, #00c6ff);
                color: #fff;
                padding: 15px;
                text-align: center;
                font-weight: 600;
                letter-spacing: .5px;
                position: relative;
            }

            /* Header glow */
            .id-header:after {
                content: '';
                position: absolute;
                bottom: -18px;
                left: 0;
                width: 100%;
                height: 18px;
                background: linear-gradient(to bottom, rgba(0, 198, 255, .45), transparent);
            }

            /* Close */
            .id-header .close {
                position: absolute;
                right: 12px;
                top: 8px;
                color: #fff;
                opacity: 1;
            }

            /* ===== Logo ===== */
            .id-logo {
                text-align: center;
                margin-top: 14px;
            }

            .id-logo img {
                max-width: 125px;
                filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .25));
            }

            /* ===== Profile ===== */
            .id-profile {
                text-align: center;
                margin-top: 12px;
            }

            /* Glowing profile ring */
            .id-profile img {
                width: 95px;
                height: 100px;
                border-radius: 50%;
                object-fit: cover;
                border: 4px solid #fff;
                background: #fff;
                box-shadow:
                    0 0 0 4px #ff8c00,
                    0 0 25px rgba(255, 140, 0, .9);
                animation: pulse 2.5s infinite;
            }

            /* Pulse animation */
            @keyframes pulse {
                0% {
                    box-shadow: 0 0 0 4px #ff8c00, 0 0 15px rgba(255, 140, 0, .6);
                }

                50% {
                    box-shadow: 0 0 0 7px #ffae42, 0 0 28px rgba(255, 174, 66, .9);
                }

                100% {
                    box-shadow: 0 0 0 4px #ff8c00, 0 0 15px rgba(255, 140, 0, .6);
                }
            }

            /* Name */
            .id-name {
                font-size: 18px;
                font-weight: 700;
                margin-top: 8px;
                color: #1c1c1c;
            }

            /* Badge */
            .id-badge {
                display: inline-block;
                background: linear-gradient(135deg, #ff8c00, #ffb347);
                color: #fff;
                font-size: 12px;
                padding: 4px 14px;
                border-radius: 30px;
                margin-top: 6px;
                box-shadow: 0 6px 14px rgba(255, 140, 0, .45);
            }

            /* ===== Details ===== */
            .id-details {
                padding: 14px 20px;
                font-size: 13px;
            }

            .id-details div {
                display: flex;
                justify-content: space-between;
                margin-bottom: 7px;
                border-bottom: 1px dashed rgba(0, 0, 0, .08);
                padding-bottom: 5px;
            }

            .id-details span:last-child {
                font-weight: 600;
                color: #111;
            }

            .id-details {
                padding: 20px 50px;
                font-size: 14px;
                font-weight: 900;
            }

            /* ===== Bottom ===== */
            .id-bottom {
                background: linear-gradient(135deg, #ff8c00, #ffb347);
                color: #fff;
                padding: 12px;
                /* display:flex; */
                justify-content: space-around;
                text-align: center;
                font-size: 13px;
            }

            .id-bottom b {
                font-size: 15px;
            }
            




                .key-feature-title {
                    text-align: center;
                    font-size: 28px;
                    font-weight: 800;
                    margin-bottom: 20px;
                    color: #010753;
                    position: relative;
                }

                .key-feature-title::after {
                    content: '';
                    width: 60px;
                    height: 4px;
                    background: linear-gradient(90deg, #00d1ff, #00ffb5);
                    display: block;
                    margin: 10px auto 0;
                    border-radius: 10px;
                }

                .timeline-list {
                    list-style: none;
                    padding-left: 0;
                    position: relative;
                    max-width: 600px;
                    margin: 50px auto;
                }

                .timeline-list::before {
                    content: '';
                    position: absolute;
                    left: 20px;
                    top: 0;
                    bottom: 0;
                    width: 4px;
                    background: linear-gradient(to bottom, #00d1ff, #00ffb5);
                    border-radius: 2px;
                }

                .timeline-list li {
                    position: relative;
                    margin: 20px 0 20px 50px;
                    padding: 15px 20px;
                    background: rgba(255, 255, 255, 0.08);
                    backdrop-filter: blur(10px);
                    border-radius: 10px;
                    color: #160038;
                    font-weight: 600;
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                    font-size: 22px;
                }

                .timeline-list li::before {
                    content: '';
                    position: absolute;
                    left: -36px;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 14px;
                    height: 14px;
                    background: #00d1ff;
                    border-radius: 50%;
                    border: 2px solid #fff;
                }

                .timeline-list li:hover {
                    transform: translateX(5px);
                    box-shadow: 0 8px 20px rgba(0, 209, 255, 0.4);
                }

                @media (max-width: 768px) {
                    .timeline-list li {
                        font-size: 14px;

                    }
                }
                


    /* <!-- Upcoming Achievements --> */
   
            .upcoming-wrapper {
                display: flex;
                justify-content: center;
                padding: 10px 15px 0px 15px;
            }

            .upcoming-content {
                background: linear-gradient(135deg, #ffffff, #f8f9ff);
                padding: 35px 30px;
                border-radius: 18px;
                max-width: 720px;
                width: 100%;
                box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
            }

            /* ITEM */
            .upcoming-item {
                background: #fff;
                border-radius: 14px;
                padding: 18px 20px;
                margin-bottom: 15px;
                display: flex;
                align-items: center;
                gap: 16px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
                transition: all 0.35s ease;
                position: relative;
                overflow: hidden;
            }

            .upcoming-item:last-child {
                margin-bottom: 0;
            }

            .upcoming-item::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 5px;
                height: 100%;
                background: linear-gradient(180deg, #fca61f, #ffcc70);
            }

            /* ICON */
            .upcoming-item i {
                font-size: 28px;
                color: #fca61f;
                min-width: 36px;
            }

            /* TEXT */
            .upcoming-item span {
                font-size: 12px;
                color: #777;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .upcoming-item h3 {
                margin: 0;
                font-size: 18px;
                font-weight: 600;
                color: #333;
            }

            /* HOVER */
            .upcoming-item:hover {
                transform: translateY(-6px);
                box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
            }

            /* COLOR VARIANTS */
            .upcoming-item.diamond i {
                color: #00c6ff;
            }

            .upcoming-item.diamond::before {
                background: linear-gradient(180deg, #00c6ff, #0072ff);
            }

            .upcoming-item.gold i {
                color: #fca61f;
            }

            .upcoming-item.manager i {
                color: #7b61ff;
            }

            @media(max-width:768px) {
                .upcoming-item h3 {
                    font-size: 16px;
                }
            }

            /* ENTRY ANIMATION */
            .upcoming-item {
                opacity: 0;
                transform: translateY(30px);
                animation: fadeUp 0.8s ease forwards;
            }

            /* STAGGER EFFECT */
            .upcoming-item:nth-child(1) {
                animation-delay: 0.2s;
            }

            .upcoming-item:nth-child(2) {
                animation-delay: 0.4s;
            }

            .upcoming-item:nth-child(3) {
                animation-delay: 0.6s;
            }

            /* FADE UP */
            @keyframes fadeUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* GLOW PULSE (UPCOMING EFFECT) */
            .upcoming-item::after {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 14px;
                box-shadow: 0 0 0 rgba(252, 166, 31, 0.4);
                animation: glowPulse 2.5s infinite;
                pointer-events: none;
            }

            @keyframes glowPulse {
                0% {
                    box-shadow: 0 0 0 0 rgba(252, 166, 31, 0.4);
                }

                70% {
                    box-shadow: 0 0 0 10px rgba(252, 166, 31, 0);
                }

                100% {
                    box-shadow: 0 0 0 0 rgba(252, 166, 31, 0);
                }
            }

            /* SHIMMER FUTURE LINE */
            .upcoming-item::before {
                animation: shimmer 3s linear infinite;
            }

            @keyframes shimmer {
                0% {
                    transform: translateY(-100%);
                }

                100% {
                    transform: translateY(100%);
                }
            }
          

/* gallery  */
            .gallery-item {
                position: relative;
                overflow: hidden;
                border-radius: 12px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                /* background: #f8f9fa; */
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .gallery-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            }


            .gallery-image {
                /* width: 100%; */
                height: 200px !important;
                /* object-fit: cover; */
                object-fit: contain;
                transition: transform 0.3s ease;
                display: block;

            }


            .gallery-item:hover .gallery-image {
                transform: scale(1.05);
            }

            /* Responsive adjustments */
            @media (max-width: 768px) {
                .gallery-image {
                    height: 200px;
                }
            }

            @media (max-width: 576px) {
                .gallery-image {
                    height: 180px;
                }
            }

            /* Loading animation */
            .gallery-image {
                animation: fadeIn 0.5s ease-in;
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                }

                to {
                    opacity: 1;
                }
            }