/* ===== PROFESSIONAL TOP NAVIGATION ===== */

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 18px;

    background: linear-gradient(
        135deg,
        #032e20,
        #075b3b,
        #0b6b45
    );

    border-bottom: 3px solid #dcae3e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);
}

.navbar a {
    color: #ffffff;
    text-decoration: none;

    padding: 9px 14px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.navbar a:hover {
    background: #dcae3e;
    color: #032e20;

    transform: translateY(-2px);

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.20);
}

/* Mobile */
@media (max-width: 700px) {

    .navbar {
        gap: 5px;
        padding: 10px 8px;
    }

    .navbar a {
        font-size: 12px;
        padding: 7px 9px;
    }
}
/* ===== PROFESSIONAL PAGE ANIMATION ===== */

body {
    animation: pageFadeIn 0.7s ease-out;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== NAVIGATION SMOOTH APPEARANCE ===== */

.navbar {
    animation: navSlideDown 0.6s ease-out;
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== PROFESSIONAL LOCATION CARD ===== */

.location-card {
    max-width: 850px;
    margin: 45px auto;
    padding: 35px 25px;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #f1f6f0);
    border-radius: 22px;
    border-top: 5px solid #dcae3e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    position: relative;
    overflow: hidden;
    animation: locationFade 0.8s ease;
}

.location-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(220,174,62,0.08);
    top: -80px;
    right: -60px;
}

.location-card h2 {
    color: #075b3b;
    font-size: 30px;
    margin-bottom: 15px;
}

.location-card p {
    color: #555;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.map-button {
    display: inline-block;
    padding: 13px 28px;
    background: linear-gradient(135deg, #075b3b, #0b6b45);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    border: 2px solid #dcae3e;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.map-button:hover {
    background: #dcae3e;
    color: #183b2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
}

@keyframes locationFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {

    .location-card {
        margin: 30px 15px;
        padding: 28px 18px;
    }

    .location-card h2 {
        font-size: 25px;
    }

    .location-card p {
        font-size: 15px;
    }

    .map-button {
        width: 100%;
        padding: 13px 15px;
    }
}
/* ===== MOBILE FINAL POLISH ===== */

@media (max-width: 800px) {

    /* Three-line menu button */
    .menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 16px;
        right: 16px;
        width: 30px;
        height: 30px;
        padding: 0;
        background: rgba(255,255,255,0.96);
        color: #075b3b;
        font-size: 20px;
        line-height: 1;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        z-index: 3000;
    }

    /* Header */
  header {
    width: 100vw;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 0;
    box-shadow: none;
}

    .logo {
        width: 100%;
        text-align: center;
    }

    .logo h2 {
        font-size: 25px;
        margin: 0 0 4px;
    }

    .logo p {
        font-size: 13px;
        margin: 0;
    }

    /* Header message */
    .menu-message {
        width: 100%;
        padding: 0 8px;
        text-align: center;
    }

    .menu-message p {
        font-size: 13px;
        line-height: 1.7;
        margin: 3px 0;
    }

    /* Dropdown */
    #menu {
        top: 72px;
        left: 15px;
        width: 230px;
        padding: 10px;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.28);
    }

    #menu a {
        padding: 11px 14px;
        margin: 5px 0;
        font-size: 15px;
        border-radius: 10px;
    }

    /* Hero */
  .hero {
    min-height: 0;
    height: 100vw;
    padding: 45px 18px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero h1 {
        font-size: 31px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero h2 {
        font-size: 21px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.6;
    }

    .btn {
        margin-top: 24px;
        padding: 11px 23px;
        font-size: 15px;
    }

    /* WhatsApp */
    .whatsapp-button {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 15px;
        font-size: 24px;
    }
}
@media (max-width: 800px) {

    body {
        overflow-x: hidden !important;
    }

    .hero {
        min-height: 0 !important;
        height: 100vw !important;
        padding: 40px 18px !important;

        background-size: 100% 100% !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

}
.site-logo {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e5b84b;
    box-shadow: 0 3px 12px rgba(0,0,0,0.20);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    text-align: left;
}

@media (max-width: 800px) {
    .logo {
        justify-content: center;
        gap: 10px;
    }

    .site-logo {
        width: 54px;
        height: 54px;
    }

    .logo-text h2 {
        font-size: 22px;
    }

    .logo-text p {
        font-size: 12px;
    }
}
/* ===== HEADER THIN FIX ===== */

@media (max-width: 800px) {

    header {
        padding: 7px 12px !important;
        gap: 2px !important;
        min-height: 0 !important;
    }

    .logo {
        gap: 7px !important;
    }

    .site-logo {
        width: 42px !important;
        height: 42px !important;
    }

    .logo-text h2 {
        font-size: 17px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }

    .logo-text p {
        font-size: 10px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }

    .menu-message {
        padding: 0 !important;
    }

    .menu-message p {
        font-size: 10px !important;
        line-height: 1.3 !important;
        margin: 1px 0 !important;
    }
}
/* ===== MOBILE FULL WIDTH ===== */

@media (max-width: 800px) {

    html,
    body {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    section {
        width: 100% !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero {
        width: 100% !important;
        margin: 0 !important;
    }

    footer {
        width: 100% !important;
        margin: 0 !important;
    }
}
/* ===== MOBILE HERO TEXT FIX ===== */

@media (max-width: 800px) {

    .hero {
        height: 100vw !important;
        padding: 25px 10px !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero h1 {
        font-size: 25px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .hero h2 {
        font-size: 18px !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }

    .hero p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        padding: 0 5px !important;
    }

    .hero .btn {
        margin-top: 18px !important;
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
}
/* ===== PROFESSIONAL FOOTER ===== */

.professional-footer {
    background: linear-gradient(135deg, #032e20, #064d32, #075b3b);
    color: #e8eee9;
    margin: 0;
    padding: 55px 8% 0;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-about h2 {
    color: #e5b84b;
    font-size: 23px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #d8e2dc;
    line-height: 1.8;
    font-size: 15px;
    max-width: 500px;
}

.footer-content h3 {
    color: #e5b84b;
    font-size: 19px;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #e8eee9;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e5b84b;
    padding-left: 5px;
}

.footer-contact p {
    color: #d8e2dc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(229,184,75,0.35);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 4px 0;
    font-size: 13px;
    color: #cbd7d0;
}

.footer-bottom strong {
    color: #e5b84b;
}

/* Mobile Footer */

@media (max-width: 800px) {

    .professional-footer {
        padding: 40px 20px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-about p {
        margin: auto;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-bottom {
        margin-top: 5px;
    }
}
.urdu-btn {
    font-family: "Noto Nastaliq Urdu", "Jameel Noori Nastaleeq", serif;
    direction: rtl;
}
/* ===== PREMIUM DISCOVER BUTTONS ===== */

.hero .btn {
    position: relative;
    overflow: hidden;

    width: 110px;
    height: 42px;
    margin: 30px 6px 0;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #dcae3e,
        #f4d477,
        #dcae3e
    );

    color: #032e20;
    border: 2px solid #f8df91;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;

    box-shadow:
        0 7px 20px rgba(0,0,0,0.28),
        inset 0 1px 2px rgba(255,255,255,0.7);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* Shine effect */
.hero .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.55),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

/* Hover effect */
.hero .btn:hover {
    transform: translateY(-5px);

    background: linear-gradient(
        135deg,
        #f4d477,
        #dcae3e,
        #f4d477
    );

    box-shadow:
        0 12px 30px rgba(0,0,0,0.35),
        0 0 18px rgba(220,174,62,0.45);
}

.hero .btn:hover::before {
    left: 140%;
}

/* Click effect */
.hero .btn:active {
    transform: translateY(-1px) scale(0.97);
}

/* Urdu */
.hero .urdu-btn {
    font-family:
        "Noto Nastaliq Urdu",
        "Jameel Noori Nastaleeq",
        serif;

    direction: rtl;
    font-size: 17px;
}

/* Mobile */
@media (max-width: 800px) {

    .hero .btn {
        width: 90px;
        height: 40px;
        margin: 9px 4px 0;
        font-size: 12px;
    }

    .hero .urdu-btn {
        font-size: 16px;
    }
}
/* ===== PREMIUM HERO TEXT ===== */

.hero-content {
    animation: heroContentIn 1s ease-out;
}

.hero h1 {
    text-shadow:
        0 3px 12px rgba(0,0,0,0.65),
        0 0 20px rgba(220,174,62,0.18);
    letter-spacing: 1px;
}

.hero h2 {
    text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

.hero p {
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 800px) {

    .hero h1 {
        letter-spacing: 0.5px;
    }

    .hero h2 {
        text-shadow: 0 2px 7px rgba(0,0,0,0.7);
    }
}
/* ===== ISLAMIC HEADER DESIGN ===== */

header {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #dcae3e;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(30deg, rgba(220,174,62,0.10) 12%, transparent 12.5%, transparent 87%, rgba(220,174,62,0.10) 87.5%),
        linear-gradient(150deg, rgba(220,174,62,0.10) 12%, transparent 12.5%, transparent 87%, rgba(220,174,62,0.10) 87.5%),
        linear-gradient(30deg, rgba(220,174,62,0.06) 12%, transparent 12.5%, transparent 87%, rgba(220,174,62,0.06) 87.5%),
        linear-gradient(150deg, rgba(220,174,62,0.06) 12%, transparent 12.5%, transparent 87%, rgba(220,174,62,0.06) 87.5%);

    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px;

    opacity: 0.45;
    pointer-events: none;
}

/* Content pattern ke upar rahe */
header > * {
    position: relative;
    z-index: 1;
}
/* ===== BEAUTIFUL MOBILE NAVIGATION ===== */
@media (max-width: 700px) {

    .navbar {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2px !important;
        padding: 10px 5px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;

        background: linear-gradient(
            135deg,
            #032e20,
            #075b3b,
            #0b6b45
        ) !important;

        border-bottom: 3px solid #dcae3e !important;
    }

    .navbar a {
        flex: 1 1 0 !important;
        min-width: 0 !important;

        white-space: nowrap !important;
        text-align: center !important;

        padding: 9px 2px !important;
        font-size: 10px !important;
        font-weight: 600 !important;

        color: #fff !important;
        text-decoration: none !important;

        border-radius: 7px !important;
        transition: all .25s ease !important;
    }

    .navbar a:hover {
        background: #dcae3e !important;
        color: #032e20 !important;
        transform: translateY(-2px) !important;
    }
}
/* ===== DESKTOP NAVBAR FIX ===== */

@media (min-width: 701px) {

    .navbar {
        min-height: 58px !important;
        height: 58px !important;
        padding: 8px 18px !important;
        box-sizing: border-box !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .navbar a {
        padding: 9px 14px !important;
        line-height: 20px !important;
    }
}
/* ===== HERO TRANSPARENT TITLE BOXES ===== */

.hero-title-box {
    display: block;
    width: fit-content;
    max-width: 92%;
    margin: 10px auto;

    padding: 10px 22px;

    background: rgba(0, 45, 30, 0.48);
    border: 1px solid rgba(229, 184, 75, 0.75);
    border-radius: 12px;

    color: #ffffff;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    box-shadow:
        0 6px 20px rgba(0,0,0,0.18),
        inset 0 0 15px rgba(255,255,255,0.04);

    text-align: center;
}

.urdu-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.5;
}

.english-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Mobile */
@media (max-width: 700px) {

    .hero-title-box {
        max-width: 94%;
        padding: 8px 14px;
        margin: 8px auto;
    }

    .urdu-title {
        font-size: 24px;
        line-height: 1.5;
    }

    .english-title {
        font-size: 15px;
        line-height: 1.5;
    }
}
/* ===== HERO TITLE BOX - LARGER ===== */

.hero-title-box {
    max-width: 94%;
    padding: 14px 30px;
    margin: 12px auto;
    border-radius: 15px;
}

.urdu-title {
    font-size: 38px;
    line-height: 1.6;
}

.english-title {
    font-size: 25px;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 700px) {

    .hero-title-box {
        max-width: 96%;
        padding: 10px 18px;
        margin: 9px auto;
    }

    .urdu-title {
        font-size: 28px;
    }

    .english-title {
        font-size: 19px;
    }
}
/* ===== PREMIUM 3D JAMIA TITLE BOX ===== */

.hero-title-box {
    position: relative;
    width: min(780px, calc(100% - 30px));
    margin: 25px auto 0;
    padding: 24px 22px;

    box-sizing: border-box;
    text-align: center;

    background: linear-gradient(
        145deg,
        rgba(4, 60, 40, 0.58),
        rgba(7, 91, 59, 0.32)
    );

    border: 1px solid rgba(229, 184, 75, 0.85);
    border-radius: 20px;

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.35),
        inset 0 2px 0 rgba(255,255,255,0.16),
        inset 0 -8px 18px rgba(0,0,0,0.15);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    overflow: hidden;
}


/* ===== INNER GOLDEN FRAME ===== */

.hero-title-box::before {
    content: "";
    position: absolute;
    inset: 7px;

    border: 1px solid rgba(229,184,75,0.25);
    border-radius: 14px;

    pointer-events: none;
}


/* ===== URDU JAMIA NAME ===== */

.hero-title-box .urdu-title {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #f2c85b;

    font-size: 36px;
    font-weight: bold;
    line-height: 1.65;

    direction: rtl;

    text-shadow:
        0 3px 7px rgba(0,0,0,0.5);
}


/* ===== ENGLISH NAME ===== */

.hero-title-box .english-title {
    position: relative;
    z-index: 2;

    margin: 2px 0 0;

    color: #ffffff;

    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;

    text-shadow:
        0 2px 6px rgba(0,0,0,0.5);
}


/* ===== DISCOVER BUTTON ===== */

.hero-title-box .btn {
    position: relative;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    max-width: max-content;

    margin: 18px 4px 0;
    padding: 9px 18px;

    box-sizing: border-box;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;

    border-radius: 9px;

    background: linear-gradient(
        145deg,
        #e9c45c,
        #c99a2e
    );

    color: #183b2b;

    box-shadow:
        0 4px 0 #96731f,
        0 8px 16px rgba(0,0,0,0.25);

    transition: 0.25s ease;
}

.hero-title-box .btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 7px 0 #96731f,
        0 12px 20px rgba(0,0,0,0.3);
}


/* ================================================= */
/* ================= MOBILE ======================== */
/* ================================================= */

@media (max-width: 700px) {

    .hero-title-box {
        width: calc(100% - 24px);
        max-width: 100%;

        margin: 14px auto 0;
        padding: 17px 10px;

        border-radius: 16px;
    }


    .hero-title-box::before {
        inset: 5px;
        border-radius: 11px;
    }


    /* Urdu */

    .hero-title-box .urdu-title {
        font-size: 24px;
        line-height: 1.65;

        padding: 0 4px;

        overflow-wrap: anywhere;
        word-break: normal;
    }


    /* English */

    .hero-title-box .english-title {
        font-size: 15px;
        line-height: 1.5;

        padding: 0 4px;

        overflow-wrap: anywhere;
    }


    /* ===== SMALL COMPACT BUTTON ===== */

    .hero-title-box .btn {
        display: inline-flex;

        width: auto;
        max-width: calc(100% - 20px);

        margin: 12px 3px 0;

        padding: 8px 15px;

        font-size: 14px;

        border-radius: 8px;

        white-space: nowrap;
    }
}


/* ===== VERY SMALL PHONES ===== */

@media (max-width: 380px) {

    .hero-title-box {
        width: calc(100% - 18px);
        padding: 15px 7px;
    }

    .hero-title-box .urdu-title {
        font-size: 21px;
    }

    .hero-title-box .english-title {
        font-size: 14px;
    }

    .hero-title-box .btn {
        padding: 7px 13px;
        font-size: 13px;
    }
}
/* =========================================================
   FINAL ANDROID MOBILE RESPONSIVE FIX
   ========================================================= */

@media (max-width: 700px) {

    /* ---------- GLOBAL ---------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden !important;
    }

    * {
        box-sizing: border-box;
        max-width: 100%;
    }


    /* ---------- HERO ---------- */

    .hero {
        width: 100% !important;
        height: auto !important;
        min-height: 500px !important;
        padding: 30px 10px 35px !important;
        overflow: hidden;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }


    /* ---------- JAMIA TITLE BOX ---------- */

    .hero-title-box {
        width: calc(100% - 20px) !important;
        max-width: 100% !important;

        margin: 12px auto 0 !important;
        padding: 15px 8px !important;

        border-radius: 16px !important;
        overflow: hidden !important;
    }

    .hero-title-box .urdu-title {
        width: 100% !important;

        font-size: 23px !important;
        line-height: 1.65 !important;

        padding: 0 !important;
        margin: 0 !important;

        overflow-wrap: anywhere !important;
    }

    .hero-title-box .english-title {
        width: 100% !important;

        font-size: 14px !important;
        line-height: 1.5 !important;

        padding: 0 !important;
        margin-top: 2px !important;

        overflow-wrap: anywhere !important;
    }


    /* ---------- DISCOVER BUTTONS ---------- */

    .hero-title-box .btn {
        display: inline-flex !important;

        width: auto !important;
        max-width: calc(100% - 20px) !important;
        height: auto !important;

        margin: 11px 2px 0 !important;
        padding: 8px 14px !important;

        font-size: 13px !important;
        line-height: 1.3 !important;

        border-radius: 8px !important;

        white-space: nowrap !important;
    }


    /* ---------- LOCATION CARD ---------- */

    .location-card {
        width: calc(100% - 24px) !important;
        max-width: none !important;

        margin: 25px auto !important;
        padding: 25px 15px !important;

        overflow: hidden !important;
    }

    .location-card h2 {
        font-size: 23px !important;
    }

    .location-card p {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    .map-button {
        display: flex !important;

        width: 100% !important;
        max-width: 100% !important;

        justify-content: center;
        align-items: center;

        padding: 12px 8px !important;

        font-size: 14px !important;

        white-space: normal !important;
    }


    /* ---------- CONTACT CARD ---------- */

    .contact-card {
        width: calc(100% - 24px) !important;
        max-width: none !important;

        margin: 0 auto !important;
        padding: 25px 15px !important;

        overflow: hidden !important;
    }

    .contact-card a {
        max-width: 100% !important;

        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }


    /* ---------- FACEBOOK ---------- */

    .facebook-button {
        display: inline-flex !important;

        width: auto !important;
        max-width: 100% !important;

        padding: 9px 18px !important;

        white-space: nowrap !important;
    }


    /* ---------- PROFESSIONAL FOOTER ---------- */

    .professional-footer {
        width: 100% !important;
        max-width: 100% !important;

        padding: 35px 15px 0 !important;

        overflow: hidden !important;
    }

    .footer-content {
        width: 100% !important;
        max-width: 100% !important;

        grid-template-columns: 1fr !important;
        gap: 25px !important;

        padding-bottom: 25px !important;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-about p,
    .footer-contact p {
        max-width: 100% !important;

        font-size: 14px !important;
        line-height: 1.8 !important;

        overflow-wrap: anywhere !important;
    }

    .footer-bottom {
        width: 100% !important;
        max-width: 100% !important;

        padding: 16px 5px !important;
        overflow: hidden !important;
    }

    .footer-bottom p {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 12px !important;
        line-height: 1.7 !important;

        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    .footer-bottom strong {
        overflow-wrap: anywhere !important;
    }


    /* ---------- WHATSAPP ---------- */

    .whatsapp-button {
        width: 48px !important;
        height: 48px !important;

        right: 12px !important;
        bottom: 12px !important;

        font-size: 22px !important;

        z-index: 5000 !important;
    }
}


/* =========================================================
   VERY SMALL ANDROID PHONES
   ========================================================= */

@media (max-width: 380px) {

    .hero-title-box {
        width: calc(100% - 14px) !important;
        padding: 13px 6px !important;
    }

    .hero-title-box .urdu-title {
        font-size: 21px !important;
    }

    .hero-title-box .english-title {
        font-size: 13px !important;
    }

    .hero-title-box .btn {
        padding: 7px 12px !important;
        font-size: 12px !important;
    }

    .location-card,
    .contact-card {
        width: calc(100% - 16px) !important;
    }
}
/* ===== MOBILE MENU TEXT FIX ===== */

@media (max-width: 700px) {

    .navbar {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 5px !important;
        padding: 8px 7px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .navbar a {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;

        padding: 9px 2px !important;
        margin: 0 !important;

        text-align: center !important;
        white-space: nowrap !important;

        font-size: 11px !important;
        line-height: 1.3 !important;

        border-radius: 8px !important;
    }
}
/* ===== LIGHT PREMIUM INSTITUTIONAL FOOTER ===== */

.professional-footer {
    position: relative;
    background: #f7f5ed;
    color: #43534a;
    margin: 0;
    padding: 55px 7% 0;
    border-top: 4px solid #075b3b;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.06);
}

/* Elegant golden line */
.professional-footer::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #dcae3e;
}

/* Main footer area */

.footer-content {
    max-width: 1150px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.7fr 1fr 1.3fr;

    gap: 55px;
    padding-bottom: 42px;
}

/* Institution */

.footer-about h2 {
    color: #075b3b;
    font-size: 21px;
    line-height: 1.5;
    margin: 0 0 14px;
    font-weight: 700;
}

.footer-about p {
    max-width: 480px;
    margin: 0;

    color: #66736c;
    font-size: 14px;
    line-height: 1.9;
}

/* Section headings */

.footer-content h3 {
    color: #a67c20;
    font-size: 16px;
    margin: 2px 0 17px;

    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Links */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    width: fit-content;

    color: #43534a;
    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-links a:hover {
    color: #075b3b;
    padding-left: 5px;
}

/* Contact */

.footer-contact p {
    margin: 0 0 9px;

    color: #66736c;
    font-size: 14px;
    line-height: 1.8;
}

/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(7, 91, 59, 0.15);

    padding: 18px 10px 20px;

    text-align: center;
}

.footer-bottom p {
    margin: 3px 0;

    color: #7a837e;
    font-size: 12px;
    line-height: 1.6;
}

.footer-bottom strong {
    color: #075b3b;
    font-weight: 700;
}


/* ===== MOBILE FOOTER ===== */

@media (max-width: 800px) {

    .professional-footer {
        padding: 40px 22px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;

        text-align: center;
        padding-bottom: 30px;
    }

    .footer-about h2 {
        font-size: 19px;
    }

    .footer-about p {
        max-width: 500px;
        margin: auto;

        font-size: 13px;
        line-height: 1.8;
    }

    .footer-content h3 {
        margin-bottom: 12px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact p {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .footer-bottom {
        padding: 16px 5px 18px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}
/* =====================================================
   FINAL PROFESSIONAL HEADER — JAMIA QASMIA
   ===================================================== */

header {
    position: sticky !important;
    top: 0 !important;
    z-index: 5000 !important;

    width: 100% !important;
    min-height: 145px !important;
    padding: 18px 7% 38px !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;

    background: #faf7ef !important;
    color: #183b2b !important;

    border: none !important;
    border-radius: 0 !important;
    box-shadow: 0 5px 18px rgba(0,0,0,0.10) !important;

    overflow: hidden !important;
}

/* Green + Gold curved bottom design */
header::after {
    content: "";
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: -30px;

    height: 62px;

    background: linear-gradient(
        105deg,
        #075b3b 0%,
        #087047 45%,
        #dcae3e 78%,
        #e5b84b 100%
    );

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;

    z-index: 0;
}

/* Logo */
header .logo {
    position: relative;
    z-index: 5;

    display: flex !important;
    align-items: center !important;
    gap: 13px !important;

    flex-shrink: 0;
}

header .site-logo {
    width: 68px !important;
    height: 68px !important;

    object-fit: contain !important;

    border-radius: 50% !important;
    border: 2px solid #dcae3e !important;

    background: #fff !important;

    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
}

header .logo-text {
    text-align: left !important;
}

header .logo-text h2 {
    margin: 0 !important;

    color: #075b3b !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 23px !important;
    font-weight: 700 !important;

    line-height: 1.25 !important;
}

/* Message below institution name */
header .menu-message {
    position: relative;
    z-index: 5;

    flex: 1 !important;

    text-align: center !important;

    padding: 0 65px 0 35px !important;
}

header .menu-message p {
    margin: 3px 0 !important;

    color: #555 !important;

    font-size: 12px !important;
    line-height: 1.6 !important;
}

header .menu-message p:first-child {
    color: #075b3b !important;
}


/* =====================================================
   THREE LINE MENU
   ===================================================== */

.menu-button {
    display: flex !important;

    position: fixed !important;
    top: 22px !important;
    right: 22px !important;

    width: 42px !important;
    height: 42px !important;

    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    color: #ffffff !important;

    font-size: 30px !important;
    line-height: 1 !important;

    padding: 0 !important;
    margin: 0 !important;

    cursor: pointer !important;

    z-index: 10000 !important;
}

/* Three lines always visible */
.menu-button::first-letter {
    color: #ffffff !important;
}


/* =====================================================
   DROPDOWN MENU
   ===================================================== */

#menu {
    position: fixed !important;

    top: 76px !important;
    right: 18px !important;
    left: auto !important;

    width: 235px !important;

    display: none;

    padding: 10px !important;

    background: #fffdf8 !important;

    border: 1px solid #dcae3e !important;
    border-radius: 14px !important;

    box-shadow: 0 15px 35px rgba(0,0,0,0.20) !important;

    z-index: 9999 !important;
}

#menu.show {
    display: block !important;
}

#menu a {
    display: block !important;

    margin: 4px 0 !important;
    padding: 11px 14px !important;

    color: #075b3b !important;
    background: transparent !important;

    border-left: 3px solid transparent !important;
    border-radius: 8px !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    text-decoration: none !important;

    transition: all 0.25s ease !important;
}

#menu a:hover {
    background: #f3ead4 !important;
    color: #075b3b !important;

    border-left-color: #dcae3e !important;

    padding-left: 19px !important;
}


/* =====================================================
   MOBILE HEADER
   ===================================================== */

@media (max-width: 800px) {

    header {
        min-height: 108px !important;

        padding: 10px 48px 28px 12px !important;

        display: flex !important;
        flex-direction: column !important;

        justify-content: center !important;
        align-items: center !important;

        gap: 3px !important;
    }

    header::after {
        bottom: -22px !important;
        height: 42px !important;

        background: linear-gradient(
            100deg,
            #075b3b,
            #087047 55%,
            #dcae3e
        ) !important;
    }

    header .logo {
        width: 100% !important;

        justify-content: center !important;

        gap: 8px !important;
    }

    header .site-logo {
        width: 43px !important;
        height: 43px !important;
    }

    header .logo-text h2 {
        font-size: 16px !important;
        line-height: 1.25 !important;
    }

    header .menu-message {
        width: 100% !important;

        padding: 0 4px !important;

        text-align: center !important;
    }

    header .menu-message p {
        font-size: 9px !important;
        line-height: 1.35 !important;

        margin: 1px 0 !important;
    }

    /* Hamburger */
    .menu-button {
        top: 15px !important;
        right: 10px !important;

        width: 35px !important;
        height: 35px !important;

        font-size: 27px !important;

        color: #075b3b !important;
    }

    #menu {
        top: 58px !important;
        right: 10px !important;
        left: auto !important;

        width: 220px !important;
    }
}


/* Very small phones */
@media (max-width: 380px) {

    header .logo-text h2 {
        font-size: 14px !important;
    }

    header .site-logo {
        width: 39px !important;
        height: 39px !important;
    }

    header .menu-message p {
        font-size: 8px !important;
    }

    .menu-button {
        font-size: 25px !important;
    }
}
/* =========================================================
   JAMIA QASMIA — PREMIUM INSTITUTIONAL HEADER
   ========================================================= */

header {
    position: sticky !important;
    top: 0 !important;
    z-index: 5000 !important;

    width: 100% !important;
    min-height: 148px !important;

    padding: 18px 7% 42px !important;
    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    background:
        linear-gradient(
            135deg,
            #fffdf7 0%,
            #faf7ef 48%,
            #f6f1e5 100%
        ) !important;

    border: none !important;
    border-radius: 0 !important;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.09) !important;

    overflow: hidden !important;
}


/* =========================================================
   PREMIUM GOLD FRAME
   ========================================================= */

header::before {
    content: "";
    position: absolute;

    top: 9px;
    left: 2.5%;
    right: 2.5%;

    height: calc(100% - 18px);

    border: 1px solid rgba(183,139,42,0.28);
    border-radius: 12px;

    pointer-events: none;
    z-index: 0;
}


/* =========================================================
   ELEGANT BOTTOM ARCHITECTURAL STRIP
   ========================================================= */

header::after {
    content: "";

    position: absolute;

    left: -2%;
    right: -2%;
    bottom: -29px;

    height: 58px;

    background:
        linear-gradient(
            90deg,
            #064d32 0%,
            #075b3b 38%,
            #087047 62%,
            #c99a2e 100%
        );

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;

    box-shadow:
        0 -2px 0 rgba(220,174,62,0.75);

    z-index: 1;
}


/* =========================================================
   LOGO AREA
   ========================================================= */

header .logo {
    position: relative;
    z-index: 5;

    display: flex !important;
    align-items: center !important;

    gap: 14px !important;

    flex-shrink: 0;
}


/* Gold vertical separator */
header .logo::before {
    content: "";

    width: 2px;
    height: 58px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            #dcae3e 20%,
            #dcae3e 80%,
            transparent
        );

    order: 2;
}


/* Logo image */
header .site-logo {
    width: 76px !important;
    height: 76px !important;

    object-fit: contain !important;

    background: #ffffff !important;

    border: 2px solid #dcae3e !important;
    border-radius: 50% !important;

    box-shadow:
        0 5px 16px rgba(0,0,0,0.13),
        0 0 0 5px rgba(220,174,62,0.08) !important;

    order: 1;
}


/* =========================================================
   INSTITUTION NAME
   ========================================================= */

header .logo-text {
    position: relative;
    z-index: 5;

    text-align: left !important;

    order: 3;
}


header .logo-text h2 {
    margin: 0 !important;

    color: #075b3b !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif !important;

    font-size: 24px !important;

    font-weight: 700 !important;

    line-height: 1.25 !important;

    letter-spacing: 0.25px !important;

    text-shadow:
        0 1px 1px rgba(0,0,0,0.06);
}


/* =========================================================
   INFORMATION MESSAGE
   ========================================================= */

header .menu-message {
    position: relative;
    z-index: 5;

    flex: 1 !important;

    text-align: center !important;

    padding:
        0
        65px
        0
        40px !important;
}


header .menu-message p {
    margin: 4px 0 !important;

    color: #555b56 !important;

    font-size: 14px !important;

    line-height: 1.6 !important;
}


header .menu-message p:first-child {
    color: #075b3b !important;
}


/* =========================================================
   THREE LINE MENU — CLEAN
   ========================================================= */

.menu-button {
    position: fixed !important;

    top: 21px !important;
    right: 20px !important;

    width: 40px !important;
    height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;

    border: none !important;
    box-shadow: none !important;

    color: #075b3b !important;

    font-size: 29px !important;
    line-height: 1 !important;

    cursor: pointer !important;

    z-index: 10000 !important;
}


/* =========================================================
   MOBILE HEADER
   ========================================================= */

@media (max-width: 800px) {

    header {
        min-height: 112px !important;

        padding:
            10px
            45px
            30px
            10px !important;

        display: flex !important;

        flex-direction: column !important;

        justify-content: center !important;

        gap: 4px !important;
    }


    header::before {
        top: 6px;
        left: 3%;
        right: 3%;

        height: calc(100% - 12px);

        border-radius: 9px;
    }


    header::after {
        bottom: -20px;

        height: 40px;

        left: -5%;
        right: -5%;
    }


    /* Logo row */
    header .logo {
        width: 100% !important;

        justify-content: center !important;

        gap: 8px !important;
    }


    header .site-logo {
        width: 50px !important;
        height: 50px !important;

        border-width: 2px !important;
    }


    header .logo::before {
        width: 1.5px;
        height: 34px;
    }


    header .logo-text h2 {
        font-size: 18px !important;

        line-height: 1.25 !important;

        white-space: normal !important;
    }


    /* Message */
    header .menu-message {
        width: 100% !important;

        padding:
            0
            30px
            0
            5px !important;

        text-align: center !important;
    }


    header .menu-message p {
        font-size: 11px !important;

        line-height: 1.4 !important;

        margin: 1px 0 !important;
    }


    /* Menu */
    .menu-button {
        top: 14px !important;
        right: 8px !important;

        width: 35px !important;
        height: 35px !important;

        font-size: 27px !important;

        color: #075b3b !important;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    header {
        min-height: 108px !important;
    }

    header .site-logo {
        width: 46px !important;
        height: 46px !important;
    }

    header .logo-text h2 {
        font-size: 16px !important;
    }

    header .menu-message p {
        font-size: 10px !important;
    }
}
/* =====================================================
   FINAL PREMIUM JAMIA INTRO CARD
   ===================================================== */

.hero-title-box {
    position: relative !important;
    width: min(720px, calc(100% - 34px)) !important;
    margin: 28px auto 0 !important;
    padding: 24px 28px 26px !important;

    box-sizing: border-box !important;
    text-align: center !important;

    /* Deep elegant green — photo bhi nazar aaye */
    background: linear-gradient(
        135deg,
        rgba(3, 47, 32, 0.88),
        rgba(7, 91, 59, 0.78)
    ) !important;

    border: 1px solid rgba(229, 184, 75, 0.9) !important;
    border-radius: 18px !important;

    box-shadow:
        0 16px 35px rgba(0,0,0,0.32),
        0 3px 8px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.16) !important;

    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;

    overflow: hidden !important;
}


/* Elegant golden top line */
.hero-title-box::before {
    content: "" !important;
    position: absolute !important;

    top: 0 !important;
    left: 9% !important;
    width: 82% !important;
    height: 3px !important;

    background: linear-gradient(
        90deg,
        transparent,
        #e5b84b,
        #f4d477,
        #e5b84b,
        transparent
    ) !important;

    border-radius: 0 0 10px 10px !important;
}


/* Soft decorative glow */
.hero-title-box::after {
    content: "" !important;
    position: absolute !important;

    width: 180px !important;
    height: 180px !important;

    right: -100px !important;
    bottom: -120px !important;

    border-radius: 50% !important;

    background: rgba(229,184,75,0.10) !important;
    pointer-events: none !important;
}


/* ================= URDU TITLE ================= */

.hero-title-box .urdu-title {
    position: relative !important;
    z-index: 2 !important;

    margin: 0 0 5px !important;
    padding: 0 !important;

    color: #f4d477 !important;

    font-size: 31px !important;
    font-weight: 700 !important;

    line-height: 1.7 !important;

    direction: rtl !important;
    text-align: center !important;

    text-shadow:
        0 2px 5px rgba(0,0,0,0.7) !important;
}


/* ================= ENGLISH TITLE ================= */

.hero-title-box .english-title {
    position: relative !important;
    z-index: 2 !important;

    margin: 0 !important;

    color: #ffffff !important;

    font-size: 20px !important;
    font-weight: 600 !important;

    line-height: 1.5 !important;
    letter-spacing: 0.3px !important;

    text-shadow:
        0 2px 5px rgba(0,0,0,0.65) !important;
}


/* ================= BUTTON AREA ================= */

.hero-title-box .btn {
    position: relative !important;
    z-index: 3 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 180px !important;
    height: 46px !important;

    margin: 17px 4px 0 !important;
    padding: 0 20px !important;

    box-sizing: border-box !important;

    background: linear-gradient(
        135deg,
        #f3d57a,
        #d6aa3e
    ) !important;

    color: #183b2b !important;

    border: 1px solid #fff0b5 !important;
    border-radius: 10px !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    box-shadow:
        0 4px 0 #9b7625,
        0 8px 16px rgba(0,0,0,0.25) !important;

    transition: all 0.25s ease !important;
}


/* Button hover */
.hero-title-box .btn:hover {
    transform: translateY(-3px) !important;

    background: linear-gradient(
        135deg,
        #ffe69a,
        #e3bc58
    ) !important;

    box-shadow:
        0 7px 0 #9b7625,
        0 12px 22px rgba(0,0,0,0.30) !important;
}


/* Urdu button */
.hero-title-box .urdu-btn {
    font-family:
        "Noto Nastaliq Urdu",
        "Jameel Noori Nastaleeq",
        serif !important;

    direction: rtl !important;
    font-size: 16px !important;
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .hero-title-box {
        width: calc(100% - 22px) !important;

        margin: 20px auto 0 !important;
        padding: 19px 9px 21px !important;

        border-radius: 15px !important;
    }

    .hero-title-box .urdu-title {
        font-size: 23px !important;
        line-height: 1.65 !important;
    }

    .hero-title-box .english-title {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    .hero-title-box .btn {
        min-width: 0 !important;
        height: 43px !important;

        margin: 12px 2px 0 !important;
        padding: 0 13px !important;

        font-size: 12px !important;
        border-radius: 9px !important;
    }

    .hero-title-box .urdu-btn {
        font-size: 14px !important;
    }
}


/* ================= VERY SMALL PHONE ================= */

@media (max-width: 380px) {

    .hero-title-box {
        width: calc(100% - 16px) !important;
        padding: 17px 6px 19px !important;
    }

    .hero-title-box .urdu-title {
        font-size: 20px !important;
    }

    .hero-title-box .english-title {
        font-size: 13px !important;
    }

    .hero-title-box .btn {
        height: 40px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
    }
}
/* =========================================================
   PREMIUM INSTITUTIONAL BUTTON DESIGN
   ========================================================= */

.hero-title-box .btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 0 !important;
    height: 43px !important;

    margin: 17px 4px 0 !important;
    padding: 0 18px !important;

    box-sizing: border-box !important;

    /* Premium dark green */
    background: linear-gradient(
        135deg,
        #0a6042 0%,
        #06452f 50%,
        #032e20 100%
    ) !important;

    color: #f4d477 !important;

    border: 1px solid #dcae3e !important;
    border-radius: 8px !important;

    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.25px !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    box-shadow:
        0 5px 12px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.16),
        inset 0 -2px 5px rgba(0,0,0,0.18) !important;

    overflow: hidden !important;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease !important;
}


/* Fine inner golden frame */
.hero-title-box .btn::after {
    content: "" !important;

    position: absolute !important;
    inset: 3px !important;

    border: 1px solid rgba(244,212,119,0.25) !important;
    border-radius: 5px !important;

    pointer-events: none !important;
}


/* Remove old shine effect */
.hero-title-box .btn::before {
    content: "" !important;

    position: absolute !important;
    top: -20% !important;
    left: -100% !important;

    width: 45% !important;
    height: 140% !important;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.20),
        transparent
    ) !important;

    transform: skewX(-20deg) !important;

    transition: left 0.55s ease !important;

    pointer-events: none !important;
}


/* Text always above effects */
.hero-title-box .btn {
    text-shadow: 0 1px 2px rgba(0,0,0,0.35) !important;
}


/* Hover */
.hero-title-box .btn:hover {
    transform: translateY(-3px) !important;

    background: linear-gradient(
        135deg,
        #0c7050,
        #07583b,
        #043725
    ) !important;

    border-color: #f2cf68 !important;

    color: #ffe49a !important;

    box-shadow:
        0 9px 20px rgba(0,0,0,0.34),
        0 0 12px rgba(220,174,62,0.20),
        inset 0 1px 0 rgba(255,255,255,0.20) !important;
}


/* Shine on hover */
.hero-title-box .btn:hover::before {
    left: 140% !important;
}


/* Click */
.hero-title-box .btn:active {
    transform: translateY(0) scale(0.98) !important;
}


/* Urdu button */
.hero-title-box .urdu-btn {
    font-family:
        "Noto Nastaliq Urdu",
        "Jameel Noori Nastaleeq",
        serif !important;

    direction: rtl !important;

    font-size: 15px !important;

    padding-left: 17px !important;
    padding-right: 17px !important;
}


/* Small elegant arrow for English button */
.hero-title-box .btn:not(.urdu-btn)::after {
    content: "  →" !important;

    position: static !important;

    margin-left: 7px !important;

    border: 0 !important;

    color: #f4d477 !important;

    font-size: 15px !important;
    font-weight: 700 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .hero-title-box .btn {
        height: 40px !important;

        margin: 12px 2px 0 !important;
        padding: 0 13px !important;

        font-size: 11.5px !important;

        border-radius: 8px !important;
    }

    .hero-title-box .urdu-btn {
        font-size: 13px !important;

        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .hero-title-box .btn:not(.urdu-btn)::after {
        margin-left: 5px !important;
        font-size: 13px !important;
    }
}
/* =========================================================
   HEADER — MENU INSTRUCTION CARD
   To learn about the Jamia...
   ========================================================= */

header .menu-message {
    position: relative !important;
    z-index: 20 !important;

    flex: 1 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    max-width: 620px !important;

    margin: 0 auto !important;
    padding: 8px 18px !important;

    text-align: center !important;

    background: rgba(255, 255, 255, 0.72) !important;

    border: 1px solid rgba(7, 91, 59, 0.28) !important;
    border-left: 3px solid #dcae3e !important;
    border-right: 3px solid #dcae3e !important;

    border-radius: 12px !important;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9) !important;

    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;

    box-sizing: border-box !important;
}


/* English + Urdu instruction */
header .menu-message p {
    position: relative !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 1px 0 !important;
    padding: 2px 5px !important;

    color: #43534a !important;

    font-size: 11px !important;
    font-weight: 500 !important;

    line-height: 1.55 !important;

    text-align: center !important;

    text-shadow: none !important;

    box-sizing: border-box !important;
}


/* English line */
header .menu-message p:first-child {
    color: #075b3b !important;
    font-weight: 600 !important;
}


/* Urdu line */
header .menu-message p:last-child {
    color: #59635d !important;
}


/* Small golden separator */
header .menu-message p:first-child::after {
    content: "" !important;

    display: block !important;

    width: 28px !important;
    height: 1.5px !important;

    margin: 4px auto 1px !important;

    background: #dcae3e !important;

    border-radius: 10px !important;
}


/* =========================================================
   MOBILE — COMPACT & BEAUTIFUL
   ========================================================= */

@media (max-width: 800px) {

    header .menu-message {
        width: calc(100% - 18px) !important;
        max-width: 520px !important;

        margin: 3px auto 0 !important;

        padding: 5px 9px !important;

        border-left-width: 2px !important;
        border-right-width: 2px !important;

        border-radius: 9px !important;

        box-shadow:
            0 3px 10px rgba(0,0,0,0.07),
            inset 0 1px 0 rgba(255,255,255,0.85) !important;
    }

    header .menu-message p {
        font-size: 9.5px !important;
        line-height: 1.4 !important;

        margin: 0 !important;
        padding: 1px 2px !important;
    }

    header .menu-message p:first-child::after {
        width: 22px !important;
        height: 1px !important;

        margin: 2px auto 1px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    header .menu-message {
        width: calc(100% - 12px) !important;
        padding: 4px 7px !important;
    }

    header .menu-message p {
        font-size: 8.5px !important;
        line-height: 1.35 !important;
    }
}
/* ===== COMPACT INSPIRATION BOX ===== */
.inspiration-box {
    display: block !important;
    width: 210px !important;
    max-width: 210px !important;
    min-width: 210px !important;

    margin: 10px auto !important;
    padding: 9px 10px !important;

    box-sizing: border-box !important;

    background: rgba(255,255,255,0.97) !important;
    border: 1px solid rgba(20,95,65,0.35) !important;
    border-radius: 10px !important;

    box-shadow: 0 4px 14px rgba(0,0,0,0.10) !important;

    text-align: center !important;
}

.inspiration-box p {
    margin: 3px 0 !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
}

.inspiration-box .urdu {
    font-size: 13px !important;
    line-height: 1.7 !important;
    direction: rtl !important;
}

/* MOBILE */
@media (max-width: 600px) {
    .inspiration-box {
        width: 210px !important;
        max-width: 210px !important;
        min-width: 210px !important;
    }
}
/* ===== MENU MESSAGE WIDTH FIX ===== */

header .menu-message {
    flex: none !important;
    width: 300px !important;
    max-width: 300px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 6px 10px !important;
}

/* Text को box के अंदर ही रखना */
header .menu-message p {
    margin: 2px 0 !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
}

/* Mobile */
@media (max-width: 800px) {
    header .menu-message {
        width: 240px !important;
        max-width: 240px !important;
    }

    header .menu-message p {
        font-size: 9px !important;
    }
}
header .menu-message {
    flex: none !important;
    width: 300px !important;
    max-width: 300px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 5px 8px !important;
    box-sizing: border-box !important;
}

header .menu-message p {
    margin: 1px 0 !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
}

/* Mobile */
@media (max-width: 800px) {
    header .menu-message {
        width: 245px !important;
        max-width: 245px !important;
        padding: 4px 6px !important;
    }

    header .menu-message p {
        font-size: 8px !important;
        line-height: 1.25 !important;
    }
}
/* =========================================================
   JAMIA QASMIA DTS
   PREMIUM ISLAMIC HERO HEADER
   Modern Minimal + Traditional Islamic Architecture
   ========================================================= */

:root {
    --emerald: #063d2e;
    --emerald-deep: #032b21;
    --emerald-soft: #0a4b38;
    --gold: #d6b15c;
    --gold-light: #f0d58a;
    --cream: #f8f5ec;
}

/* =========================================================
   HEADER / HERO
   ========================================================= */

header {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 570px;
    padding: 0;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(214,177,92,0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--emerald-deep) 0%,
            var(--emerald) 48%,
            #07503a 100%
        );

    color: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.14);
}

/* =========================================================
   SUBTLE ISLAMIC GEOMETRIC PATTERN
   ========================================================= */

header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    opacity: .075;

    background-image:
        linear-gradient(30deg, transparent 47%, #d6b15c 48%, transparent 50%),
        linear-gradient(150deg, transparent 47%, #d6b15c 48%, transparent 50%),
        linear-gradient(30deg, transparent 47%, #d6b15c 48%, transparent 50%),
        linear-gradient(150deg, transparent 47%, #d6b15c 48%, transparent 50%);

    background-size: 82px 82px;
    background-position: 0 0, 0 0, 41px 41px, 41px 41px;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
}

/* Soft architectural glow */

header::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 620px;
    height: 620px;

    right: -170px;
    top: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(214,177,92,.10),
            transparent 65%
        );

    pointer-events: none;
}

/* =========================================================
   MAIN HEADER CONTENT
   ========================================================= */

header .header-inner,
header .container {
    position: relative;
    z-index: 5;

    width: min(1180px, calc(100% - 50px));
    margin: auto;

    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

/* =========================================================
   LEFT CONTENT
   ========================================================= */

header .hero-content {
    position: relative;
    z-index: 8;

    width: min(590px, 52%);

    padding: 70px 0 100px 45px;
}

header .hero-content h1 {
    margin: 0 0 18px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 700;

    color: #fff;

    letter-spacing: -.7px;
}

header .hero-content h1 span {
    color: var(--gold-light);
}

header .hero-content p {
    max-width: 560px;

    margin: 0 0 28px;

    font-family: "Poppins", sans-serif;

    font-size: 15px;
    line-height: 1.85;

    color: rgba(255,255,255,.82);
}

/* =========================================================
   STANDARD CTA
   ========================================================= */

header .hero-content .btn,
header .hero-content a.button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 25px;

    border: 1px solid rgba(240,213,138,.8);
    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #e0bd67,
            #c69b3e
        );

    color: #173528;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 7px 22px rgba(0,0,0,.20),
        inset 0 1px rgba(255,255,255,.45);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

header .hero-content .btn:hover,
header .hero-content a.button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 28px rgba(0,0,0,.28),
        0 0 18px rgba(214,177,92,.20);
}

/* =========================================================
   RIGHT ISLAMIC ARCH FRAME
   ========================================================= */

header .hero-graphic {
    position: relative;
    z-index: 5;

    width: 410px;
    height: 440px;

    flex: 0 0 410px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main pointed Islamic arch */

header .hero-graphic::before {
    content: "";

    position: absolute;
    inset: 8px 24px 4px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.015)
        );

    border: 2px solid var(--gold);

    clip-path: polygon(
        50% 0%,
        71% 14%,
        87% 32%,
        96% 54%,
        100% 100%,
        0% 100%,
        4% 54%,
        13% 32%,
        29% 14%
    );

    box-shadow:
        0 0 0 1px rgba(240,213,138,.18),
        0 20px 45px rgba(0,0,0,.18);

    opacity: .95;
}

/* Inner gold line */

header .hero-graphic::after {
    content: "";

    position: absolute;
    inset: 17px 34px 13px;

    border: 1px solid rgba(240,213,138,.70);

    clip-path: polygon(
        50% 0%,
        70% 14%,
        86% 33%,
        95% 55%,
        100% 100%,
        0% 100%,
        5% 55%,
        14% 33%,
        30% 14%
    );

    pointer-events: none;
}

/* =========================================================
   GRAPHIC / LOGO INSIDE ARCH
   ========================================================= */

header .hero-graphic img {
    position: relative;
    z-index: 4;

    width: 190px;
    height: 190px;

    object-fit: contain;

    filter:
        drop-shadow(0 12px 18px rgba(0,0,0,.30))
        drop-shadow(0 0 10px rgba(214,177,92,.12));
}

/* =========================================================
   LEFT HANGING MEHRAAB / LOGO BADGE
   ========================================================= */

header .logo-badge {
    position: absolute;

    left: 30px;
    top: 0;

    z-index: 20;

    width: 132px;
    height: 205px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    background:
        linear-gradient(
            180deg,
            #0b503c,
            #06372a
        );

    border-left: 1px solid rgba(240,213,138,.75);
    border-right: 1px solid rgba(240,213,138,.75);
    border-bottom: 1px solid rgba(240,213,138,.75);

    border-radius: 0 0 66px 66px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.24),
        inset 0 0 25px rgba(214,177,92,.06);
}

/* Arch opening at top of badge */

header .logo-badge::before {
    content: "";

    position: absolute;

    left: 12px;
    right: 12px;
    top: -1px;

    height: 66px;

    border: 1px solid rgba(240,213,138,.72);
    border-bottom: 0;

    border-radius: 70px 70px 0 0;

    pointer-events: none;
}

header .logo-badge img {
    position: relative;
    z-index: 2;

    width: 82px;
    height: 82px;

    object-fit: contain;

    filter:
        drop-shadow(0 5px 8px rgba(0,0,0,.35));
}

/* =========================================================
   SMALL GOLD ORNAMENT
   ========================================================= */

header .logo-badge::after {
    content: "✦";

    position: absolute;

    bottom: 10px;
    left: 50%;

    transform: translateX(-50%);

    color: var(--gold-light);

    font-size: 13px;
    opacity: .75;
}

/* =========================================================
   BOTTOM ARCH TRANSITION
   ========================================================= */

header .bottom-arch {
    position: absolute;

    z-index: 15;

    left: 50%;
    bottom: -1px;

    transform: translateX(-50%);

    width: 270px;
    height: 92px;

    background: var(--cream);

    clip-path: polygon(
        50% 100%,
        63% 82%,
        76% 62%,
        87% 39%,
        94% 18%,
        100% 0%,
        0% 0%,
        6% 18%,
        13% 39%,
        24% 62%,
        37% 82%
    );
}

/* =========================================================
   OPTIONAL DIVIDER IF HTML HAS .header-bottom
   ========================================================= */

header .header-bottom {
    position: absolute;

    left: 50%;
    bottom: 90px;

    transform: translateX(-50%);

    width: 80px;
    height: 1px;

    background: rgba(240,213,138,.55);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    header {
        min-height: 650px;
    }

    header .header-inner,
    header .container {
        width: calc(100% - 28px);

        min-height: 650px;

        flex-direction: column;
        justify-content: center;

        gap: 20px;

        padding-top: 105px;
        padding-bottom: 80px;
    }

    header .hero-content {
        width: 100%;

        padding: 0 12px;

        text-align: center;
    }

    header .hero-content h1 {
        font-size: 30px;
    }

    header .hero-content p {
        margin-left: auto;
        margin-right: auto;

        font-size: 12px;
        line-height: 1.7;
    }

    header .hero-graphic {
        width: 300px;
        height: 285px;

        flex: none;
    }

    header .hero-graphic::before {
        inset: 8px 22px 0;
    }

    header .hero-graphic::after {
        inset: 15px 31px 8px;
    }

    header .hero-graphic img {
        width: 120px;
        height: 120px;
    }

    header .logo-badge {
        left: 16px;

        width: 94px;
        height: 145px;

        border-radius: 0 0 48px 48px;
    }

    header .logo-badge::before {
        left: 9px;
        right: 9px;
        height: 45px;

        border-radius: 50px 50px 0 0;
    }

    header .logo-badge img {
        width: 58px;
        height: 58px;
    }

    header .bottom-arch {
        width: 190px;
        height: 65px;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 500px) {

    header {
        min-height: 600px;
    }

    header .header-inner,
    header .container {
        min-height: 600px;

        padding-top: 85px;
        padding-bottom: 65px;
    }

    header .hero-content h1 {
        font-size: 25px;
        line-height: 1.2;
    }

    header .hero-content p {
        font-size: 11px;
        line-height: 1.65;
    }

    header .hero-content .btn,
    header .hero-content a.button {
        min-height: 40px;
        padding: 0 19px;

        font-size: 11px;
    }

    header .hero-graphic {
        width: 255px;
        height: 245px;
    }

    header .hero-graphic img {
        width: 100px;
        height: 100px;
    }

    header .logo-badge {
        left: 10px;

        width: 78px;
        height: 125px;
    }

    header .logo-badge img {
        width: 48px;
        height: 48px;
    }

    header .bottom-arch {
        width: 155px;
        height: 54px;
    }
}

/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    header .hero-content h1 {
        font-size: 22px;
    }

    header .hero-graphic {
        width: 225px;
        height: 220px;
    }

    header .logo-badge {
        width: 70px;
        height: 112px;
    }

    header .logo-badge img {
        width: 43px;
        height: 43px;
    }
}
/* ===== HEADER MENU — CLEAN CREAM & GOLD ===== */

header nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;

    gap: 8px !important;
    margin: 0 auto !important;
    padding: 4px 0 !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

header nav a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 6px 11px !important;

    background: #f8f3e7 !important;

    color: #063c2c !important;

    border: 1px solid rgba(220,174,62,0.45) !important;
    border-bottom: 3px solid #dcae3e !important;

    border-radius: 8px !important;

    text-decoration: none !important;

    font-family:
        "Noto Nastaliq Urdu",
        "Jameel Noori Nastaleeq",
        "Noto Naskh Arabic",
        serif !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    direction: rtl !important;
    white-space: nowrap !important;

    box-shadow: 0 2px 7px rgba(0,0,0,0.08) !important;

    transition: 0.2s ease !important;
}

/* Hover */
header nav a:hover {
    background: #fffaf0 !important;
    color: #075b3b !important;
    border-bottom-color: #b28728 !important;
    transform: translateY(-1px) !important;
}


/* ===== MOBILE ===== */

@media (max-width: 800px) {

    header nav {
        width: 100% !important;
        justify-content: center !important;

        gap: 6px !important;

        padding: 3px 6px !important;
    }

    header nav a {
        padding: 5px 8px !important;

        font-size: 11px !important;

        border-radius: 7px !important;

        line-height: 1.7 !important;
    }
}


/* ===== VERY SMALL MOBILE ===== */

@media (max-width: 380px) {

    header nav {
        gap: 5px !important;
    }

    header nav a {
        padding: 4px 6px !important;
        font-size: 10px !important;
    }
}
/* ===== HEADER MENU — TRUE CENTER ===== */

header {
    position: relative !important;
}

header nav {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    top: 50% !important;
    margin: 0 !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    gap: 8px !important;
    width: max-content !important;
    max-width: 90% !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ہر option الگ box */

header nav a {
    margin: 0 !important;
    padding: 6px 11px !important;

    background: #f8f3e7 !important;
    color: #063c2c !important;

    border: 1px solid rgba(220,174,62,0.45) !important;
    border-bottom: 3px solid #dcae3e !important;
    border-radius: 8px !important;

    white-space: nowrap !important;

    font-family:
        "Noto Nastaliq Urdu",
        "Jameel Noori Nastaleeq",
        "Noto Naskh Arabic",
        serif !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    text-decoration: none !important;
}


/* ===== MOBILE ===== */

@media (max-width: 800px) {

    header nav {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;

        width: 100% !important;
        max-width: 100% !important;

        justify-content: center !important;
        align-items: center !important;

        flex-wrap: wrap !important;

        gap: 6px !important;

        margin: 5px auto 0 !important;
        padding: 3px 5px !important;
    }

    header nav a {
        padding: 5px 8px !important;
        font-size: 11px !important;
    }
}
/* =====================================================
   FINAL HEADER MENU
   ===================================================== */

header nav {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;

    gap: 9px !important;

    margin: 0 auto !important;
    padding: 5px 10px !important;

    box-sizing: border-box !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* EACH MENU ITEM */

header nav a {
    display: inline-block !important;

    margin: 0 !important;
    padding: 6px 12px !important;

    /* CREAM BACKGROUND */
    background: #f7f1df !important;

    /* DARK GREEN TEXT */
    color: #063c2c !important;
    -webkit-text-fill-color: #063c2c !important;

    /* GOLD BORDER */
    border: 1px solid rgba(220,174,62,0.45) !important;

    /* GOLD UNDERLINE */
    border-bottom: 3px solid #dcae3e !important;

    border-radius: 8px !important;

    text-decoration: none !important;

    font-family:
        "Noto Nastaliq Urdu",
        "Jameel Noori Nastaleeq",
        "Noto Naskh Arabic",
        serif !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    line-height: 1.7 !important;

    direction: rtl !important;
    white-space: nowrap !important;

    text-align: center !important;

    box-shadow:
        0 2px 7px rgba(0,0,0,0.08) !important;

    transition: 0.2s ease !important;
}

/* HOVER */

header nav a:hover {
    background: #fffaf0 !important;
    color: #03291f !important;
    -webkit-text-fill-color: #03291f !important;

    border-bottom-color: #b28728 !important;

    transform: translateY(-1px) !important;
}


/* =====================================================
   MOBILE — TRUE CENTER
   ===================================================== */

@media (max-width: 800px) {

    header nav {
        width: 100% !important;

        display: flex !important;

        justify-content: center !important;
        align-items: center !important;

        flex-wrap: wrap !important;

        gap: 6px !important;

        margin: 6px auto 0 !important;
        padding: 3px 6px !important;
    }

    header nav a {
        padding: 5px 8px !important;

        font-size: 11px !important;

        line-height: 1.8 !important;

        border-radius: 7px !important;
    }
}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 380px) {

    header nav {
        gap: 5px !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    header nav a {
        padding: 4px 6px !important;
        font-size: 10px !important;
    }
}
header {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

@media (max-width: 800px) {
    header {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
}