
body {
 
    background: #000;
    color: #fff;
}


.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000 !important;
    padding: 0px 0;
    transition: 0.3s ease;
    background: transparent;
}

.main-header.sticky {
    background: #000 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.45);
}


.logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}


.nav-center-menu .nav-link {
    color: #dcdcdc;
    padding: 10px 20px;
    font-size: 15px;
    letter-spacing: 0.8px;
    transition: 0.3s;
}

.nav-center-menu .nav-link:hover {
    color: #f7c600;
}


.desktop-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.desktop-dropdown .dropdown-menu {
    background: #0e0e0e;
    border: 1px solid #222;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.25s ease;
}

.dropdown-item {
    color: #dcdcdc;
    padding: 10px 20px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #1c1c1c;
    color: #fff;
}

.btn-header {
    font-weight: 600;
    font-size: 15px;
}


.mobile-menu-icon {
    width: 32px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 3000;
}

.mobile-menu-icon span {
    height: 3px;
    background: #fff;
    width: 100%;
    border-radius: 3px;
}


.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #0b0b0b;
    padding: 25px;
    transition: 0.35s ease-in-out;
    z-index: 5000;
    overflow-y: auto;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mobile-menu .logo {
    height: 42px;
}

.close-menu {
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    line-height: 0;
}


.mobile-nav-list {
    list-style: none;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 16px;
}

.mobile-nav-list a {
    font-size: 17px;
    text-decoration: none;
    color: #f0f0f0;
    display: block;
    padding: 6px 0;
    transition: .3s;
}

.mobile-nav-list a:hover {
    color: #f7c600;
}


.mobile-dropdown {
    position: relative;
}

.dropdown-toggle-mobile {
    font-size: 17px;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    color: #fff;
    cursor: pointer;
}

.dropdown-toggle-mobile .arrow {
    transition: .3s ease;
}

.dropdown-toggle-mobile.open .arrow {
    transform: rotate(180deg);
}


.mobile-submenu {
    list-style: none;
    padding-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.12);
    margin-top: 8px;
    display: none;
    animation: menuSlide .35s ease;
}

.mobile-submenu li {
    margin-bottom: 10px;
}

.mobile-submenu a {
    font-size: 15px;
    color: #ccc;
    padding: 4px 0;
}

.mobile-submenu a:hover {
    color: #f7c600;
}


@keyframes menuSlide {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}


.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 4000;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}




@media (max-width: 991px) {

    
    .mobile-menu-icon {
        display: flex !important;
    }

   
    .nav-center,
    .nav-right {
        display: none !important;
    }

 
    .hero-left {
        padding-top: 110px !important;
        text-align: center;
    }

    .hero-title {
        font-size: 42px !important;
        line-height: 1.2;
    }

    .hero-para {
        font-size: 17px;
        max-width: 95%;
        margin: 12px auto;
    }
}



.desktop-dropdown .dropdown-menu {
    background: #0e0e0e;
    border: 1px solid #222;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.25s ease;

    /* ── یہ نیا اضافہ ── */
    max-height: 60vh;          /* یا 75vh / 450px / 500px جو بھی آپ کو پسند آئے */
    overflow-y: auto;          /* اسکرول بار صرف ضرورت پڑنے پر آئے گا */
    overflow-x: hidden;        /* افقی اسکرول نہ آئے */
}

/* اگر چاہیں تو اسکرول بار کو بھی تھوڑا سٹائل کر سکتے ہیں (اختیاری) */
.desktop-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.desktop-dropdown .dropdown-menu::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.desktop-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.desktop-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #666;
}



.mobile-submenu {
    list-style: none;
    padding-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.12);
    margin-top: 8px;
    display: none;
    animation: menuSlide .35s ease;

    /* scroll کے لیے */
    max-height: 60vh;
    overflow-y: auto;
}









/* ==================== FOOTER css start ==================== */
.footer-section {
    background: #0d0d0d;
    padding: 90px 0 40px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    padding-left: 10px;
    padding-right: 10px;
}

.footer-top {
    margin-bottom: 60px;
}


.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-text {
    margin: 15px 0 25px;
    line-height: 1.7;
    color: #ccc;
}


.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: #1a1a1a;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 10px;
    font-size: 16px;
    color: #fff;
    transition: .3s ease;
}

.footer-social a:hover {
    background: #f7c600;
    color: #000;
}


.footer-links h4,
.footer-office h4 {
    font-size: 19px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 600;
}


.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    font-size: 15px;
    text-decoration: none !important;
    transition: .3s ease;
}

.footer-links ul li a:hover {
    color: #f7c600;
}


.footer-office p {
    margin: 0 0 10px;
    color: #ccc;
}

.footer-office p a{
    text-decoration: none;
    color: #ccc;
}


.news-label {
    display: inline-block;
    margin-top: 25px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #f7c600;
}

.newsletter-form {
    margin-top: 15px;
}

.newsletter-form input {
    width: 100%;
    background: #111;
    border: 1px solid #2c2c2c;
    padding: 15px;
    border-radius: 6px;
    color: #ccc;
    margin-bottom: 12px;
    font-size: 15px;
}

.newsletter-form button {
    background: #f7c600;
    color: #000;
    padding: 14px;
    width: 100%;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: .3s ease;
}

.newsletter-form button:hover {
    background: #d9a700;
}


.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #f7c600;
    text-decoration: none;
    transition: .3s ease;
}

.footer-bottom a:hover {
    opacity: 0.75;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links .dot {
    width: 6px;
    height: 6px;
    background: #f7c600;
    border-radius: 50%;
}


@media (max-width: 991px) {
    .footer-top {
        row-gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}



/* ==================== FOOTER css start ==================== */





 .floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 9999;
  }

  .floating-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 3px 10px;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .floating-btn .icon {
    background: #fff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  }

  .floating-btn .icon img {
    width: 22px;
    height: 22px;
  }

  .floating-btn .label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
    white-space: nowrap;
  }

  /* Hover Effects */
  .floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  }

  .floating-btn:hover .label {
    color: #292828ff;
  }

  /* WhatsApp Button */
  .whatsapp-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulse 2.5s infinite;
  }

  /* Language Switcher */
  .language-switcher {
    background: linear-gradient(135deg, #ffffff, #f2f2f2);
  }

  .language-switcher .label {
    color: #000;
  }

  /* Pulse Animation */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  /* Responsive */
  @media (max-width: 576px) {
    .floating-buttons {
      bottom: 18px;
      right: 18px;
      gap: 10px;
    }

    .floating-btn {
      padding: 6px 10px;
    }

    .floating-btn .label {
      font-size: 14px;
    }
  }