﻿.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section {
    background-image: linear-gradient(rgb(0 0 0 / 61%), rgb(0 0 0 / 67%)), url('/Images/img1.jpg');
    color: white;
}


/* Ticker container */
.ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #2c3e50;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 60px;
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.ticker-header {
    background-color: #e74c3c;
    color: white;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 150px;
    position: relative;
    z-index: 2;
}

.ticker-content {
    display: flex;
    flex: 1;
    position: relative;
    height: 100%;
    align-items: center;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    height: 100%;
    font-size: 1rem;
}

    .ticker-item a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .ticker-item a:hover {
            color: #3498db;
        }

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-animation {
    display: inline-block;
    animation: ticker 20s linear infinite;
}

.ticker-container:hover .ticker-animation {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .ticker-header {
        font-size: 0.9rem;
        min-width: 120px;
    }

    .ticker-item {
        font-size: 0.9rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .ticker-header {
        display: none;
    }

    .ticker-container {
        height: 50px;
    }
}

.ticker-item::after {
    content: "•";
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    right: -5px;
}

.ticker-item:last-child::after {
    display: none;
}

.content p {
    font-size: 14px
}

/* Notification Button Styles */
.notification-btn-wrapper.right-bottom {
    position: fixed;
    bottom: 24px;
    right: 32px;
    z-index: 1000;
}

.notification-btn {
    background: linear-gradient(90deg, #212529bf 30%, #373b3ed9 100%);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    cursor: pointer;
    transition: background 0.24s, transform 0.16s;
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

    .notification-btn:hover {
        background: linear-gradient(90deg, #0069f7 30%, #00bfae 100%);
        transform: scale(1.05);
    }


.notification-dot {
    position: absolute;
    top: 12px;
    right: 29px;
    width: 14px;
    height: 14px;
    background: red;
    border-radius: 50%;
    border: 2px solid white; /* Small white outline */
}

.bell {
    font-size: 22px;
    animation: ring 1.2s infinite ease-in-out;
}

@keyframes ring {
    0% {
        transform: rotate(-10deg);
    }

    10% {
        transform: rotate(10deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(8deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.notification-modal {
    position: absolute;
    right: 0;
    bottom: 56px;
    min-width: 320px;
    max-width: 90vw;
    background: #e1eaf7;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(36,89,128,0.28);
    padding: 16px 16px 14px 16px;
    display: none;
    z-index: 1500;
    animation: fadeInUpRight 0.3s;
}

@keyframes fadeInUpRight {
    from {
        opacity: 0;
        transform: translateY(30px) translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #96a8af;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.modal-title {
    font-weight: bold;
    font-size: 19px;
    color: #10499d;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: #b70d1d;
    cursor: pointer;
    line-height: 1;
}

.modal-list {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    color: #444;
}

    .modal-list li {
        margin-bottom: 7px;
        font-size: 16px;
    }

        .modal-list li a {
            color: #1c2838
        }

@media (max-width: 700px) {
    .notification-btn-wrapper.right-bottom {
        bottom: 16px;
        right: 12px;
    }

    .notification-modal {
        min-width: 180px;
        font-size: 15px;
        padding: 10px 6px 8px 8px;
    }

    .modal-title {
        font-size: 17px;
    }

    .notification-btn {
        font-size: 15px;
        padding: 8px 13px;
    }
}

.services-btn-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.services-btn {
    background: linear-gradient(100deg, #2453a7 0%, #5286d2 100%);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 18px rgba(36,83,167,0.08);
    transition: transform 0.23s cubic-bezier(.28,.97,.52,1.46), box-shadow 0.21s, background 0.23s;
    font-size: 1.15rem;
    outline: none;
}

    .services-btn .btn-icon {
        margin-right: 14px;
        font-size: 1.5em;
        display: flex;
        align-items: center;
        transition: transform 0.21s;
    }

    /* Hover effect: softer scale only, no rotation */
    .services-btn:hover, .services-btn:focus {
        background: linear-gradient(110deg, #1e3966 0%, #3a6fb8 100%);
        transform: scale(1.06);
        box-shadow: 0 8px 32px 2px rgba(36,83,167,0.12);
    }

        .services-btn:hover .btn-icon,
        .services-btn:focus .btn-icon {
            transform: scale(1.11);
        }

@media (max-width: 900px) {
    .services-btn-row {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .services-btn {
        justify-content: center;
        font-size: 1rem;
    }
}

.top-right-btn {
    position: fixed;
    top: 110px;
    right: -6px;
    z-index: 100;
}

.btn-app {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    color: #fff;
    padding: 10px 25px;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
}

    .btn-app:hover {
        background: linear-gradient(45deg, #00c6ff, #007bff);
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
    }

    .btn-app::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 60%);
        transform: skewX(-25deg);
        animation: shine 2.5s infinite;
    }

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

@media (max-width: 768px) {
    .btn-app {
        padding: 8px 20px;
        font-size: 14px;
    }
}

.animated-download {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    /* Hover lift effect */
    .animated-download:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
    }

    .animated-download::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.6), transparent );
        transition: left 0.6s ease;
    }

    .animated-download:hover::after {
        left: 125%;
    }

@keyframes downloadPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13,110,253,0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(13,110,253,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13,110,253,0);
    }
}

.animated-download {
    animation: downloadPulse 2.5s infinite;
}

.LATEST-btn {
    /* position: fixed;
        top: 110px;
        right: -6px;*/
    z-index: 100;
    background-color: var(--accent-color);
    position: relative;
    padding: 25px;
    color: whitesmoke;
    font-family: "Raleway", sans-serif;
    font-weight: 600
}
/* ================================
   MEMBERSHIP GLASS MODAL
================================ */

.membership-glass-modal .modal-dialog {
    max-width: 480px;
    padding: 15px;
}

/* Main Glass Card */
.membership-glass-modal .glass-content {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}


    /* Decorative gradient circle */
    .membership-glass-modal .glass-content::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        top: -90px;
        right: -70px;
        border-radius: 50%;
        background: linear-gradient( 135deg, rgba(37, 99, 235, 0.30), rgba(14, 165, 233, 0.12) );
        filter: blur(5px);
        pointer-events: none;
    }


/* ================================
   HEADER
================================ */

.membership-glass-modal .glass-header {
    position: relative;
    padding: 24px 26px 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.20);
    background: rgba(255, 255, 255, 0.15);
}


.membership-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}


.membership-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #0284c7);
    color: #fff;
    font-size: 19px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}


.membership-heading h5 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
}


.membership-heading p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #64748b;
}


/* Close Button */
.membership-glass-modal .glass-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 30px;
    height: 30px;
    padding: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.10);
    opacity: 0.7;
    transition: all 0.2s ease;
}


    .membership-glass-modal .glass-close:hover {
        opacity: 1;
        transform: rotate(90deg);
    }


/* ================================
   BODY
================================ */

.membership-glass-modal .glass-body {
    position: relative;
    padding: 28px 26px 22px;
}


.cif-field label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}


    .cif-field label span {
        color: #dc2626;
    }


.cif-input-wrapper {
    position: relative;
}


    .cif-input-wrapper .input-icon {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #64748b;
        font-size: 17px;
        z-index: 2;
        pointer-events: none;
    }


.membership-glass-modal .glass-input {
    height: 52px;
    padding: 10px 16px 10px 47px;
    border-radius: 13px;
    border: 1px solid rgba(148, 163, 184, 0.40);
    background: rgba(255, 255, 255, 0.65);
    color: #0f172a;
    font-size: 15px;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03), 0 3px 12px rgba(15, 23, 42, 0.03);
    transition: all 0.25s ease;
}


    .membership-glass-modal .glass-input::placeholder {
        color: #94a3b8;
    }


    .membership-glass-modal .glass-input:focus {
        background: rgba(255, 255, 255, 0.90);
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12), 0 6px 20px rgba(37, 99, 235, 0.08);
        outline: none;
    }


.cif-field small {
    display: block;
    margin-top: 8px;
    color: #94a3b8;
    font-size: 12px;
}


/* ================================
   FOOTER
================================ */

.membership-glass-modal .glass-footer {
    padding: 5px 26px 26px;
    border: none;
    background: transparent;
}


.membership-next-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb, #0284c7);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    transition: all 0.25s ease;
}


    .membership-next-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(37, 99, 235, 0.32);
    }


    .membership-next-btn:active {
        transform: translateY(0);
    }


    .membership-next-btn i {
        font-size: 13px;
        transition: transform 0.25s ease;
    }


    .membership-next-btn:hover i {
        transform: translateX(4px);
    }


/* ================================
   BACKDROP
================================ */

.modal-backdrop.show {
    opacity: 0.45;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 576px) {

    .membership-glass-modal .modal-dialog {
        margin: 12px;
        padding: 0;
    }

    .membership-glass-modal .glass-header {
        padding: 21px 20px 18px;
    }

    .membership-glass-modal .glass-body {
        padding: 24px 20px 20px;
    }

    .membership-glass-modal .glass-footer {
        padding: 4px 20px 22px;
    }

    .membership-icon {
        width: 44px;
        height: 44px;
    }

    .membership-heading h5 {
        font-size: 17px;
    }

    .membership-heading p {
        font-size: 12px;
    }
}
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup-card {
    width: 360px;
    background: #f9f4f4;
    border-radius: 18px;
    text-align: center;
    padding: 60px 30px 30px;
    position: relative;
    box-shadow: 0 18px 35px rgba(0,0,0,.25);
    animation: popupScale .25s ease;
}

.popup-icon {
    width: 86px;
    height: 86px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    position: absolute;
    left: 50%;
    top: -43px;
    transform: translateX(-50%);
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.popup-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 20px;
    height: 20px;
    background: #ff4d73;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-card h2 {
    margin: 0;
    font-size: 32px;
    color: rgb(205 26 64);
}

.popup-card p {
    margin: 12px 0 30px;
    font-size: 17px;
    color: #242b31;
    line-height: 1.5;
}


#popupLoginBtn {
    border: none;
    background: #162a9a;
    color: #fff;
    padding: 8px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 5px 12px #332cb9a6;
    transition: .2s;
}
    #popupLoginBtn:hover {
        transform: translateY(-2px);
        background: #162a9a;
    }

#popupCloseBtn {
    border: none;
    background: #ff5b7f;
    color: #fff;
    padding: 8px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 5px 12px rgba(255,91,127,.35);
    transition: .2s;
}

    #popupCloseBtn:hover {
        transform: translateY(-2px);
        background: #ff4670;
    }

@keyframes popupScale {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
