    :root {
            --primary-color: #2c3e50;
            --secondary-color: #27ae60;
            --accent-color: #f39c12;
            --light-bg: #f4f7f6;
            scroll-behavior: smooth;
        }

        body { 
            width: 100%;
            direction: ltr; 
            text-align: left; 
            font-family: 'Segoe UI', Roboto, sans-serif; 
            margin: 0; 
            padding: 0;
            background-color: var(--light-bg);
            line-height: 1.6;
        }

        header {
            background-image: url("pictures/images.jpg");
            background: cover;
            /* background: rgb(236, 231, 231); */
            padding: 0.5rem 5%;
            /* padding-top: -5rem; */
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.925);
            position: sticky;
            top: -5rem;
            z-index: 10000;
            color: #fff;
        }
        .logo { 
            font-size: 1.5rem; 
            font-weight: bold;
             color: var(--primary-color);
             
             }

        nav ul { 
        display: flex;
        list-style: none; 
        gap: 11px; 
        margin-left: -3rem; 
    }
    nav ul  :hover{
             transition: 0.5s ;
            color: #FFB605;
         }
        nav a {
             text-decoration: none;
             color: #fff;
              font-weight: 500;
             }

        /* Hero Section with Satisfaction Paragraph */
        .hero { 
            padding: 100px 10%; 
            text-align: center; 
            background: linear-gradient(rgba(0, 0, 0, 0.096), rgba(0, 0, 0, 0.397)), url('pictures/header_optimized.jpg') center/cover;
            color: white;
            background: cover;
        }

        .hero h1 { font-size: 2.8rem; margin-bottom: 20px; color: #fff; }

        .trust-paragraph {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.2rem;
            color: #ecf0f1;
            background: rgba(7, 7, 7, 0.247);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid var(--secondary-color);
        }

        /* Instructions Section */
        .instructions {
            padding: 40px 5%;
            background: #fff;
            text-align: center;
        }
        .instruction-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        .step { flex: 1; min-width: 250px; padding: 15px; }
        .step i { color: var(--accent-color); font-size: 2rem; margin-bottom: 10px; }

        /* Course Cards */
        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            padding: 40px 5%;
        }

        .course-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: 0.3s;
            border-top: 5px solid var(--secondary-color);
            .course-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    position: relative; /* یہ شامل کریں */
    z-index: 10;        /* یہ شامل کریں */
    /* باقی کوڈ ویسا ہی رہنے دیں */
}
        }

        .syllabus-box {
            /* display: none; */
            margin-top: 15px;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 8px;
            text-align: left;
            border-left: 3px solid var(--secondary-color);
            animation: slideDown 0.4s ease-out;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn {
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            border: none;
            font-weight: bold;
            transition: 0.3s;
        }

        .secondary-btn { background: var(--primary-color); color: white; width: 100%; margin-top: 10px; }
        .primary-btn { background: var(--secondary-color); color: white; }

        @media (max-width: 768px) {
            header { flex-direction: column; gap: 10px; }
            .hero h1 { font-size: 1.8rem; }
            .trust-paragraph { font-size: 1rem; padding: 15px; }
        }
    
/* Timings Section Styling */
.timing-section {
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.timing-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.timing-header {
    margin-bottom: 50px;
}

.timing-icon {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.timing-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.timing-intro {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Schedule Cards Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.schedule-card {
    background: #f9fdfb;
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #27ae60;
}

.shift-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.morning { background: #e3f2fd; color: #1976d2; }
.afternoon { background: #fff3e0; color: #f57c00; }
.night { background: #f3e5f5; color: #7b1fa2; }

.time-range {
    font-size: 1.4rem;
    font-weight: bold;
    color: #27ae60;
    margin: 10px 0;
}

.shift-desc {
    color: #666;
    font-size: 0.95rem;
}

.satisfaction-note {
    margin-top: 40px;
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timing-title { font-size: 1.8rem; }
    .schedule-grid { grid-template-columns: 1fr; }
}

/* Registration Section Styling */
.registration-section {
    background-color: #eeeeee;
    padding: 40px 5%;
}

.form-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

/* Common style for all inputs, select, and textarea */
.form-input, 
.form-select, 
.form-textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
    outline: none;
    border-color: #27ae60; /* Highlights green on click */
    box-shadow: 0 0 5px rgba(39, 174, 96, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Primary Button Style (Match with your academy theme) */
.primary-btn {
    background-color: #27ae60;
    color: white;
}

.primary-btn:hover {
    background-color: #219150;
}


/* --- Footer Styling --- */
.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 5% 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #27ae60; /* Islamic Green */
    margin-bottom: 20px;
    font-size: 1.4rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #f39c12;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.footer-section p, .footer-section ul li {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #27ae60;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background:  #27ae60;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: 0.4s;
}

.social-icons .fb-icon:hover { background: #3b5998; transform: scale(1.1); }
.social-icons .wa-channel-icon:hover { background: #25d366; transform: scale(1.1); }

.channel-text {
    font-size: 0.8rem;
    margin-top: 10px;
    font-style: italic;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #3e5871;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
}


/* Instructor Qualification Section */
.qualification-section {
    padding: 80px 5%;
    background-color: #0d3b66; /* Deep blue from your image */
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

.qual-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.qual-text-side {
    flex: 1;
    min-width: 300px;
}

.qual-main-heading {
    font-size: 2.5rem;
    color: #f4d35e; /* Golden color */
    margin-bottom: 30px;
    border-bottom: 3px solid #f4d35e;
    display: inline-block;
}

.degree-list {
    margin-bottom: 30px;
}

.degree-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-left: 5px solid #f4d35e;
    transition: 0.3s;
}

.degree-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.instructor-info {
    margin-top: 40px;
}

.instructor-name {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.admission-badge {
    background: #ee4b2b;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* Image Side Styles */
.qual-image-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
}

.quran-frame {
    width: 250px;
    height: 180px;
    border: 5px solid #f4d35e;
    border-radius: 50% 50% 0 0; /* Dome shape */
    overflow: hidden;
    margin-bottom: -50px; /* Overlap effect */
    z-index: 1;
}

.top-quran-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-main-box {
    width: 320px;
    height: 320px;
    border: 8px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.instructor-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-icons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    gap: 15px;
    color: #0d3b66;
    font-size: 1.5rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .qual-container { flex-direction: column-reverse; text-align: center; }
    .degree-item { justify-content: center; }
    .qual-main-heading { font-size: 1.8rem; }
}



/* Floating WhatsApp Button Styling */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;      /* Niche se fasla */
    right: 40px;       /* Right side se fasla */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;   /* Icon ka size */
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000;    /* Taaki ye har cheez ke upar nazar aaye */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Button par mouse le jaane ka effect (Hover) */
.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1); /* Thoda sa bada ho jayega */
    color: #FFF;
}

/* Mobile ke liye size thoda chota (taki screen par jagah zyada na ghairay) */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}



/* فون نمبر اور جھنڈے کی سیٹنگ */
.iti {
    width: 100%; /* تاکہ یہ پورے باکس پر آئے */
    margin-bottom: 15px;
}

.form-input {
    width: 100% !important;
    padding: 12px 12px 12px 50px !important; /* جھنڈے کے لیے جگہ چھوڑنا */
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* ڈراپ ڈاؤن لسٹ کا اسٹائل */
.iti__country-list {
    background-color: white;
    border: 1px solid #ddd;
    color: #333;
}


 nav button{
    /* position: fixed;  */
    padding: 7px;
    /* margin-left: -4rem; */
    border-radius: 3px;
    font-weight: bold;
    z-index: 5;
    background-color:  #070707;
    color: white;
    border: none;
}
.nav ul{
    position: fixed;
    background-color: rgb(15, 13, 13);
    padding-top: 5rem;
    border-bottom-right-radius: 1rem;
    border-right: 2px solid yellow;
    border-bottom: 2px solid yellow;
}

.nav ul li{
    padding:7px ;
    list-style: none;
    scroll-behavior: smooth;
}
.nav ul li a{
    color: white;
    text-decoration: none;
    /* margin: 5px; */
    font-weight: bold;
}

 .nav ul li a:hover{
    color: #FFC300;
    border-bottom:3px solid #FFC300 ;
    transition: 0.1s;
 }
 
 #menu{
    max-height: 100%;
    padding-top:3rem;
    margin-top: -5rem;
    z-index: 2;
}
.nav #menu{
    background-color:#080808f8;
    margin-left: -2.5rem;
        padding-top: 5rem;
    }

    .registration-section {
    background: #000;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.registration-card {
    background: #000;
    border: 1px solid #333;
    padding: 35px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
}

.form-title {
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.input-container { margin-bottom: 20px; }

.input-container label {
    color: #fff;
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input {
    width: 100% !important;
    padding: 12px;
    background: #fff;
    border: 2px solid #f39c12; /* Orange Border */
    border-radius: 5px;
    font-size: 1rem;
    color: #000;
}

/* WhatsApp Flag Container Fix */
.iti { width: 100%; }

.register-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #f39c12, #e67e22);
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.register-btn:hover { transform: scale(1.02); }

/* WhatsApp Input Fix */
.iti { width: 100%; }

.register-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #f39c12, #e67e22); /* تصویر جیسا گریڈینٹ */
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.register-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

/* WhatsApp Floating Icon Styling */
.wa-float-fixed {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
    z-index: 10000; /* یہ ویب سائٹ کی ہر چیز کے اوپر نظر آئے گا */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* جب ماؤس اوپر آئے تو اثر */
.wa-float-fixed:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(10deg); /* تھوڑا سا گھومے گا اور بڑا ہوگا */
    color: #fff;
}

/* موبائل کے لیے تھوڑا چھوٹا سائز */
@media screen and (max-width: 768px) {
    .wa-float-fixed {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}


/* جھنڈے کو باکس کے اندر صحیح دکھانے کے لیے */
.iti {
    width: 100% !important;
    display: block;
}

.iti__flag-container {
    z-index: 5;
}

.form-input {
    width: 100% !important;
    padding-left: 40px !important; /* واٹس ایپ نمبر کے جھنڈے کے لیے جگہ */
}

/* کنٹری ڈراپ ڈاؤن کے لیے */
#countrySelect {
    padding-left: 12px !important; /* اس میں جھنڈا ٹیکسٹ کے ساتھ ہے */
}

.whatsapp-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-chat-box {
    width: 300px;
    background: #f0f4f2;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: none; /* شروع میں چھپا ہوا ہوگا */
    margin-bottom: 15px;
    overflow: hidden;
    animation: slideUp 0.5s ease;
}

.chat-header {
    background: #25d366; /* واٹس ایپ والا ہرا رنگ */
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    padding: 15px;
}

.message-bubble {
    background: white;
    padding: 12px;
    border-radius: 0 15px 15px 15px;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    position: relative;
}

.chat-time {
    font-size: 10px;
    text-align: right;
    color: #999;
    margin-top: 5px;
}

.chat-btn {
    display: block;
    background: #25d366;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: bold;
}

.whatsapp-trigger {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    float: right;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}



/*user reviews*/
.reviews-section {
    padding: 60px 5%;
    background-color: #f4f7f6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-top: 5px solid var(--secondary-color);
}

.review-card:hover {
    transform: translateY(-10px);
}

.stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-info h4 {
    margin: 0;
    color: var(--primary-color);
}

.user-info span {
    font-size: 0.8rem;
    color: #888;
}

/* live class*/
.live-classroom {
    padding: 50px 5%;
    background: #fff;
    text-align: center;
    border-top: 2px solid #eee;
}

.live-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.live-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    background: #f9f9f9;
    border: 1px solid #ddd;
}

.live-btn img { width: 30px; }

.live-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.google-meet:hover { border-color: #34a853; }
.zoom-btn:hover { border-color: #2d8cff; }
.skype-btn:hover { border-color: #00aff0; }

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}


 /* fee page Flag ka size set karne ke liye */
    .flag-icon { width: 25px; margin-right: 10px; vertical-align: middle; border-radius: 2px; }
    .select2-container--default .select2-selection--single { height: 45px; padding-bottom: 15px; border: 2px solid #27ae60; border-radius: 8px; text-align: left; }
        :root { --primary: #27ae60; --dark: #2c3e50; --light: #f4f7f6; }
        body { font-family: 'Segoe UI', sans-serif; background: var(--light); margin: 0; text-align: center; }
        
        /* Converter Design */
        .converter-section {
            background: white; padding: 30px; margin: 20px auto;
            max-width: 600px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        select {
            padding: 12px; width: 80%; border-radius: 8px; border: 2px solid var(--primary);
            font-size: 16px; outline: none; cursor: pointer;
        }

        /* Cards Layout */
        .pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; padding: 40px; }
        .card {
            background: white; width: 320px; padding: 40px 20px; border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08); position: relative; transition: 0.3s;
        }
        .card:hover { transform: translateY(-10px); }
        .best-value { border: 2px solid var(--primary); }
        .badge {
            background: var(--primary); color: white; padding: 5px 15px;
            border-radius: 20px; position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
        }

        .price-display { font-size: 45px; font-weight: bold; color: var(--dark); margin: 15px 0; }
        .currency-label { font-size: 18px; color: #7f8c8d; }

        .cta-btn {
            display: block; background: var(--primary); color: white; padding: 15px;
            text-decoration: none; border-radius: 10px; font-weight: bold; margin-top: 25px;
        }
   /* Select2 ke andar text ko left align karne ke liye */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left !important;
    padding-left: 10px !important;
    display: flex !important;
    align-items: center !important;
}

/* Dropdown list (options) ko left align karne ke liye */
.select2-results__option {
    text-align: left !important;
}

/* Flag aur text ke darmiyan spacing ke liye */
.flag-icon {
    margin-right: 12px !important;
    flex-shrink: 0;
}
.instruction-card {
    display: flex;
    align-items: center;
    background: #e8f4fd; /* Light Blue background */
    border-left: 5px solid #2980b9; /* Blue border for importance */
    padding: 20px;
    margin: 20px auto;
    max-width: 650px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: left; /* Text alignment left for readability */
}

.icon-circle {
    background: #2980b9;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 20px;
}

.text-content h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 18px;
}

.text-content p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
    .instruction-card {
        flex-direction: column;
        text-align: center;
    }
    .icon-circle {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/*payment icons*/
.payment-security-section {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    text-align: center;
    border: 1px dashed #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payment-security-section p {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.payment-icons img {
    height: 35px; /* Icons ka size ek jaisa rakhne ke liye */
    filter: grayscale(20%); /* Thora professional look dene ke liye */
    transition: 0.3s;
}

.payment-icons img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.security-note {
    font-size: 14px;
    color: #7f8c8d !important;
    font-weight: normal !important;
}


/* menu smothness*/
#menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease; /* Isse smoothly open/close hoga */
    display: block !important; /* hidden attribute ki jagah hum opacity use karenge */
}

#menu.show {
    opacity: 1;
    visibility: visible;
}

/*notice board*/
/* Floating Notice Button Styling */
.floating-notice-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Left side par rakha hai taake Right side par WhatsApp ke liye jagah rahe */
    background-color: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-notice-btn i {
    font-size: 20px;
}

.floating-notice-btn:hover {
    background-color: #219150;
    transform: scale(1.05);
    color: white;
}

/* Mobile screen par thora chota dikhane ke liye */
@media (max-width: 600px) {
    .floating-notice-btn {
        padding: 12px 15px;
        bottom: 20px;
        left: 20px;
    }
    .btn-label {
        display: none; /* Mobile par sirf icon dikhega taake screen block na ho */
    }
}
.floating-notice-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Red Dot styling */
.notification-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    background-color: #e74c3c; /* Red color */
    border-radius: 50%;
    border: 2px solid white;
    display: none; /* Shuru mein chhupa rahega */
}

/* Red Dot ko chamakne (blink) ke liye animation (Optional) */
.notification-dot.active {
    display: block;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* notice board*/
/* Floating Support Styles */
.support-wrapper { position: fixed; bottom: 20px; left: 20px; z-index: 1000; font-family: 'Segoe UI', sans-serif; }

.support-trigger {
    width: 60px; height: 60px; background: #27ae60; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 25px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative; transition: 0.3s;
}

.support-trigger:hover { transform: scale(1.1); }

/* Red Dot Animation */
.nav-red-dot {
    position: absolute; top: 0; right: 5px; width: 15px; height: 15px;
    background: #e74c3c; border: 2px solid white; border-radius: 50%;
    display: block; animation: blink 1.5s infinite;
}

@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

/* Popup Box Design */
.support-popup-box {
    position: absolute; bottom: 80px; left: 0; width: 300px;
    background: white; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: none; overflow: hidden; animation: fadeInUp 0.4s;
}

.support-header { background: #27ae60; color: white; padding: 15px; display: flex; justify-content: space-between; align-items: center; }
.support-body { padding: 20px; }
.support-bubble { background: #f1f1f1; padding: 12px; border-radius: 10px; margin-bottom: 15px; font-size: 14px; }

/* Buttons inside Popup */
.support-nav-btn {
    display: block; padding: 12px; margin-bottom: 10px; border-radius: 8px;
    text-align: center; text-decoration: none; font-weight: bold; font-size: 14px;
    transition: 0.3s;
}
.notice-btn { background: #27ae60; color: white; }
.complaint-btn { background: #2c3e50; color: white; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.close-support { background: none; border: none; color: white; font-size: 20px; cursor: pointer; }

/*free trial blinking button*/
/* Ultra HD Animated Button */
.primary-btn.blinking {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 15px 35px;
    border-radius: 30px; /* Capsule shape for modern look */
    background: linear-gradient(90deg, #27ae60, #2ecc71, #27ae60);
    background-size: 200% auto;
    color: white !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
    animation: gradient-shift 3s linear infinite, glow-pulse 2s ease-in-out infinite;
    transition: all 0.4s ease;
}

/* Background moving gradient effect */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Smooth HD Glow Pulse */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 5px 15px rgba(3, 233, 250, 0.4), 0 0 0 0px rgba(46, 204, 113, 0.4);
    }
    70% {
        box-shadow: 0 15px 30px rgba(246, 250, 3, 0.952), 0 0 0 15px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 5px 15px rgba(240, 11, 11, 0.966), 0 0 0 0px rgba(46, 204, 113, 0);
    }
}

/* Shine overlay effect (Button ke upar se light guzregi) */
.primary-btn.blinking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.795), transparent);
    transition: all 0.5s;
    animation: shine-sweep 4s infinite linear;
}

@keyframes shine-sweep {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Hover effects */
.primary-btn.blinking:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 40px rgba(239, 239, 241, 0.8);
    background-size: 100% auto;
}
