/* ===== FOUNDER MODAL ===== */
#founderModal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#founderModal.modal-visible {
    opacity: 1;
}

.founder-modal-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 88vh;
    background: rgba(12, 12, 16, 0.85);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(32px) scale(0.96);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease;
    opacity: 0;
}

#founderModal.modal-visible .founder-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* CLOSE */
.founder-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.founder-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* SCROLL AREA */
.founder-modal-scroll {
    overflow-y: auto;
    padding: 40px 32px 24px;
    flex: 1;
}

/* CUSTOM SCROLLBAR */
.founder-modal-scroll::-webkit-scrollbar {
    width: 4px;
}
.founder-modal-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.founder-modal-scroll::-webkit-scrollbar-thumb {
    background: rgba(45, 91, 255, 0.4);
    border-radius: 99px;
}
.founder-modal-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 91, 255, 0.8);
}

/* IMAGE */
.founder-modal-img-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(45, 91, 255, 0.4);
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 0 32px rgba(45, 91, 255, 0.15);
}
.founder-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAME */
.founder-modal-name {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: white;
    margin-bottom: 10px;
}

/* TAGLINE */
.founder-modal-tagline {
    text-align: center;
    font-size: 13px;
    color: #2D5BFF;
    font-style: italic;
    font-weight: 600;
    line-height: 1.6;
    padding: 0 12px;
}

/* DIVIDER */
.founder-modal-divider {
    width: 40px;
    height: 2px;
    background: rgba(45, 91, 255, 0.4);
    margin: 24px auto;
    border-radius: 99px;
}

/* BODY TEXT */
.founder-modal-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}
.founder-modal-body p:last-child {
    margin-bottom: 0;
}

/* SOCIAL — FIXED BOTTOM */
.founder-modal-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.founder-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #555;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}
.founder-social-btn:hover {
    border-color: #2D5BFF;
    color: #2D5BFF;
    background: rgba(45, 91, 255, 0.08);
    transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 520px) {
    .founder-modal-card {
        border-radius: 20px;
        max-height: 92vh;
    }
    .founder-modal-scroll {
        padding: 32px 20px 20px;
    }
    .founder-modal-social {
        padding: 16px 20px;
    }
}

.mobile-nav {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;

    padding: 10px 20px;
    border-radius: 12px;

    color: #888;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s ease;
}

.mobile-nav:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}

#mobile-overlay {
    backdrop-filter: blur(20px);
    background: rgba(5,5,5,0.9);
}

.overlay-top {
    display: flex;
    justify-content: flex-end;
    padding-top: 30px;
}

.close-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);

    color: white;
    font-size: 18px;

    transition: 0.3s ease;
}

.close-btn:hover {
    background: #2D5BFF;
    transform: rotate(90deg);
}

.mobile-social {
    margin-top: auto;
    margin-bottom: 40px;

    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #aaa;

    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);

    transition: 0.3s ease;
}

.social-icon:hover {
    color: white;
    background: #2D5BFF;
    transform: translateY(-3px);
}
#mobile-overlay {
    transition: all 0.4s ease;
}

/* 🔥 MODAL BASE */
.location-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* BLUR BACKGROUND */
.location-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
}

/* BOX */
.location-box {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 420px;
    max-height: 80vh;

    padding: 25px;
    border-radius: 20px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.1);

    transform: scale(0.9);
    opacity: 0;
    transition: 0.3s ease;

    overflow-y: auto;
}

/* 🔥 SMOOTH SCROLL */
.location-box::-webkit-scrollbar {
    width: 6px;
}
.location-box::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

/* SHOW */
.location-modal.show .location-box {
    transform: scale(1);
    opacity: 1;
}

/* TITLE */
.location-box h2 {
    text-align: center;
    font-weight: 900;
    margin-bottom: 20px;
}

/* LIST */
.location-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ITEM */
.location-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px;
    border-radius: 14px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    text-decoration: none;
    color: white;

    transition: 0.3s ease;
}

/* ICON */
.loc-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background: rgba(45,91,255,0.15);
    color: #2D5BFF;
}

/* CONTENT */
.loc-content {
    display: flex;
    flex-direction: column;
}

.loc-name {
    font-weight: 700;
    font-size: 14px;
}

.loc-sub {
    font-size: 11px;
    color: #aaa;
}

/* ARROW */
.loc-arrow {
    margin-left: auto;
    opacity: 0.6;
    transition: 0.3s;
}

/* HOVER */
.location-item:hover {
    background: rgba(45,91,255,0.15);
    transform: translateX(6px);
}

.location-item:hover .loc-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* CLOSE */
.location-close {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 36px;
    height: 36px;

    border-radius: 50%;
    border: none;

    background: rgba(255,255,255,0.1);
    color: white;

    cursor: pointer;
}

.hero-heading {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -2px;
    text-align: left;
    margin-bottom: 2rem; /* ✅ YEH ADD KARO */


    /* DEFAULT = DESKTOP (LEFT) */
    text-align: left;
}


/* Blue text */
.hero-heading span {
    color: #2D5BFF;
}


/* 🔥 MOBILE FIX */
@media (max-width: 768px) {
    .hero-heading {
        text-align: center;
        font-size: 3.2rem;
        line-height: 1.05;
    }
}

/* 🔥 BUTTON SIZE CONTROL */
.pg-buttons a {
    flex: unset !important;      /* equal width hatao */
    width: auto !important;      /* content ke hisaab se size */
    padding: 10px 20px !important;  /* chhota size */
    font-size: 12px !important;  /* text chhota */
    border-radius: 10px;
}

/* 🔥 CONTAINER ALIGNMENT */
.pg-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start; /* left align like desktop */
}

/* 📱 MOBILE FIX */
@media (max-width: 600px) {
    .pg-buttons {
        justify-content: center; /* center mobile pe */
    }

    .pg-buttons a {
        padding: 10px 18px !important;
        font-size: 11px !important;
    }
}