/* ===========================
   GLOBAL STYLES
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    line-height: 1.6;
    color: #1f2937;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER WITH LOGO & LANGUAGE DROPDOWN
   =========================== */

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 15px 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    display: block;
}

/* Language Dropdown */
.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-symbol {
    font-size: 18px;
    color: #333;
}

#languageDropdown {
    padding: 5px 8px;
    border: 1.5px solid #667eea;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 130px;
}

#languageDropdown:hover {
    background-color: #f0f0f0;
    border-color: #764ba2;
}

#languageDropdown:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .header-top {
        padding: 10px 15px;
        gap: 10px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    #languageDropdown {
        max-width: 100px;
        padding: 4px 6px;
        font-size: 12px;
    }

    .language-symbol {
        font-size: 16px;
    }
}

/* ===========================
   MAIN CONTENT AREA
   =========================== */

.main-content {
    min-height: auto;
    padding: 3rem 0;
    background-color: transparent;
    width: 100%;
    max-width: 1200px;
}

.main-content .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: auto;
    background: white;
    border-radius: 20px;
    padding: 100px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===========================
   CONTENT WRAPPER STYLES
   =========================== */

.content-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 0.5in;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.sub-title {
    font-size: 1.3rem;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

/* ===========================
   COUNTER LAYOUT - Always Horizontal
   =========================== */

.counter-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
    flex-wrap: nowrap;
}

/* ===========================
   SUB-COUNTER LAYOUT - Men and Women
   =========================== */

.sub-counter-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.sub-counter-display {
    background: linear-gradient(135deg, #fffef5 0%, #faf5ff 100%);
    border: 2px solid #d8b4fe;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 120px;
    width: 120px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sub-counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    margin-bottom: 0.1rem;
}

.sub-counter-text {
    font-size: 0.6rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* ===========================
   COUNTER DISPLAY - Compact Box
   =========================== */

.counter-display {
    background: linear-gradient(135deg, #fffef5 0%, #faf5ff 100%);
    border: 2px solid #d8b4fe;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 150px;
    width: 150px;
}

.counter-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.counter-text {
    font-size: 0.72rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.3px;
}

.wave-text span {
    display: inline-block;
}

.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.05s; }
.wave-text span:nth-child(3) { animation-delay: 0.1s; }
.wave-text span:nth-child(4) { animation-delay: 0.15s; }
.wave-text span:nth-child(5) { animation-delay: 0.2s; }
.wave-text span:nth-child(6) { animation-delay: 0.25s; }
.wave-text span:nth-child(7) { animation-delay: 0.3s; }
.wave-text span:nth-child(8) { animation-delay: 0.35s; }
.wave-text span:nth-child(9) { animation-delay: 0.4s; }
.wave-text span:nth-child(10) { animation-delay: 0.45s; }

/* ===========================
   POPUP STYLES
   =========================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-modal {
    background: linear-gradient(135deg, #fffef5 0%, #faf5ff 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 2px solid #d8b4fe;
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-yes {
    background-color: #10b981;
    color: #fffef5;
}

.btn-yes:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.btn-no {
    background-color: #f3f4f6;
    color: #1f2937;
    border: 2px solid #10b981;
}

.btn-no:hover {
    background-color: #fffdf0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

.popup-overlay.hidden {
    display: none;
}

.popup-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.btn-employment {
    background: linear-gradient(135deg, #fffef5 0%, #faf5ff 100%);
    color: #1f2937;
    border: 2px solid #d8b4fe;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-employment:hover {
    background-color: #fffdf0;
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

/* ===========================
   EMPLOYMENT TYPE SECTION
   =========================== */

.employment-type-section {
    background-color: #fffdf0;
    padding: 2.5rem 0;
    border-top: 1px solid #fef3c7;
    border-bottom: 1px solid #fef3c7;
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.employment-type-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.employment-type-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.employment-type-btn {
    background: linear-gradient(135deg, #fffef5 0%, #faf5ff 100%);
    color: #1f2937;
    border: 2px solid #d8b4fe;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.employment-type-btn:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.employment-type-btn.selected {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fffef5;
    border-color: #10b981;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

@media (max-width: 480px) {
    .employment-type-buttons {
        flex-direction: column;
        align-items: center;
    }

    .employment-type-btn {
        width: 100%;
        max-width: 280px;
    }

    .employment-type-title {
        font-size: 1.3rem;
    }
}

/* ===========================
   STATE-WISE SECTION STYLES
   =========================== */

.statewise-section {
    background: linear-gradient(135deg, #fffef5 0%, #faf5ff 100%);
    padding: 3rem 0;
    border-top: 1px solid #fef3c7;
    border-bottom: 1px solid #fef3c7;
    width: 100%;
    max-width: 1200px;
}

.statewise-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.statewise-dropdown-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.statewise-dropdown {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #1f2937;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.statewise-dropdown:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.statewise-dropdown:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.statewise-data {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.statewise-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.statewise-card h3 {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.statewise-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-items: center;
    align-items: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.info-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    font-family: 'Courier New', monospace;
}

/* ===========================
   RESUME UPLOAD SECTION
   =========================== */

.resume-upload-section {
    background-color: #fffdf0;
    padding: 3rem 0;
    border-top: 1px solid #fef3c7;
    border-bottom: 1px solid #fef3c7;
    width: 100%;
    max-width: 1200px;
}

.resume-upload-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.resume-upload-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-group input[type="file"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.submit-btn,
.cancel-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn {
    background-color: #10b981;
    color: white;
}

.submit-btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.cancel-btn {
    background-color: #f3f4f6;
    color: #1f2937;
    border: 2px solid #d1d5db;
}

.cancel-btn:hover {
    background-color: #e5e7eb;
    border-color: #9ca3af;
}

/* ===========================
   SURVEY FORM SECTION
   =========================== */

.survey-form-section {
    background-color: #fffdf0;
    padding: 3rem 0;
    border-top: 1px solid #fef3c7;
    border-bottom: 1px solid #fef3c7;
    width: 100%;
    max-width: 1200px;
}

.form-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.form-container {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    animation: slideUp 0.3s ease;
}

.survey-form-section .form-container {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: none;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.form-submit,
.form-cancel {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit {
    background-color: #10b981;
    color: white;
}

.form-submit:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.form-cancel {
    background-color: #f3f4f6;
    color: #1f2937;
    border: 2px solid #d1d5db;
}

.form-cancel:hover {
    background-color: #e5e7eb;
    border-color: #9ca3af;
}

.required {
    color: #ef4444;
}

.form-section.hidden {
    display: none;
}

/* ===========================
   FOOTER STYLES
   =========================== */

.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .main-content .container {
        padding: 60px 20px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .sub-title {
        font-size: 1rem;
    }

    .counter-layout {
        gap: 0.8rem;
    }

    .counter-display {
        min-width: 120px;
        width: 120px;
        padding: 0.8rem 1rem;
    }

    .counter-number {
        font-size: 2rem;
    }

    .sub-counter-display {
        min-width: 100px;
        width: 100px;
        height: 90px;
    }

    .form-container {
        padding: 1.5rem;
    }

    .statewise-card {
        padding: 1.5rem;
    }

    .statewise-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .header-top {
        padding: 10px 15px;
        margin-bottom: 20px;
    }

    .main-content .container {
        padding: 40px 15px;
        border-radius: 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .counter-layout {
        gap: 0.6rem;
    }

    .counter-display {
        min-width: 100px;
        width: 100px;
        padding: 0.6rem 0.8rem;
    }

    .counter-number {
        font-size: 1.5rem;
    }

    .counter-text {
        font-size: 0.6rem;
    }

    .form-container {
        padding: 1rem;
        border-radius: 12px;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .button-container,
    .form-buttons {
        flex-direction: column;
    }

    .submit-btn,
    .cancel-btn,
    .form-submit,
    .form-cancel {
        width: 100%;
    }
}

/* ===========================
   SHARE BOX STYLES
   =========================== */

.share-box {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.share-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    border: none;
}

.share-btn:hover {
    transform: scale(1.1);
}

/* Colors */
.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }
.copy { background: #333; }

/* jobs button fix */
.share-btn.jobs {
    background: #ff9800 !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    text-transform: uppercase; /* JOBS */
    letter-spacing: 0.5px;
}
/* Mobile Only Share Box Styles */
@media (max-width: 768px) {
    .footer-share-container {
        margin: 2rem 0;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .share-box {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
    }

    .share-btn {
        width: 65px; /* Increased size */
        height: 65px; /* Increased size */
        font-size: 28px; /* Increased icon size */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .whatsapp { background: #25D366; color: #fff; }
    .facebook { background: #1877F2; color: #fff; }
    .telegram { background: #0088cc; color: #fff; }
    .instagram { background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); color: #fff; }
    .copy { background: #444; color: #fff; }
}



/* Mobile fix */
@media (max-width: 768px) {

  .logo-text {
    font-size: 18px; /* pehle bada tha */
  }


}
/* ==========================================
   FLOATING SOCIAL MEDIA MENU (Desktop & Mobile)
   ========================================== */

.floating-share-menu {
    position: fixed;
    right: 20px; /* स्क्रीन के दाईं ओर से दूरी */
    top: 50%;
    transform: translateY(-50%); /* वर्टिकल सेंटर करने के लिए */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999; /* ताकि यह सब कुछ के ऊपर रहे */
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.share-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* सोशल मीडिया ब्रांड कलर्स */
.whatsapp { background-color: #25D366; }
.x-twitter { background-color: #000000; }
.facebook { background-color: #1877F2; }
.linkedin { background-color: #0077B5; }
.telegram { background-color: #0088cc; }
.instagram { background-color: #E4405F; }
.copy { background-color: #6c757d; }

/* मोबाइल के लिए खास सेटिंग्स (ताकि यह फुटर में न जाए) */
@media (max-width: 768px) {
    .floating-share-menu {
        right: 10px; /* मोबाइल पर थोड़ी कम जगह */
        gap: 8px;
    }
    
    .share-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* अगर आप चाहते हैं कि मोबाइल पर यह बाईं ओर दिखे, तो 'right: 20px' को 'left: 10px' कर सकते हैं */
/* ===========================
   MOBILE MENU STYLES
   =========================== */

/* default hide */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #667eea;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #667eea;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 70px;
  right: 20px;
  width: 150px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.mobile-menu a {
  padding: 12px 15px;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* 📱 Mobile view */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  /* desktop menu hide */
  .nav-links {
    display: none;
  }
}

/* ===========================
   MOBILE FOOTER MENU STYLES
   =========================== */

.mobile-footer-menu {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 10px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  flex-direction: column;
  width: 180px;
  z-index: 999;
}

.mobile-footer-menu a {
  padding: 12px;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.mobile-footer-menu a:last-child {
  border-bottom: none;
}

/* Desktop - hide footer menu */
@media (min-width: 769px) {
  .mobile-footer-menu {
    display: none !important;
  }
}
/* HAMBURGER BUTTON */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 28px;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hide links by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #667eea;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex; /* Show links when 'active' class is added */
    }

    .nav-links li {
        margin: 10px 0;
    }

    .language-selector {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }
}