/* ==========================================================================
   1. GLOBAL RESET & TYPOGRAPHY
   ========================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F4F7F9; 
    color: #1E293B;
    overflow-x: hidden;
}

/* ==========================================================================
   2. ANIMATIONS 
   ========================================================================== */
@keyframes shine-text {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* 🟢 گلو ایفیکٹ کو بہت زیادہ پرمیننٹ (More Prominent) اور ایکٹیو کر دیا گیا ہے */
@keyframes tag-glow {
    0% { 
        filter: brightness(1) contrast(1); 
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    }
    100% { 
        filter: brightness(1.3) contrast(1.1); /* زیادہ چمک */
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 25px rgba(255, 255, 255, 0.4); /* تگڑا ہالو (Halo) ایفیکٹ */
    }
}

/* ==========================================================================
   3. PREMIUM HEADER
   ========================================================================== */
header {
    background: linear-gradient(135deg, #0B0F19 0%, #001846 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 70px 20px 90px 20px;
    width: 100vw;
    border-radius: 0 0 45px 45px; 
    box-shadow: 0 10px 30px rgba(0, 24, 70, 0.4);
    position: relative;
    z-index: 20; 
}

header h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    background: linear-gradient(to right, #ffffff 20%, #FFD200 40%, #FFD200 60%, #ffffff 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-text 4s linear infinite;
}

header p {
    font-size: 1.15rem;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* ==========================================================================
   4. INTRO SECTION 
   ========================================================================== */
#intro {
    max-width: 900px;
    background: #FFFFFF;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    text-align: center; 
    position: relative;
    z-index: 1; 
    margin: -50px auto 50px auto; 
    padding: 80px 40px 50px 40px; 
}

#intro h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #001846; 
    margin: 40px 0 15px 0;
    letter-spacing: -0.5px;
}

#intro p {
    font-size: 1.1rem;
    line-height: 1.9; 
    color: #475569;
    margin-bottom: 20px;
}

#intro p strong {
    color: #1E3C72;
    font-weight: 700;
}

/* ==========================================================================
   4.5 WHY JOIN SECTION 
   ========================================================================== */
#why-join {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.why-card {
    background: linear-gradient(145deg, #ffffff, #F8FAFC);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0, 24, 70, 0.08);
    border-left: 8px solid #001846; 
}

.why-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #001846;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.why-sub {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 35px;
    font-weight: 500;
}

.why-list {
    list-style: none; 
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    background: #F1F5F9; 
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid #E2E8F0;
}

.why-list li:hover {
    transform: translateX(10px); 
    background: #E2E8F0;
}

.why-list li span {
    font-size: 2rem; 
    line-height: 1;
}

.why-list li div {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

.why-list li strong {
    color: #001846;
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .why-card {
        padding: 40px 25px;
        border-left: 5px solid #001846;
    }
    .why-card h2 {
        font-size: 1.8rem;
    }
    .why-list li {
        padding: 15px;
        gap: 15px;
        flex-direction: column; 
    }
    .why-list li span {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   5. CATEGORIES & GRID LAYOUT
   ========================================================================== */
#categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 60px 20px;
}

#categories > h2 {
    text-align: center;
    font-size: 2.8rem; 
    font-weight: 900; 
    color: #001846; 
    margin-bottom: 50px;
    text-shadow: 2px 2px 0px rgba(0, 24, 70, 0.1), 5px 5px 15px rgba(0, 24, 70, 0.15); 
    letter-spacing: -1px;
}

.category-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.category-card h3, .category-card > p {
    grid-column: 1 / -1;
    text-align: center;
}

.category-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1E3C72;
    margin-bottom: 10px;
}

.category-card > p {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.7;
}

/* ==========================================================================
   6. CHANNEL CARDS 
   ========================================================================== */
.channel-card {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 40px 25px 30px 25px; 
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    border: 3px solid #E2E8F0; 
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.channel-card:hover {
    transform: translateY(-10px); 
}

.channel-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    transition: color 0.4s ease, -webkit-text-stroke 0.4s ease;
    position: relative;
    z-index: 2; 
}

.channel-card:has(.tag) h4 {
    font-size: 1.15rem; 
    margin-right: 45px; 
    margin-top: 5px;
    line-height: 1.4;
}

.channel-card p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 30px;
}

.join-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.join-btn:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* ==========================================================================
   7. 14 COMPLETELY UNIQUE COLORS
   ========================================================================== */

/* 🟢 ماہ رمضان (سب سے پہلے کارڈ) سے ربن اور کسی بھی قسم کے ٹیگ کو جڑ سے ختم کر دیا گیا ہے */
.category-card:first-child .channel-card:first-child .tag,
.category-card:first-child .channel-card:first-child h4 + .tag, 
.category-card:first-child .channel-card:first-child .most-popular,
.category-card:first-child .channel-card:first-child [class*="tag"] { 
    display: none !important; 
    opacity: 0 !important; 
    visibility: hidden !important; 
    content: none !important;
}
/* 🟢 اب ماہ رمضان والے کارڈ کا ربن بھی کلر فل نظر آئے گا */
.category-card:first-child .channel-card:first-child .tag { 
    display: block !important; /* اب یہ نظر آئے گا */
    background: linear-gradient(135deg, #D4AF37, #AA771C); /* گولڈن پریمیم رنگ */
    color: #000;
    opacity: 1 !important; 
    visibility: visible !important; 
}


/* 🎨 Cat 1, Card 1 (MAH E RAMZAN) */
.category-card:nth-of-type(1) .channel-card:nth-of-type(1) .join-btn { background: linear-gradient(135deg, #D4AF37, #AA771C); color: #000 !important; }
.category-card:nth-of-type(1) .channel-card:nth-of-type(1) { border-color: rgba(212, 175, 55, 0.6); }
.category-card:nth-of-type(1) .channel-card:nth-of-type(1) h4 { color: #AA771C; -webkit-text-stroke: 1px rgba(212, 175, 55, 0.4); }
.category-card:nth-of-type(1) .channel-card:nth-of-type(1):hover { box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4), 0 0 25px rgba(212, 175, 55, 0.3); }

/* 🎨 Cat 1, Card 2 (AZKAR E NAJAA'T) */
.category-card:nth-of-type(1) .channel-card:nth-of-type(2) .join-btn { background: linear-gradient(135deg, #00C6FF, #0072FF); }
.category-card:nth-of-type(1) .channel-card:nth-of-type(2) { border-color: rgba(0, 114, 255, 0.6); }
.category-card:nth-of-type(1) .channel-card:nth-of-type(2) h4 { color: #0072FF; -webkit-text-stroke: 1px rgba(0, 114, 255, 0.4); }
.category-card:nth-of-type(1) .channel-card:nth-of-type(2):hover { box-shadow: 0 15px 35px rgba(0, 114, 255, 0.4), 0 0 25px rgba(0, 114, 255, 0.3); }

/* 🎨 Cat 1, Card 3 (RUKH E ISLAM) */
.category-card:nth-of-type(1) .channel-card:nth-of-type(3) .join-btn { background: linear-gradient(135deg, #1D976C, #93F9B9); color: #000 !important; }
.category-card:nth-of-type(1) .channel-card:nth-of-type(3) { border-color: rgba(29, 151, 108, 0.6); }
.category-card:nth-of-type(1) .channel-card:nth-of-type(3) h4 { color: #1D976C; -webkit-text-stroke: 1px rgba(29, 151, 108, 0.4); }
.category-card:nth-of-type(1) .channel-card:nth-of-type(3):hover { box-shadow: 0 15px 35px rgba(29, 151, 108, 0.4), 0 0 25px rgba(29, 151, 108, 0.3); }

/* 🎨 Cat 2, Card 1 (GLOW & GROW) */
.category-card:nth-of-type(2) .channel-card:nth-of-type(1) .join-btn { background: linear-gradient(135deg, #FF6A88, #FF99AC); }
.category-card:nth-of-type(2) .channel-card:nth-of-type(1) { border-color: rgba(255, 106, 136, 0.6); }
.category-card:nth-of-type(2) .channel-card:nth-of-type(1) h4 { color: #FF6A88; -webkit-text-stroke: 1px rgba(255, 106, 136, 0.4); }
.category-card:nth-of-type(2) .channel-card:nth-of-type(1):hover { box-shadow: 0 15px 35px rgba(255, 106, 136, 0.4), 0 0 25px rgba(255, 106, 136, 0.3); }

/* 🎨 Cat 2, Card 2 (GIRLS SUPPORTER) */
.category-card:nth-of-type(2) .channel-card:nth-of-type(2) .join-btn { background: linear-gradient(135deg, #B19CD9, #775DD0); }
.category-card:nth-of-type(2) .channel-card:nth-of-type(2) { border-color: rgba(119, 93, 208, 0.6); }
.category-card:nth-of-type(2) .channel-card:nth-of-type(2) h4 { color: #775DD0; -webkit-text-stroke: 1px rgba(119, 93, 208, 0.4); }
.category-card:nth-child(2) .channel-card:nth-of-type(2):hover { box-shadow: 0 15px 35px rgba(119, 93, 208, 0.4), 0 0 25px rgba(119, 93, 208, 0.3); }

/* 🎨 Cat 3, Card 1 (TAYYAB SULTANI) */
.category-card:nth-of-type(3) .channel-card:nth-of-type(1) .join-btn { background: linear-gradient(135deg, #ED213A, #93291E); }
.category-card:nth-of-type(3) .channel-card:nth-of-type(1) { border-color: rgba(237, 33, 58, 0.6); }
.category-card:nth-of-type(3) .channel-card:nth-of-type(1) h4 { color: #ED213A; -webkit-text-stroke: 1px rgba(237, 33, 58, 0.4); }
.category-card:nth-of-type(3) .channel-card:nth-of-type(1):hover { box-shadow: 0 15px 35px rgba(237, 33, 58, 0.4), 0 0 25px rgba(237, 33, 58, 0.3); }

/* 🎨 Cat 3, Card 2 (SULTANI STATUS) */
.category-card:nth-of-type(3) .channel-card:nth-of-type(2) .join-btn { background: linear-gradient(135deg, #FF8008, #FFC837); }
.category-card:nth-of-type(3) .channel-card:nth-of-type(2) { border-color: rgba(255, 128, 8, 0.6); }
.category-card:nth-of-type(3) .channel-card:nth-of-type(2) h4 { color: #FF8008; -webkit-text-stroke: 1px rgba(255, 128, 8, 0.4); }
.category-card:nth-of-type(3) .channel-card:nth-of-type(2):hover { box-shadow: 0 15px 35px rgba(255, 128, 8, 0.4), 0 0 25px rgba(255, 128, 8, 0.3); }

/* 🎨 Cat 3, Card 3 (AL JIHAAD) */
.category-card:nth-of-type(3) .channel-card:nth-of-type(3) .join-btn { background: linear-gradient(135deg, #434343, #000000); }
.category-card:nth-of-type(3) .channel-card:nth-of-type(3) { border-color: rgba(67, 67, 67, 0.6); }
.category-card:nth-of-type(3) .channel-card:nth-of-type(3) h4 { color: #434343; -webkit-text-stroke: 1px rgba(67, 67, 67, 0.4); }
.category-card:nth-of-type(3) .channel-card:nth-of-type(3):hover { box-shadow: 0 15px 35px rgba(67, 67, 67, 0.4), 0 0 25px rgba(67, 67, 67, 0.3); }

/* 🎨 Cat 4, Card 1 (MALAL E ISHQ) */
.category-card:nth-of-type(4) .channel-card:nth-of-type(1) .join-btn { background: linear-gradient(135deg, #8E2DE2, #4A00E0); }
.category-card:nth-of-type(4) .channel-card:nth-of-type(1) { border-color: rgba(142, 45, 226, 0.6); }
.category-card:nth-of-type(4) .channel-card:nth-of-type(1) h4 { color: #8E2DE2; -webkit-text-stroke: 1px rgba(142, 45, 226, 0.4); }
.category-card:nth-of-type(4) .channel-card:nth-of-type(1):hover { box-shadow: 0 15px 35px rgba(142, 45, 226, 0.4), 0 0 25px rgba(142, 45, 226, 0.3); }

/* 🎨 Cat 5, Card 1 (DIGITAL TAYYAB) */
.category-card:nth-of-type(5) .channel-card:nth-of-type(1) .join-btn { background: linear-gradient(135deg, #4776E6, #8E54E9); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(1) { border-color: rgba(71, 118, 230, 0.6); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(1) h4 { color: #4776E6; -webkit-text-stroke: 1px rgba(71, 118, 230, 0.4); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(1):hover { box-shadow: 0 15px 35px rgba(71, 118, 230, 0.4), 0 0 25px rgba(71, 118, 230, 0.3); }

/* 🎨 Cat 5, Card 2 (BLUEPRINTX FREE SKILLS) */
.category-card:nth-of-type(5) .channel-card:nth-of-type(2) .join-btn { background: linear-gradient(135deg, #11998e, #38ef7d); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(2) { border-color: rgba(17, 153, 142, 0.6); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(2) h4 { color: #11998e; -webkit-text-stroke: 1px rgba(17, 153, 142, 0.4); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(2):hover { box-shadow: 0 15px 35px rgba(17, 153, 142, 0.4), 0 0 25px rgba(17, 153, 142, 0.3); }

/* 🎨 Cat 5, Card 3 (BLUEPRINTX OFFICIAL GUIDE) */
.category-card:nth-of-type(5) .channel-card:nth-of-type(3) .join-btn { background: linear-gradient(135deg, #0052D4, #4364F7); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(3) { border-color: rgba(0, 82, 212, 0.6); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(3) h4 { color: #0052D4; -webkit-text-stroke: 1px rgba(0, 82, 212, 0.4); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(3):hover { box-shadow: 0 15px 35px rgba(0, 82, 212, 0.4), 0 0 25px rgba(0, 82, 212, 0.3); }

/* 🎨 Cat 5, Card 4 (BLUEPRINTX SUCCESS STORIES) */
.category-card:nth-of-type(5) .channel-card:nth-of-type(4) .join-btn { background: linear-gradient(135deg, #c31432, #240b36); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(4) { border-color: rgba(195, 20, 50, 0.6); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(4) h4 { color: #c31432; -webkit-text-stroke: 1px rgba(195, 20, 50, 0.4); }
.category-card:nth-of-type(5) .channel-card:nth-of-type(4):hover { box-shadow: 0 15px 35px rgba(195, 20, 50, 0.4), 0 0 25px rgba(195, 20, 50, 0.3); }

/* 🎨 Cat 6, Card 1 (HEALTH CARE) */
.category-card:nth-of-type(6) .channel-card:nth-of-type(1) .join-btn { background: linear-gradient(135deg, #008080, #228B22); }
.category-card:nth-of-type(6) .channel-card:nth-of-type(1) { border-color: rgba(0, 128, 128, 0.6); }
.category-card:nth-of-type(6) .channel-card:nth-of-type(1) h4 { color: #008080; -webkit-text-stroke: 1px rgba(0, 128, 128, 0.4); }
.category-card:nth-of-type(6) .channel-card:nth-of-type(1):hover { box-shadow: 0 15px 35px rgba(0, 128, 128, 0.4), 0 0 25px rgba(0, 128, 128, 0.3); }


/* ==========================================================================
   8. DIAGONAL CORNER RIBBONS (Fixed Corners with Strong Glow)
   ========================================================================== */
.tag {
    position: absolute;
    top: 24px;
    right: -55px;
    width: 190px;
    text-align: center;
    color: #FFFFFF;
    padding: 7px 0;
    /* 🟢 ٹیکسٹ کا سائز اور لیٹر سپیسنگ کم کر دی گئی ہے تاکہ یہ پروفیشنل لگے */
    font-size: 0.7rem; 
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px; /* کم پھیلاؤ */
    transform: rotate(45deg); 
    z-index: 10;
    /* 🟢 اینیمیشن سپیڈ تھوڑی تیز کی ہے تاکہ گلو زیادہ ایکٹیو لگے */
    animation: tag-glow 1.2s infinite alternate ease-in-out;
}

/* ==========================================================================
   9. PRE-FOOTER / IMPORTANCE SECTION
   ========================================================================== */
#importance {
    background: linear-gradient(135deg, #FFFFFF, #F8FAFC) !important;
    border-radius: 30px !important;
    padding: 60px 40px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06) !important;
    margin: 40px auto 80px auto !important;
    text-align: center !important; 
}

#importance h2 {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #1E3C72 !important;
    margin-bottom: 25px !important;
}

#importance p {
    font-size: 1.15rem !important;
    color: #475569 !important;
    line-height: 2 !important; 
    text-align: center !important; 
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================================================
   10. PROFESSIONAL FOOTER
   ========================================================================== */
footer {
    background: #0B0F19; 
    color: #94A3B8;
    padding: 40px 20px;
    text-align: center;
    border-top: 5px solid #1E3C72; 
}

footer p {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   11. MOBILE RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
    header { padding: 50px 20px 80px 20px; }
    
    #intro { 
        padding: 70px 20px 40px 20px; 
        margin: -40px 15px 40px 15px; 
    }
    
    #categories { padding: 15px; }
    .channel-card { padding: 35px 20px 25px 20px; }
    #importance { padding: 40px 20px !important; margin: 20px 15px 60px 15px !important; }
    #importance p { text-align: left !important; }
}
/* 🟢 ربن کو ہر صورت میں ظاہر کرنے کے لیے فکس */
.category-card:nth-of-type(1) .channel-card:nth-of-type(1) .tag {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: linear-gradient(135deg, #D4AF37, #AA771C) !important; /* گولڈن رنگ */
    color: #000 !important;
    z-index: 100 !important;
}

/* اگر پہلے سے کوئی 'display: none' لگا ہوا ہے تو اسے ختم کرنے کے لیے */
.category-card:first-child .channel-card:first-child .tag {
    display: block !important;
}

/* ==========================================================================
   HEADER CONTAINER & BLUE CARD SHAPE (Reduced scoop for professional look)
   ========================================================================== */
header {
    background: linear-gradient(135deg, #0B0F19 0%, #001846 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 70px 20px 90px 20px;
    width: 100vw;
    
    /* 🟢 یہ وہ تبدیلی ہے! گولائی کو 45px سے کم کر کے 15px کر دیا گیا ہے۔ */
    /* اس سے نیچے کا کنارہ تھوڑا سیدھا اور زیادہ پروفیشنل لگے گا۔ */
    border-radius: 0 0 15px 15px; 
    
    box-shadow: 0 10px 30px rgba(0, 24, 70, 0.4);
    position: relative;
    z-index: 20; 
}

/* ==========================================================================
   HEADER LOGO (Simplified Border & Clean Golden Glow)
   ========================================================================== */
.header-logo {
    width: 110px !important;
    height: 110px !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
    border-radius: 50%;
    object-fit: cover;
    
    /* 🟢 گہرے گریڈینٹ اور ٹرانسپرنٹ بارڈر کو ہٹا کر ایک صاف سنہری بارڈر لگایا ہے۔ */
    /* اس سے لوگو کے گرد گندا کالا پن ختم ہو جائے گا۔ */
    border: 3px solid #FFD200; 
    
    /* 🟢 چمک (Glow) کو بھی صاف اور کنٹرولڈ کر دیا ہے۔ */
    box-shadow: 0 0 25px rgba(255, 210, 0, 0.7);
    
    /* یہ وہ اینیمیشن ہے جو لوگو کو چمکتا ہوا دکھائے گی */
    animation: logo-pulse 2s infinite ease-in-out;
    
    transition: transform 0.4s ease;
}

/* 🟢 لوگو کے دھڑکنے (Pulse) کی اینیمیشن */
@keyframes logo-pulse {
    0% { box-shadow: 0 0 25px rgba(255, 210, 0, 0.7); }
    50% { box-shadow: 0 0 35px rgba(255, 210, 0, 1); }
    100% { box-shadow: 0 0 25px rgba(255, 210, 0, 0.7); }
}

/* موبائل کے لیے سیٹنگز */
@media (max-width: 768px) {
    header { padding: 50px 20px 80px 20px; }
    .header-logo {
        width: 90px !important;
        height: 90px !important;
        margin-bottom: 15px !important;
        border-width: 2px;
    }
}

