
        /* Navigation Responsive Styles */
        .nav-toggle {
            display: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
            padding: 10px;
            background: none;
            border: none;
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
                flex-direction: column !important;
                gap: 0 !important;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                z-index: 1000;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                max-height: 600px !important;
            }

            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu li a {
                padding: 18px 20px !important;
                border-radius: 0 !important;
                width: 100%;
                display: block;
            }
        }

        /* Ticker Styles */
        .ticker-container {
            background: #1a1a1a;
            color: white;
            padding: 8px 0;
            /* Reduced from 12px */
            overflow: hidden;
            position: relative;
            margin: 10px 0;
            /* Reduced from 20px */
        }

        .ticker-label {
            background: #ff4444;
            color: white;
            padding: 8px 20px;
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            display: flex;
            align-items: center;
            font-weight: bold;
            z-index: 10;
        }

        .ticker-content {
            display: flex;
            animation: scroll 15s linear infinite;
            /* Sped up from 30s to 15s */
            padding-left: 150px;
        }

        .ticker-item {
            padding: 0 40px;
            white-space: nowrap;
            display: flex;
            align-items: center;
        }

        .ticker-item::before {
            content: '⚠️';
            margin-right: 10px;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Influencer Sections */
        .influencers-section {
            padding: 60px 40px;
            background: #f8f9fa;
        }

        .influencers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .influencer-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .influencer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .influencer-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            aspect-ratio: 1/1;
        }

        .influencer-info {
            padding: 20px;
        }

        .influencer-name {
            font-size: 1.4em;
            font-weight: bold;
            color: #1e3c72;
            margin-bottom: 8px;
        }

        .influencer-category {
            color: #666;
            font-size: 0.95em;
            margin-bottom: 10px;
        }

        .influencer-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-weight: bold;
            color: #1e3c72;
            font-size: 1.1em;
        }

        .stat-label {
            font-size: 0.85em;
            color: #999;
        }

        .top-badge {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #1a1a1a;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            overflow-y: auto;
        }

        .modal-content {
            background: white;
            margin: 50px auto;
            padding: 0;
            width: 90%;
            max-width: 900px;
            border-radius: 15px;
            overflow: hidden;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 30px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 35px;
            cursor: pointer;
            color: white;
        }

        .modal-body {
            padding: 40px;
        }

        .profile-header {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .profile-details h2 {
            color: #1e3c72;
            margin-bottom: 10px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            background: #1e3c72;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #2a5298;
            transform: translateY(-2px);
        }

        /* Forms Section */
        .forms-section {
            background: white;
            padding: 60px 40px;
        }

        .forms-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            margin-top: 30px;
        }

        .form-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .form-card h3 {
            color: #1e3c72;
            margin-bottom: 20px;
            font-size: 1.5em;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1em;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #1e3c72;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
        }

        @media (max-width: 768px) {

            /* Remove ALL horizontal padding for full width on mobile */
            .influencers-section {
                padding: 40px 8px;
            }

            .forms-section {
                padding: 40px 8px;
            }

            /* Hero Section Mobile */
            .pr-hero {
                padding: 25px 15px !important;
            }

            .hero-content {
                padding-right: 0 !important;
                flex-direction: column !important;
                gap: 20px !important;
            }

            .hero-content img {
                order: 1 !important;
                width: 150px !important;
            }

            .hero-text {
                order: 2 !important;
                text-align: center !important;
            }

            /* Forms Container */
            .forms-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            /* Form Cards - Remove extra padding */
            .form-card {
                padding: 20px 15px;
            }

            /* Modal Content */
            .modal-content {
                width: 95%;
                margin: 20px auto;
            }

            .modal-body {
                padding: 20px;
            }

            .profile-header {
                flex-direction: column;
                gap: 20px;
            }

            .profile-image {
                width: 150px;
                height: 150px;
            }

            /* Influencers Grid - Minimal gap */
            .influencers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            /* Make influencer cards square */
            .influencer-image {
                height: auto;
                aspect-ratio: 1/1;
            }

            .influencer-card {
                border-radius: 10px;
            }

            /* Services Section */
            .pr-services {
                padding: 40px 8px !important;
            }

            /* Content sections */
            .content-section {
                padding: 30px 8px !important;
            }

            /* Navigation container */
            .nav-container {
                padding: 0 15px;
            }
        }

        /* Additional mobile improvements */
        @media (max-width: 480px) {

            /* Even less padding on very small screens */
            .pr-hero {
                padding: 20px 10px !important;
            }

            .hero-content img {
                width: 120px !important;
            }

            .influencers-section {
                padding: 30px 5px !important;
            }

            .forms-section {
                padding: 30px 5px !important;
            }

            .influencers-section h2,
            .forms-section h2 {
                font-size: 1.6em !important;
                padding: 0 10px;
            }

            .form-card {
                padding: 15px 10px;
            }

            .hero-text h1 {
                font-size: 1.6em !important;
            }

            .hero-text p {
                font-size: 0.95em !important;
            }

            .ticker-label {
                font-size: 0.8em;
                padding: 8px 10px;
            }

            .ticker-item {
                font-size: 0.85em;
            }

            /* Influencer card text sizing */
            .influencer-name {
                font-size: 1.1em !important;
            }

            .influencer-category {
                font-size: 0.85em !important;
            }

            .stat-value {
                font-size: 0.9em !important;
            }

            .stat-label {
                font-size: 0.75em !important;
            }

            /* Who We Are Section */
            section[style*="padding: 60px"] {
                padding: 25px 10px !important;
            }

            section h2 {
                font-size: 1.6em !important;
            }

            section .services-grid {
                grid-template-columns: 1fr !important;
            }

            /* Reduce gap even more */
            .influencers-grid {
                gap: 5px !important;
            }
        }
        
        /* ===== Shareable Creator Verification Card (v2 - redesigned) ===== */
.creator-card {
    width: 380px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, #1e3c72 0%, #2a5298 30%, #f4faf6 62%, #eef7f0 100%);
    padding: 28px 24px 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.creator-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.creator-card-logo-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.creator-card-logo-circle img {
    width: 130%;
    height: 130%;
    object-fit: contain;
}

.creator-card-brand h2 {
    color: #fff;
    font-size: 1.5em;
    font-weight: 800;
    letter-spacing: .4px;
    margin: 0;
    line-height: 1.1;
}

.creator-card-brand p {
    color: rgba(255,255,255,.9);
    font-size: .78em;
    margin: 2px 0 0;
}

.creator-card-verified-badge {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .6em;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 6px 16px rgba(22,163,74,.45);
    border: 2px solid rgba(255,255,255,.5);
}

.creator-card-verified-badge svg {
    width: 16px;
    height: 16px;
    margin-bottom: 2px;
}

.creator-card-avatar-wrap {
    text-align: center;
    margin: 20px 0 14px;
}

.creator-card-avatar {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    object-fit: cover;
    padding: 4px;
    background: linear-gradient(135deg, #1e3c72, #4a6741);
    box-shadow: 0 10px 26px rgba(0,0,0,.3);
}

.creator-card-name {
    text-align: center;
    font-size: 1.75em;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}

.creator-card-id {
    text-align: center;
    color: #444;
    font-size: .85em;
    margin-bottom: 12px;
}

.creator-card-category {
    display: block;
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: .85em;
    margin: 0 auto 18px;
    padding: 6px 18px;
    background: linear-gradient(135deg, #1e3c72, #4a6741);
    border-radius: 20px;
    width: fit-content;
}

.creator-card-stats {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin-bottom: 16px;
}

.creator-card-stat-value {
    text-align: center;
    font-size: 1.55em;
    font-weight: 800;
    color: #1857d6;
}

.creator-card-stat-label {
    text-align: center;
    color: #333;
    font-size: .8em;
    margin-top: 2px;
}

/* Social icons - display only, no links */
.creator-card-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 0 18px;
}

.creator-card-social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8em;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.creator-card-social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.creator-card-social-icon.facebook { background: #1877f2; }
.creator-card-social-icon.youtube { background: #ff0000; }
.creator-card-social-icon.tiktok { background: #000; }
.creator-card-social-icon.x { background: #000; }

/* Approved strip - now compact, single line */
.creator-card-approved {
    background: rgba(255,255,255,.85);
    border-radius: 10px;
    padding: 7px 14px;
    text-align: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    font-size: .78em;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.creator-card-approved strong { color: #1e3c72; }
.creator-card-approved .dot { opacity: .5; }

.creator-card-qr {
    text-align: center;
    margin-bottom: 16px;
}

.creator-card-qr img {
    width: 118px;
    height: 118px;
    border-radius: 10px;
    background: #fff;
    padding: 7px;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
}

/* Footer - proper Daily Sarhad lockup, not a floating icon */
.creator-card-footer {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.08);
}

.creator-card-footer-tagline {
    font-size: .78em;
    color: #333;
    margin-bottom: 10px;
}

.creator-card-poweredby {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.creator-card-poweredby img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
    padding: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.creator-card-poweredby span {
    font-weight: 800;
    color: #0f2f1f;
    font-size: 1em;
    letter-spacing: .3px;
}

.creator-card-poweredby small {
    display: block;
    font-weight: 400;
    font-size: .72em;
    color: #555;
}

.share-actions {
    text-align: center;
    margin-top: 22px;
}

.share-btn {
    background: linear-gradient(135deg, #1e3c72, #4a6741);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

@media (max-width: 480px) {
    .creator-card { padding: 22px 16px 20px; }
    .creator-card-avatar { width: 118px; height: 118px; }
}

/* ===== Social Icons Row (icons only, no links) ===== */
.creator-card-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 0 18px;
}

.creator-card-social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85em;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.creator-card-social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.creator-card-social-icon.facebook { background: #1877f2; }
.creator-card-social-icon.youtube { background: #ff0000; }
.creator-card-social-icon.tiktok { background: #000; }
.creator-card-social-icon.x { background: #000; }