    @font-face {
    font-family: 'Tajawal';
    src: url('./Fonts/tajawal.woff2') format('woff2'),
         url('./Fonts/tajawal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }
        a {color: var(--bar-buttonh);text-decoration: auto;display: contents;}
::-webkit-scrollbar {
  width: 12px; 
  height: 12px; 
}

::-webkit-scrollbar-track {
  background: #313439;  
}

::-webkit-scrollbar-thumb {
  background: var(--text-secondary);  
  border: 3px solid #313439; 
}

::-webkit-scrollbar-thumb:hover {
  background: #555;  
}
        body {
            font-family: 'Tajawal', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg-body);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(12, 12, 12, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0px -3px 23px #1a1a2e;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
           font-size: 24px;
            margin-top: -2px;
            margin-right: -11px;
            font-weight: bold;
            background: linear-gradient(45deg, #d48a00, #ff9c33);
            background-clip: text;
            -webkit-background-clip: text;
            background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgb(255 167 0 / 30%);
        }
@keyframes moveBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 -226px;
    }
}
.sh3ar {
    background: url(./img/logo2y.png);
    width: 71px;
    height: 37px;
    display: inline-block;
    background-size: 47px;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: -12px;
    margin-left: 10px;
    border-left: 2px solid #ffffff1f;
}
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hero {
            height: 571.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(ellipse at center, rgb(255 132 0 / 11%) 0%, #0000007a 70%);
            position: relative;
            overflow: hidden;
                border-bottom: 3px dashed #00bcea0f;
        }
        #upinfo , #upproject ,  #uptrin ,  #upsitting {position: absolute;top: 0;}
.hero-content h1 {
    line-height: 1.2;}
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
background: url(./img/bg.png);
    filter: opacity(0.04);
    background-size: 226px;
    animation: moveBackground 20s linear infinite;
        }
div#infoyt {
    background: var(--primary-color);
        color: var(--section-bg);
}
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
                margin-top: 60px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #00d4ff, #0099cc);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgb(255 132 0 / 50%); }
            to { text-shadow: 0 0 30px rgb(255 179 0 / 80%); }
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #cccccc;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 3px 19px rgb(255 209 0 / 30%);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 0px 6px rgb(255 214 0 / 50%);
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

        .section h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #cccccc;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
                transform: scale(1.04);
        }

        .about-image:hover img {
            transform: scale(1.1);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgb(255 179 0 / 10%), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: -1px 1px 46px rgb(255 183 0 / 10%); 
         }

        .service-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        .service-card p {
            color: #cccccc;
            line-height: 1.6;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: -1px 1px 46px rgb(0 212 255 / 10%);      
          }

        .project-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgb(0, 0, 0));
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-overlay {
            transform: translateY(0);
        }

        .project-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #c97317;
    background: #000000b3;
    padding: 0 8px;
    border-radius: 9px;
    text-align: center;
        }

        .project-overlay p {
            color: #cccccc;
            font-size: 0.9rem;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-left: 1rem;
            width: 30px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(255, 187, 0, 0.5);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--bar-button);
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 20px rgba(255, 174, 0, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 2px rgba(148, 101, 0, 0.4);
        }

        .app-download {
            text-align: center;
            padding: 4rem 0;
            background: url(./img/coverapp.jpg);
            border-radius: 20px;
            margin: 2rem 0;
                background-position: center -143px;
    background-size: cover;
    box-shadow: inset 0px 0px 219px 148px #392715;

        }
.app-download h2:after {
    content: '';
    background: url(./img/logoapy.png);
    width: 50px;
    height: 50px;
    position: absolute;
    background-size: 53px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 14px;
    margin-right: 10px;
    border-radius: 13px;
    box-shadow: 0px 0px 10px 0px #e9970057;
    transform: rotate(360deg);
}
        .app-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .app-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 15px 25px;
            background: linear-gradient(45deg, #ffa600, #cc9c00);
            color: white;
            text-decoration: none;
            border-radius: 15px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .app-btn:hover {
            transform: translateY(-5px);
    box-shadow: 0px 0px 12px rgb(125 58 26);
    background: linear-gradient(45deg, #8f610f, #cc8d00);
     }

        .app-btn i {
            font-size: 2rem;
        }

        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 3rem 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            color: #888888;
        }

           .image-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(0 0 0 / 21%);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.image-modal.active .image-modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.post-img {
    cursor: pointer;
    transition: transform 0.2s;
}

.post-img:hover {
    transform: scale(1.02);
}
.image-loading {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.loading-placeholder {
    max-width: 200px;
    max-height: 200px;
    opacity: 0.7;
}
         i.fa-solid.fa-map-location-dot {
    color: var(--primary-color);
    font-size: 17px;
    border: 1px solid var(--primary-color);
    padding: 3px;
    padding-right: 4px;
    border-radius: 6px;
    vertical-align: -webkit-baseline-middle;
    position: relative;
    top: -3px;
}
td a {
    padding: 13px 0px;
    
}
.st-mobile, .st-prooo , .st-trin , html , .st-infoo{scroll-behavior: smooth;}
        @media (max-width: 768px) {

    div#foqp{
        width: 40px;
        height: 40px;
        position: sticky;
        background: var(--section-bg);
        border: 1px solid var(--primary-color);
        margin: -58px 16px;
        border-radius: 50%;
        color: var(--bar-buttonh);
        text-align: center;
        line-height: 1.99;
        font-size: 22px;
        bottom: -130px;
        float: left;
          display: none;
    transition: all 0.3s ease;
    }
        div#foqpr {
        width: 40px;
        height: 40px;
        position: sticky;
        background: var(--section-bg);
        border: 1px solid var(--primary-color);
        margin: 0 auto;
        border-radius: 50%;
        color: var(--bar-buttonh);
        text-align: center;
        line-height: 1.99;
        font-size: 22px;
        bottom: -45px;
        display: none;
        transition: all 0.3s ease;
    }
div#foqp:active , div#foqpr:active
 {
    transform: rotateZ(69deg);
    bottom: -129px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#fullImage.hidden {
    display: none;
}
        .st-mobile::-webkit-scrollbar, .st-prooo::-webkit-scrollbar , .st-trin::-webkit-scrollbar{display:none;}

            .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 58px;
        left: 0;
        width: 50%;
        max-width: 300px;
        background: rgb(15 20 25);
        padding: 2rem 1rem;
        gap: 3.5rem;
        z-index: 9999;
        transition: all 0.3s ease;
        border-left: 2px solid #00d4ff30;
        box-shadow: 2px 0px 15px rgba(0, 212, 255, 0.1);
        margin-left: -100%;
        }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section h2 {
                font-size: 2rem;
            }

            .app-buttons {
                flex-direction: column;
                align-items: center;
            } 
               .sh3ar{    margin-bottom: -12px; margin-left: 14px;}
               .logo{    margin-top: -7px;}
        }
        
        .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}


    header{width: -webkit-fill-available;right: 0px;}
    .st-mobile , .st-trin , .st-prooo , .st-infoo {overflow-x: hidden;padding-top: 70px; display: none;   top: 100%;
}
p.author:before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(./img/profile.png);
    background-size: 50px;
    background-position: -11px -4px;
    float: inline-start;
    border-radius: 50%;
    margin-left: 11px;
    margin-bottom: 16px;
    margin-top: -1px;
    margin-right: 6px;
}
p.author {
        font-size: 16px;
        border-bottom: 1px solid #242424;
        padding-bottom: 9px;
        margin-top: 0px;
        margin-right: 3px;
        border-radius: 5px;
        line-height: 29px;
        width: 98%;
}
    .read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: 'Tajawal';
    opacity: 0.7;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    margin-right: 3px;
    position: relative;
    top: 1px;
    margin-top: -9px;
}
@media (max-width: 768px) {

html {
  scrollbar-width: none;
  -ms-overflow-style: none; 
}

html::-webkit-scrollbar {
  display: none;
}

body {
  overflow-y: scroll; 
  -webkit-overflow-scrolling: touch; 
}

   .st-mobile  {
        display: block;
    background: var(--bg-bar);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    right: 100%;
    z-index: 3;
    transition: all 0.3s;
     overflow-y: scroll;
}
    .st-trin   {
        display: block;
    background: var(--bg-bar);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    right: 100%;
    z-index: 3;
    transition: all 0.3s;
    overflow: scroll;
    padding-bottom: 8pc;
}
    .st-prooo   {
        background: var(--bg-bar);
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0%;
        left: 100%;
        z-index: 3;
        transition: all 0.3s;
        padding: 60px 22px;
        padding-bottom: 11pc;
        display: inline-grid;
        overflow-y: scroll;
        justify-content: center;

}
    .st-infoo   {
        display: block;
    background: var(--bg-bar);
    width: 100%;
    height: 100%;
    position: fixed;
        top: 0;
        left: 100%;
        z-index: 3;
    transition: all 0.3s;
        overflow-y: scroll;
    padding-bottom: 15pc;}
    .st-infoo::-webkit-scrollbar {display:none;}
    .mobile-menu-btn {
        display: block;
        position: absolute;
        left: 20px;
        top: 8px;
    }
    
    
.nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 58px;
        left: 0;
        width: 50%;
        max-width: 300px;
        background:var(--section-bg);
        padding: 2rem 1rem;
        gap: 1.5rem;
        z-index: 9999;
        transition: all 0.3s ease;
        border-left: 2px solid rgb(255 183 0 / 10%);
        box-shadow: 2px 0px 15px rgb(255 183 0 / 10%);
        margin-left: 0px;
}

   ul.nav-links.active:after {
    content: '';
    width: 100%;
    height: 9000pc;
    background: var(--section-bg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
} 
    nav {
        padding: 1rem;
    }
}
 .nbtha {
        text-align: center;
        line-height: 34px;
        padding: 20px 17px;
        color: var(--text-color);
        margin-bottom: 9pc;
        background: var(--sring-bg);
        border-radius: 13px;
        box-shadow: 0px 0px 4px #0000007a;
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        margin-top: 15px;
    }
    .settings-header h2
 {
    margin: -20px 0px -25px 0px;
    font-size: 19px;
    line-height: 4;}
    .about-office.section-box h3 {
    color: var(--primary-color);
}
p.sub-text {
    color: var(--text-color);
    opacity: 0.6;
}
.appearance-settings.section-box {
    border: 1px solid var(--sting-border);
    border-radius: 16px;
    text-align: right;
    padding-right: 10px;
    line-height: normal;
    margin: 30px 0px;
    padding: 15px;
}
.language-settings.section-box {
    border: 1px solid var(--sting-border);
    border-radius: 16px;
    text-align: right;
    padding-right: 10px;
    line-height: normal;
    margin: 30px 0px;
    padding: 15px;
}
.notifications-settings.section-box {
    border: 1px solid var(--sting-border);
    border-radius: 16px;
    text-align: right;
    padding-right: 10px;
    line-height: normal;
    padding-bottom: 21px;
    margin: 30px 0px;
    padding: 15px;
}
.privacy-settings.section-box {
    border: 1px solid var(--sting-border);
    border-radius: 16px;
    text-align: right;
    padding-right: 10px;
    line-height: normal;
    padding-bottom: 20px;
    margin: 30px 0px;
    padding: 15px;
}
    .about-office.section-box {
    border: 1px solid var(--sting-border);
    border-radius: 16px;
    text-align: right;
    padding-right: 10px;
    line-height: normal;
    margin: 30px 0px;
    padding: 15px;
}

.support-section.section-box {
    border: 1px solid var(--sting-border);
    border-radius: 16px;
    text-align: right;
    padding-right: 10px;
    line-height: normal;
    margin: 30px 0px;
    padding: 15px;
}
.them {
    padding: 12px 14px;
}
.privacy-settings.section-box input {
    min-height: 0;
}
.privacy-settings.section-box h3 {
    margin-bottom: 15px;
}
.mshakl {
    padding: 13px 23px;
}
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .services-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card, .project-card {
        margin-bottom: 1.5rem;
    }
        .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .service-card, .project-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}
@media (max-width: 768px) {
    .about-image img {
        height: 300px;
    }
    
    .project-card img {
        height: 200px;
    }
}
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .about-text, .service-card p, .project-overlay p {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .form-group input, 
    .form-group textarea {
        padding: 10px;
    }
    
    .submit-btn {
        padding: 10px 20px;
    }
}
div#postsContainer {
    display: contents;
}
#pdfContainer {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, 480.2px);
}
@media (max-width: 768px) {

       #pdfContainer { grid-template-columns: auto;}
    .nav-links a, 
    .cta-button, 
    .app-btn, 
    .social-links a,
    .submit-btn {
        padding: 12px 20px;
    }
    
    .nav-links li {
        padding: 0 0 17px 0px;
        border-bottom: 1px solid #dd97005c;
        }
    
    a, button, input, .service-card, .project-card {
        min-height: 44px;
    }
}
@media (max-width: 768px) {
    .hero::before {
        animation: none;
    }
    
    .service-card::before {
        display: none;
    }
    
    .project-overlay {
        transform: translateY(0);
        position: relative;
        background: rgb(23 23 34);
        border-radius: 0px 0px 17px 17px;
        padding-top: 21px;
        margin-top: -7px;
        border-top: 1px solid var(--primary-color);
        }

header{    height: 58px;}
i.fas.fa-bars {
    background: linear-gradient(45deg, #ffa600, #ffc400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
fot {
    background: var(--bar-mobile);   
     width: 100%;
    height: 95px;
    position: fixed;
    bottom: -1px;
    z-index: 99999;
    border-top: 1px solid var(--primary-color);
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    box-shadow: 0px 9px 14px var(--primary-color);
}

.mu {
        font-size: 26px;
        text-align: center;
        flex: 1;
        margin: -6px 0px;
        border-left: 1px solid #2e2a1a;
        padding: 0px 13px;
        height: 42px;
        position: relative;
        top: -24px;
        color: var(--bar-buttonh);   
}
.mu.hume {
    position: relative;
    top: 0px;
}
  .imhume {
        background-image: url(./img/logo2y.png);
        background-color:var(--bar-mobile);
        width: 80px;
        height: 80px;
        background-size: 57px;
        background-repeat: no-repeat;
        background-position: center;
        display: inline-grid;
        margin: 8px -2px;
        position: relative;
        margin-top: -19px;
        border-radius: 50%;
        top: -6px;
        border-top: 2px solid var(--primary-color);
        transition: all 0.3s;
}  
.mu.hume , .mu.projects , .mu.sitting {
        border-left: none;
        border-right: none;
}
.mu.trining:hover {
    transition: all 0.5s;
    color: #ffa600cf;
}
.mu.projects:hover {
    transition: all 0.5s;
    color: #ffa600cf;
}
.mu.sitting:hover {
    transition: all 0.5s;
    color: #ffa600cf;
}
.mu.info:hover {
    transition: all 0.5s;
    color: #ffa600cf;
}
.hero:before{     animation: moveBackground 20s linear infinite;   background-size: 135px;
}
.app-download h2:after{        margin-top: -3px;}
.app-download{box-shadow: inset 0px 0px 227px 110px #392715;background-position: center;}

}
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

}

:root {
  --bg-color: #f0f4f8;
  --text-color: #1a202c;
  --section-bg: #ffffff;
  --card-bg: #ffffff;
  --border-color: #cbd5e0;
  --primary-color: #a76910;
 --primary-color2: #754405;
  --secondary-color: #d48a00;
  --text-secondary: ##f8f6ef;
  --bar-mobile: #e6edf4;
  --bar-button: #d48a00;
  --bar-buttonh: #ffffffd9;
  --bg-body: linear-gradient(135deg, #ffffff 0%, #e2f0ff 100%);
  --bg-bar: repeating-linear-gradient(315deg, #ffffff, #f7f8f9 272px);
  --sring-bg:#f7f7f7;
  --border-bottom: #000000;
  --sting-border: #cfc7b9;

}


[data-theme="dark"] {
  --bg-color: #0f1115;
  --text-color: #e2e8f0;
  --section-bg: #1a1d23;
  --card-bg: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.07);
  --primary-color: #d48a00;
  --primary-color2: #d48a00;
  --secondary-color: #ffbe33;
  --text-secondary: #c0b2a0;
  --bar-mobile: #1a1d23;
  --bar-button: #ffb833;
  --bar-buttonh: #c9bca3;
  --bg-body: linear-gradient(135deg, #0f1115 0%, #1a1d23 50%, #1a1d23  100%);
  --bg-bar:#0c0c0c;
  --sring-bg: #2525253b;
  --border-bottom: #d48a00;
  --sting-border: #1c1c1c;
  }

    body {
      background-color: var(--bg-color);
      color: var(--text-color);
    }

    header, footer, .section {
      background-color: var(--section-bg);
    }

    .service-card, .project-card, .contact-form, .contact-info {
      background-color: var(--card-bg);
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .hero h1, .section h2 {
      background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p, .about-text, .service-card p, .project-overlay p, .footer-section p {
      color: var(--text-secondary);
    }

    .nav-links a, .footer-section a {
      color: var(--text-color);
    }

    .nav-links a:hover, .footer-section a:hover {
      color: var(--primary-color);
    }

    .cta-button, .submit-btn, .app-btn, .social-links a {
      background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    }

    [data-theme="light"] {
        @media (min-width: 768px) {
                div#infoo:hover, div#prooo:hover, div#trin:hover, div#stn:hover {
        border-bottom: 1px solid #533b1a;
        color: #533b1a;}
            .nav-links a, .footer-section a {color: #ffffff;}}
            
            fot {
        border-top: 1px solid #ffefcd;
        box-shadow: 0px 5px 14px #000000;
    }
        .sh3ar{     background: url(./img/logo2y2.png?v=1); 
                background-size: 47px;
        background-repeat: no-repeat;
        background-position: center;
        }
            .mu.homepage {
        color: #533b1a;
    }
        fot:after{box-shadow: inset 0px 80px 20px #a76910;opacity: 0.17; filter: none;}
.me-course-section {
    border: 1px solid #cdcdcd;}
.like-btn {
    color: #cdbdac;}
           .notifications-settings.section-box:before {
    background: repeating-linear-gradient(45deg, #f6f2edd1, #efeae0bd 60px);}
         header {
    background-color: #a76910;
    border-bottom: 1px solid #ffefcd;}
            .imhume {
        background-image: url(./img/logo2y2.png?v=1);
                background-color: #a76910;
        border-top: 1px solid #ffefcd;
        box-shadow: 0px -8px 13px #00000040;}
            .mu.hume, .mu.projects, .mu.sitting {
        border: none;
    }
        .project-overlay{background: #b3b3b345;}
        .mu{color: #fcf7ef;border-left: 1px solid #ebca9057;}
            fot {
        background: #a76910;}
      .hero {
        background: radial-gradient(ellipse at center, #875000 0%, #a76910 70%);
      }
      .hero::before {
    filter: opacity(0.09);}
          i.fas.fa-bars {
        background: #f2e9db;
            -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .part {
    background: #a76910;
    border: 2px solid #f2e9db;
    box-shadow: 0 4px 20px rgb(0 0 0 / 31%);
}
      .cta-button{
    background: #ffffff;
    color: #d48a00;
}
       .hero p{color: #d9c28d;}
       .logo{        background: linear-gradient(45deg, #f7f8f9, #ffffff);
        background-clip: text;
        -webkit-background-clip: text;
        background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;}
       .section {
    background:repeating-linear-gradient(315deg, #ffffffd1, #8383830d 272px);}
      .hero h1{
    background: linear-gradient(45deg, #ffffff, #ffffff); 
   background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}
      .nav-links a::after {
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
      }
      
      .service-card:hover, .project-card:hover {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      }
      
      .contact-form input, 
      .contact-form textarea {
        background: rgba(0, 0, 0, 0.03);
        border-color: var(--border-color);
        color: var(--text-color);
      }
      
      .form-group label {
        color: var(--primary-color);
      }
      
      .contact-item i {
        color: var(--primary-color);
      }
      
      .footer-bottom {
        color: var(--text-secondary);
      }
    }
  .theme-toggle-btn {
background: var(--primary-color);
    color: white;
    border: none;
    padding: 0px 24px;
    border-radius: 9px;
    font-size: 14px;
    cursor: pointer;
    margin: 14px 0px;
    width: -webkit-fill-available;
    transition: all 0.3s ease;
    font-family: 'tajawal';
    min-height: 35px;
    }
    .language-settings.section-box select{
         width: 96%;
    padding: 10px;
    font-size: 15px;
        border: 1px solid var(--sting-border);
        border-radius: 10px;
        background-color: var(--sring-bg);
    color: var(--text-color);
    font-family: 'Tajawal';
    display: flex;}
.support-section.section-box a {
    text-decoration: none;
    color: #d48a00;
    padding: 0px 7px;
}
.notifications-settings.section-box h3 {
    margin-bottom: 15px;
}
.theme-toggle-btn:hover {
    box-shadow: 0 0px 13px rgb(255 255 255 / 20%);}
    @media (max-width: 768px) {
        .project-overlay h3{    background:none;text-align: right;}
      body {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }
      footer {
    margin-bottom: 7pc;
    box-shadow: 0px 70px var(--section-bg);}
      .theme-toggle-container {
    padding: 15px;
    text-align: center;
}
.theme-toggle{display:none;}
  

[data-theme="light"] .theme-toggle-btn i {
    transform: rotate(180deg);
}

[data-theme="light"] .theme-toggle-btn {
    background: linear-gradient(45deg, #8f610f, #cc8d00);
}
    }

    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      z-index: 9999999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
          backdrop-filter: blur(1px);
    }
    .lightbox.active {
      opacity: 1;
      pointer-events: auto;
    }
    .lightbox img {
      max-width: 90%;
      max-height: 70vh;
      margin-bottom: 1rem;
    }
    .lightbox .info {
      color: white;
      text-align: center;
    }
 .theme-toggle {
  position: fixed;
  left: 17px;
  bottom: 17px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10000;
}

    .success-message {
      text-align: center;
      color: green;
      margin-top: 20px;
      font-weight: bold;
    }
    

.post-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: var(--text-color);
  transition: 0.3s;
}

.post-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}

.read-more, .read-less {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  margin-right: 10px;
}

.read-more:hover, .read-less:hover {
  text-decoration: underline;
}

.like-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #aaa;
  transition: 0.3s;
}

.like-btn.liked {
  color: red;
}

.custom-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.custom-lightbox-content {
  text-align: center;
  animation: zoomIn 0.4s ease;
}

.custom-lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.close-lightbox {
  margin-top: 15px;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  background: var(--primary-color);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Tajawal';
}

.close-lightbox:hover {
  background: #ff9900;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

p.post-description {
    word-wrap: break-word;
}
             .post-card-pdf {
    max-width: 400px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2pc;
        height: max-content;
        }


  .pdf-preview {
            height: 200px;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .pdf-icon {
            font-size: 4rem;
            color: white;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .post-content {
            padding: 25px;
        }

        .post-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    opacity: 0.88;
    margin-bottom: 15px;
    line-height: 1.4;
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            background: url(./img/profile2.jpg);
            background-position: -11px -10px;
            background-size: 71px;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: bold;
            color: #606fd1b0;
        }

        .post-date {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        .post-description {
            color: var(--text-color);
            opacity: 0.5;
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .post-actions {
            display: flex;
            gap: 15px;
    margin-bottom: -4px;     
        line-height: 1.8;}

        .btn-pdf {
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

 .btn-primary {
    background: rgba(102, 126, 234, 0.1);
    color: var(--text-secondary);
    margin-left: 6px;
        border-bottom:2px solid rgba(102, 126, 234, 0.2);
}

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: rgba(108, 117, 125, 0.1);
            color: #6c757d;
            border: 1px solid rgba(108, 117, 125, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(108, 117, 125, 0.2);
        }

        .file-info {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
        }

        .file-size {
    background: rgba(102, 126, 234, 0.2);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #667eea;
    direction: ltr;
    flex: 0 0 80px;
    text-align: center;
        }
        .pdf-title {
    width: -webkit-fill-available;
    overflow-x: hidden;
    text-overflow: ellipsis;
    display: flex;
    flex-direction: row-reverse;}
        .pdf-img {
    width: -webkit-fill-available;
}
.bgpdf:after {
    content: '';
    width: 50px;
    height: 50px;
    background: url(./img/pdf-icon.png);
    position: absolute;
    bottom: 13px;
    right: 11px;
    background-size: cover;
    filter: drop-shadow(0px 0px 5px #0000007a);
    color: #0000007a;
}

.bgpdf {
    width: 100%;
    height: -webkit-fill-available;
    background: linear-gradient(135deg, #ffa60000 26%, var(--primary-color) 90%);
    position: absolute;
}
.support-section.section-box:after {
content: '';
    background: url(./img/logo2y.png);
    width: 70px;
    height: 70px;
    background-size: 70px;
    margin-top: -3.5pc;
    opacity: 0.5;
    display: block;
    float: left;
}
.settings-header {
    border: 1px solid var(--sting-border);
    border-radius: 15px;
    padding: 8px 3px;
}
  .me-course-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
  }

  .me-course-section {
    background-color: var(--sring-bg);
    border: 1px solid var(--sting-border);
    margin: 20px 0;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
h2.ttlyt {
    background-color: var(--sring-bg);
    border: 1px solid var(--sting-border);
    padding: 10px 0;
    border-radius: 15px;
}
.formyt {
    background-color: var(--sring-bg);
    border: 1px solid var(--sting-border);
    padding: 30px;
    border-radius: 16px;
}
  .me-course-title,
  .me-course-section h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 15px;
        font-size: 20px;
            direction: ltr;
  }

  .me-course-title {
    font-size: 20px;
    font-weight: bold;
  }

  .me-course-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
  }

  .me-course-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }

  .me-course-table th,
  .me-course-table td {
    border: 2px solid var(--sting-border);
    padding: 10px;
    background-color: var(--sring-bg);
  }

  .me-course-list {
    list-style-type: square;
    padding-right: 20px;
    font-size: 14px;
    color: var(--text-color);
  }

  .me-course-video-item {
    margin-bottom: 30px;
  }

  .me-course-video-title {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: right;
  }

  .me-course-video iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
  }

  .me-course-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .me-course-gallery img {
    width: 180px;
    height: auto;
    border-radius: 10px;
    border: 1px solid #ccc;
    object-fit: cover;
  }

  .me-course-certificate img {
    width: 500px;
    max-width: 100%;
    margin: 30px auto 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    display: block;
  }

  @media (max-width: 768px) {
    .homepage {
    display: none;
}
      .formyt {
    padding: 13px;}
    .me-course-video iframe {
      height: 220px;
    }

    .me-course-gallery img {
      width: 100%;
      max-width: 100%;
    }

    .me-course-table th,
    .me-course-table td {
      font-size: 14px;
    }
  }

 @media (min-width: 500px) {#numberlecture {
    max-width: none;
    font-size: unset;
    font-weight: bold;
    background: var(--section-bg);
    border-bottom: 2px solid var(--border-color);
    --border-color: #7d7d7d26;
 }}
 @media (max-width: 500px) { #numberlecture {
    max-width: 54px;
    font-size: 9px;
    font-weight: 100;
    background: var(--section-bg);
        border-bottom: 2px solid var(--border-color);
    --border-color: #7d7d7d26;
}  }
 @media (min-width: 768px) {
     
     body{padding-right: 255px;}
     fot#foot {
    display: flex;
    position: fixed;
    width: 255px;
    height: 100%;
    top: 69px;
    right: 0;
    z-index: 9900;
    flex-direction: column;
    border-left: 1px solid #313439;
    padding: 5px 0px;
    box-shadow: 0px 11px 15px #00000061;
    color: var(--text-secondary);
}
fot:after {
    content: '';
    background: url(./img/bg.png);
    background-size: 85px;
    background-position: center;
    filter: opacity(0.05);
    width: 100%;
    height: 80%;
    position: absolute;
    bottom: 0;
    z-index: -1;
    animation: moveBackground 20s linear infinite;
    box-shadow: inset 0px 80px 20px var(--section-bg);
}
.mu.hume {
    display: none;
}
.mu {
    font-size: 20px;
    margin: 3px 10px;
    border-bottom: 1px solid #313439;
    padding: 10px 10px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}
.mu.homepage {
    color: var(--primary-color);
}
.homepage:after {
    content: 'الصفحة الرئيسية';
    font-size: 16px;
    margin-right: 12px;
    position: relative;
    top: -2px;
}
.mu.info:after {
    content: 'المنشورات الهندسية';
    font-size: 16px;
    margin-right: 12px;
    position: relative;
    top: -2px;
}
.mu.projects:after {
    content: 'التصاميم الأنشائية ';
    font-size: 16px;
    margin-right: 12px;
    position: relative;
    top: -2px;
}
.mu.trining:after {
    content: 'الدورات التدريبية  ';
    font-size: 16px;
    margin-right: 12px;
    position: relative;
    top: -2px;
}
.mu.sitting:after {
    content: 'ألاعدادات   ';
    font-size: 16px;
    margin-right: 12px;
    position: relative;
    top: -2px;
}

div#infoo:hover,div#prooo:hover,div#trin:hover,div#stn:hover {
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.st-prooo {
        background: var(--bg-bar);
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0%;
        left: 100%;
        z-index: 3;
        transition: all 0.3s;
        padding: 95px 0%;
        margin-top: 69px;
        padding-right: 255px;
        padding-bottom: 11pc;
        overflow-y: scroll;
        display: grid;
        grid-template-columns: repeat(3, 480.2px);
        justify-content: center;
}
.st-infoo {
    background: var(--bg-bar);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 100%;
    z-index: 3;
    transition: all 0.3s;
    padding: 40px 0%;
    margin-top: 69px;
    padding-right: 255px;
    padding-bottom: 11pc;
    overflow-y: scroll;
    display: grid;
    grid-template-columns: repeat(2, 480.2px);
    justify-content: center;
}
.st-trin {
    display: block;
    background: var(--bg-bar);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    right: 100%;
    z-index: 3;
    transition: all 0.3s;
    overflow-y: scroll;
    padding-bottom: 8pc;
    padding-right: 255px;
    margin-top: 69px;
}
.st-mobile {
    display: block;
    background: var(--bg-bar);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    right: 100%;
    z-index: 3;
    transition: all 0.3s;
    overflow-y: scroll;
    padding-bottom: 8pc;
    padding-right: 255px;
    margin-top: 69px;
}
.post-card-pdf {
    margin: 80px 20px;}

 }
 h3.video-title {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 200;
    padding: 8px 2px;
}
 @media (min-width: 1190px) and (max-width: 1640px) {
     .st-prooo {grid-template-columns: repeat(2, 480.2px);}
    div#pdfContainer {
    grid-template-columns: repeat(2, 480.2px);
    display: grid;
    margin: 0 auto;
    width: 200%;
}
    }
@media (max-width: 1190px) and (min-width: 768px) {.st-prooo , div#pdfContainer {grid-template-columns: repeat(1, 480.2px);} .st-infoo { grid-template-columns: repeat(1, 480.2px);}}

h3.title-yt:before {
    content: '🎥';
    margin: 0 6px;
    border-left: 1px solid #f13c2a;
    padding-left: 4px;
}

h3.title-yt {
    font-size: 17px;
    font-weight: 100;
    margin: 17px 4px;
    border-top: 2px solid var(--sting-border);
    padding-top: 15px;
    color: #f14545;
}
.me-course-section.yt {
    background-color: var(--section-bg);
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding: 0;
    color: var(--primary-color);
}
.me-course-section.yt > div {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 0 16px 16px 0;
        transition: all 0.4s;
}
div#videosyt:hover {
    border-radius: 16px 0 0 16px;
    transition: all 0.4s;
    box-shadow: inset 6px 0px 0px var(--primary-color);
}
div#infoyt:hover {
    border-radius: 0 16px 16px 0;
    transition: all 0.4s;
    box-shadow: inset -6px 0px 0px var(--primary-color);
}
fsl {
    position: absolute;
    margin-top: -21px;
    height: 75px;
    background: var(--bg-bar);
    width: 1px;
}
.me-course-section.me-course-video {
    display: none;
    background-color: #25252500;
    border: none;
    padding: 2px;
}

    .activefot{border-top: 1px solid var(--primary-color2);
    padding-top: 11px;}
.tnzeel {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center; 
  align-items: center;     
  background: rgba(6,5,2,0.8);
  backdrop-filter: blur(12px);
  z-index: 999999;
  transition: all 0.4s;
      opacity: 0;
}

#conttnzel {
 max-width: 500px;
  width: 90%;
  padding: 2rem;
  background: var(--bar-mobile, #222); 
  border-radius: 25px;
  box-sizing: border-box;
  border: 1px solid #323741;
  text-align: center;
  position: relative;
}

.zr {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    margin: 5px;
    cursor: pointer;
    color: white;
    font-size: 1rem;
}

.zr.ios { border-radius: 0 11px 0 0; }
.zr.computer { border-radius: 12px 0 0 0; }

i.fa-solid.fa-desktop,
i.fa-brands.fa-android,
i.fa-brands.fa-apple {
    padding-left: 8px;
}

.pageandroid,
.pagecomputer,
.pageios {
    display: none;
    width: 100%;
    background: #00000061;
    height: 30pc;
    margin-top: 1rem;
    border-radius: 0 0 15px 15px;
    border-top: 1px solid var(--bar-mobile);
    padding: 1rem;
    box-sizing: border-box;
    color: white;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
}
.pageios:after {
    background-image: url(./img/downloadApp/ios.gif);
    width: 184px;
    height: 400px;
    background-size: 185px;
    background-position: -1px -3px;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    margin-top: 40px;
    content: 'جاري التحميل ... ';
    line-height: 24;
    color: #101216;
    background-color: #9b5e13;
}
.pageandroid:after {
    content: 'جاري التحميل ...';
    background-image: url(./img/downloadApp/android.gif);
    width: 182px;
    height: 423px;
    background-size: 185px;
    background-position: -1px -3px;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    margin-top: 50px;
     line-height: 24;
    color: #101216;
    background-color: #9b5e13;
}
.pagecomputer:after {
    content: 'جاري التحميل ...';
    background-image: url(./img/downloadApp/computer.gif);
    width: 75%;
    height: 310px;
    background-size: 553px;
    background-position: 400px -1px;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    margin-top: 40px;
     line-height: 24;
    color: #101216;
    background-color: #9b5e13;
}
#platformSelect {
    padding: 12px 16px;
    font-size: 1rem;
    background-color: #1e1e2f;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 10px;
    appearance: auto;
    cursor: pointer;
    transition: 0.3s ease;
    width: 85%;
    max-width: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Tajawal';
}

#platformSelect:focus {
  outline: none;
  border-color: var(--primary-color, #00bcd4);
  box-shadow: 0 0 0 3px rgba(0,188,212,0.3);
}

#valuelecture {
    background: var(--section-bg);
    text-align: center;
}
.telegram {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    margin-top: 50px;
    font-size: 11px;
    display: flex;
    flex-direction: row;
}
.imgtelegram {
    background: url(https://majidalbana.com/img/telegram.jpg);
    width: 90px;
    height: 90px;
    background-size: cover;
    border-radius: 50%;
    margin: 18px 7px;
        border: 2px solid #20a3e1;
}
.telegram h1:after {
    content: 'انضم إلى قناتنا على تلجرام';
    display: block;
    font-weight: 100;
    font-size: 13px;
        line-height: 0;
    margin-top: -10px;

}
.telegram h1 {
    line-height: 4;
        margin-right: 20px;
}
.telegram-btn {
    position: absolute;
    background: #20a3e1;
    padding: 5px 32px;
    border-radius: 13px;
    margin: 73px 119px 0 0;
    color: var(--text-color);
}
.imgtelegram:before {
    content: '';
    background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Telegram_2019_Logo.svg/800px-Telegram_2019_Logo.svg.png);
    position: absolute;
    width: 25px;
    height: 25px;
    background-size: cover;
    margin: 0px;
}
.parts {
    margin: 0 auto;
    width: 92%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ffffff14;
    margin-bottom: 15px;
}
.part {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    margin: 0 5px;
    align-items: center;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    text-align: center;
    padding: 8px 10px;
    font-size: 13px;
    margin-bottom: 1.7pc;
    margin-top: -33px;
    cursor: pointer;
    transition: all 0.5s;
        color: var(--bar-buttonh);
}
.part:hover {
    color: var(--primary-color);
}
button#enable-notifications-btn {
    border: none;
    width: 100%;
    min-height: 35px;
    background: #379436;
    color: #ffffff;
    font-family: 'Tajawal';
    font-size: 16px;
    border-radius: 9px;
    cursor: pointer;
    box-shadow: 0px 0px 20px #37943626;
}