/* General Styles */
body {
    font-family: 'Nastaliq', 'Noto Nastaliq Urdu', serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ✅ ABC CERTIFIED مارکی انیمیشن - نیلے شیڈ میں */
.certified-marquee {
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 9999; /* ہمیشہ سب سے اوپر رہے گا */
    overflow: hidden;
    background: linear-gradient(to right, #01662e, #0f8a65); /* نیلے رنگ کا شاندار شیڈ */
    padding: 10px 0;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 255, 0.3);
}

/* ✅ مارکی کا ٹیکسٹ */
.certified-marquee span {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    animation: marqueeText 20s linear infinite;
    white-space: nowrap;
}

/* ✅ مارکی ایفیکٹ */
@keyframes marqueeText {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* 📌 موبائل ویو کے لیے */
@media (max-width: 768px) {
    .certified-marquee span {
        font-size: 1rem;
    }
}
/* Header Styles */
header {
    background: linear-gradient(135deg, rgb(88, 6, 6),  rgba(0, 0, 0, 0.543));
    color: #015ea1;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out forwards;
}
.top-bar {
    background-color: #34495e;
    padding: 8px;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f1c40f;
    flex-wrap: wrap;
}

.top-bar span {
    margin: 0 0px;
    padding-bottom: 10px;
    padding: 0px;
}
/* Logo Styling */
/* h1 کنٹینر */
.h1-container {
    display: flex;
    justify-content: center; /* سینٹر میں رکھنے کے لیے */
    align-items: center;
    text-align: center;
    padding: 20px;
    
}

/* ہیڈر h1 */
/* ہیڈر h1 */
#homeButton {
    margin: 10px;
    font-size: clamp(2.3rem, 5vw, 3rem); /* ریسپانسیو فونٹ سائز */
    font-weight: 900; /* اضافی بولڈ */
    font-family:'Jameel Noori Nastaleeq', Arial, sans-serif;
    
    color: #015ea1;
    padding: 10px 30px;
    border: 2px solid #a10101;
    border-radius: 80px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); /* چاروں طرف شیڈو */
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.nav-container {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 10px;
    padding-right: 10px;
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(0, 0, 0);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 999px; /* Fully rounded */
    font-family: sans-serif;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: darkred;
}
/* Top Bar */

/* نیوز ٹکر کا بنیادی ڈیزائن */
.news-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #222;
    padding: 8px 0;
    white-space: nowrap;
    direction: ltr; /* لیفٹ ٹو رائٹ ڈائریکشن */
}

/* ٹکر کنٹینٹ */
.news-ticker-content {
    display: flex;
    animation: newsTicker 20s linear infinite;
}

/* کی فریم اینیمیشن (Left to Right) */
@keyframes newsTicker {
    from { transform: translateX(-100%); } /* بائیں سے شروع ہوگا */
    to { transform: translateX(100%); } /* دائیں طرف جائے گا */
}

/* نیوز آئٹمز */
.news-ticker-content span {
    display: inline-block;
    padding: 0 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #f1c40f;
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', Arial, sans-serif;
    white-space: nowrap;
}

/* موبائل کے لیے بہتر ڈیزائن */
@media screen and (max-width: 768px) {
    .news-ticker-content {
        animation: newsTicker 15s linear infinite; /* موبائل پر تھوڑا تیز کریں */
    }

    .news-ticker-content span {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* چھوٹے موبائل فونز کے لیے */
@media screen and (max-width: 480px) {
    .news-ticker-content {
        animation: newsTicker 12s linear infinite;
    }

    .news-ticker-content span {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu&display=swap');
nav {
    background: #222;
    padding: 10px 0; /* Add some padding */
    text-align: center;
    width: 100%;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

nav ul li {
    margin: 5px 10px; /* Adjust margin */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', Arial, sans-serif;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #f1c40f;
    transform: scale(1.1);
}

/* Verification Link - Next Line and Centered */
nav .verification {
    width: 100%; /* Take full width */
    text-align: center; /* Center the link */
    margin-top: 10px; /* Add space above */
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: row; /* Keep items in a row */
        justify-content: center;
        flex-wrap: wrap; /* Allow wrapping */
    }

    nav ul li {
        margin: 5px; /* Reduce margin for smaller screens */
    }

    nav ul li a {
        font-size: 0.9rem; /* Smaller font size for mobile */
        padding: 6px 10px; /* Adjust padding */
    }

    nav .verification {
        margin-top: 5px; /* Reduce space above */
    }
}

.whatsapp-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px; /* تھوڑا نیچے لے جانے کے لیے */
}

.whatsapp-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* بٹن کے درمیان جگہ */
    flex-wrap: wrap; /* موبائل پر بٹن نیچے آجائیں گے */
    margin-top: 10px;
}

.social-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp {
    background-color: #25D366;
}

.whatsapp:hover {
    background-color: #1eb85d;
    transform: scale(1.08);
}

.facebook {
    background-color: #1877F2;
}

.facebook:hover {
    background-color: #165BBD;
    transform: scale(1.08);
}

.social-icon {
    width: 25px;
    height: 25px;
}

@media (max-width: 600px) {
    .social-container {
        flex-direction: column;
        gap: 10px;
    }
}
.call {
    background-color: #015ea1;
}

.call:hover {
    background-color: #e64a19;
    transform: scale(1.08);
}
/* Verification Section */
.verification-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #015ea1, #0c151f);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}
/* 3 button  */
.button-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 0px;
}

.btn {
  padding: 20px 40px;
  font-size: 1rem;
  border: none;
  border-radius: 8px; /* نہ زیادہ گول نہ چوکور */
  color: white;
  cursor: pointer;
  font-family: 'Jameel Noori Nastaleeq', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.btn:hover {
  transform: scale(1.05);
}

/* رنگ */
.red {
  background-color: #e74c3c;
}

.blue {
  background-color: #3498db;
}

.green {
  background-color: #27ae60;
}

#verificationForm {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(0, 206, 209, 0.4), 
                0 0 30px rgba(0, 206, 209, 0.2); /* teal glow */
    text-align: center;
    border: 2px solid #00CED1; /* blue-green border */
    animation: formGlow 3s infinite alternate;
}

@keyframes formGlow {
    from {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
                    0 0 10px rgba(0, 206, 209, 0.5);
    }
    to {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
                    0 0 25px rgba(0, 206, 209, 0.8),
                    0 0 50px rgba(0, 206, 209, 0.5);
    }
}


#verificationForm label {
    font-size: 1.6rem;
    color: #008080; /* teal shade (blue-green) */
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}


#verificationForm input {
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    border: 2px solid #f1c40f;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

#verificationForm input:focus {
    border-color: #2c3e50;
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
    transform: scale(1.05);
}

#verificationForm button {
    display: inline-block;
    width: 100%;
    padding: 12px;
    font-size: 1.3rem;
    background: #f1c40f;
    color: #2c3e50;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#verificationForm button:hover {
    background: #2c3e50;
    color: #fff;
    transform: scale(1.05);
}
/*image*/
.image-container {
    width: 100%; /* مکمل چوڑائی لے گا */
    max-width: 600px; /* زیادہ سے زیادہ چوڑائی */
    margin: auto; /* سینٹر کرنے کے لیے */
    overflow: hidden; /* اضافی مواد ہٹانے کے لیے */
    border-radius: 10px; /* گول کنارے */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-container img {
    padding-top: 20px;
    width: 100%; /* ہمیشہ پیرنٹ ڈِو کے مطابق ایڈجسٹ ہوگا */
    height: auto; /* اصل تناسب برقرار رہے گا */
    display: block;
    border-radius: 10px; /* تصویر کے بھی کنارے گول ہوں */
}
/* Footer */
footer {
    background: linear-gradient(135deg, rgb(88, 6, 6),  rgba(0, 0, 0, 0.543));
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1.5s forwards;
}
/* ✅ WhatsApp Floating Button Position */
#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  animation: flipBounce 5s infinite;
}

/* ✅ WhatsApp Icon Styling */
#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  animation: flipBounce 3s ease-in-out infinite;
}

#whatsapp-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(0, 128, 0, 0.3);
  transition: transform 0.3s;
}

@keyframes flipBounce {
  0% { transform: rotateY(0deg); }
  20% { transform: rotateY(180deg); }
  40% { transform: rotateY(360deg); }
  60% { transform: translateY(-10px); }
  70% { transform: translateY(0px); }
  80% { transform: translateY(-5px); }
  90% { transform: translateY(0px); }
  100% { transform: rotateY(0deg); }
}

@media (max-width: 600px) {
  #whatsapp-btn {
    width: 50px;
    height: 50px;
  }
}
/* ✅ channel Styling */
.channel-section {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: linear-gradient(135deg, #3f0000, #fc0000); /* dark blue gradient */
    color: #e0fafa; /* soft light teal text */
    border-radius: 15px;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Jameel Noori Nastaleeq', serif;
    border: 2px solid #00CED1; /* teal border */
    animation: sectionGlow 3s infinite alternate;
}

@keyframes sectionGlow {
    from {
        box-shadow: 0 0 15px rgba(0, 206, 209, 0.4);
    }
    to {
        box-shadow: 0 0 30px rgba(0, 206, 209, 0.8), 
                    0 0 60px rgba(0, 206, 209, 0.5);
    }
}


.channel-section h2 {
    box-shadow: 0 10px 20px rgb(0, 0, 0);
    font-size: 1.8rem; /* thoda bara */
    margin-bottom: 10px;
    text-align: center; /* center align */
    font-weight: bold;
    font-family: 'Jameel Noori Nastaleeq', Arial, sans-serif;
    color: rgb(255, 200, 0); /* golden base */
    text-shadow: 0 0 5px red, 0 0 10px red; /* red glow */
    animation: blinkRed 1.2s infinite alternate; /* blinking effect */
}

@keyframes blinkRed {
    0% {
        text-shadow: 0 0 10px red, 0 0 30px red, 0 0 50px red;
        color: rgb(251, 255, 0); /* golden */
    }
    100% {
        text-shadow: none;
        color: rgb(255, 255, 255); /* red flash */
    }
}


.channel-section form {
    
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.channel-section input {
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    text-align: center;
}

.channel-section button {
    padding: 12px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    background: #ff4136; /* Red Button */
    color: white;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.channel-section button:hover {
    background: #ff6347;
}

.image-container {
    margin-top: 20px;
}

.image-container img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255,255,255,0.4);
}
.channel-label {
    
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;  /* bara size */
    margin-bottom: 010px;
    font-family: 'Jameel Noori Nastaleeq', Arial, sans-serif;
    
}