body {
    font-family: 'Cairo', Arial, sans-serif;
    margin: 0;
    background: #133226;
    color: #fff;
    direction: rtl;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    flex-direction: column;
    
}
.nav-brand {
    display: flex;
    align-items: center;
    /*gap: 10px;*/
}
.company-name {
    color: #d6b167;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-right: 12px;
}
.logo {
    width: 300px;
    height: 150px;
    object-fit: contain;
    margin-right: 85%;    
     
}
nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 8px;
}
nav ul li {
    margin-left: 18px;
}
nav ul li a {
    text-decoration: none;
    color: #d6b167;
    font-weight: bold;
    font-size: 18px;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    
}
nav ul li a:hover {
    color: #fff;
}
.hero {
    background: linear-gradient(120deg, #133226 80%, #d6b167 100%);
    padding: 80px 0 60px 0;
    text-align: center;
}
.hero h1 {
    font-size: 54px;
    color: #d6b167;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.hero p {
    font-size: 22px;
    margin-bottom: 28px;
    color: #fff;
}
.btn {
    background: #d6b167;
    color: #133226;
    padding: 13px 36px;
    border: none;
    border-radius: 30px;
    font-size: 19px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.btn:hover {
    background: #fff;
    color: #133226;
}
.con {
  background: #d6b167;
  color: #133226;
  padding: 13px 36px;
  border: none;
  border-radius: 30px;
  font-size: 19px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s;
  display: block;       /* يخليه عنصر بلوك */
  margin: 20px auto;    /* auto يخليه في النص بالعرض */
  width: fit-content;   /* عشان ما يتمددش على العرض كله */
}

.con:hover {
  background: #fff;
  color: #133226;
}

.section {
    padding: 60px 0 40px 0;
}
.alt-bg {
    background: #18412e;
}
h2 {
    color: #d6b167;
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 30px;
}
.service-card {
    background: #133226;
    border-radius: 15px;
    padding: 30px 18px;
    text-align: center;
    color: #fff;
    box-shadow: 0 2px 12px 0 #0002;
    border: 1px solid #d6b16744;
}
.service-card h3 {
    color: #d6b167;
    margin-bottom: 14px;
}
.portfolio-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 0;
}
.portfolio-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    width: 80vw;
    max-width: 700px;
    padding: 10px 0;
}
.portfolio-slider img {
    min-width: 110px;
    max-width: 110px;
    height: 110px;
    object-fit: contain;
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 2px 12px #0001;
}
.slider-btn {
    background: #d6b167;
    color: #133226;
    border: none;
    font-size: 2.1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin: 0 8px;
    opacity: 0.8;
    transition: background .2s, color .2s;
    z-index: 2;
}
.slider-btn:hover {
    background: #fff;
    color: #d6b167;
}
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 500px;
    margin: auto;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px;
    border-radius: 9px;
    border: none;
    background: #fff;
    color: #133226;
    font-size: 17px;
    transition: box-shadow .2s;
    box-shadow: 0 1px 5px #0001;
}
.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}
.form-success {
    color: #d6b167;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}
.contact-direct {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 17px;
    color: #d6b167;
    background: #10271e;
    padding: 7px 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: background .2s, color .2s;
    margin-bottom: 7px;
}
.contact-link:hover {
    background: #d6b167;
    color: #133226;
}
footer {
    background: #10271e;
    text-align: center;
    padding: 20px 0 10px 0;
    color: #d6b167;
    font-size: 16px;
    margin-top: 25px;
    letter-spacing: 1px;
}
.footer-social {margin:12px 0;}
.footer-social a {color:#fff;font-size:1.5rem;margin:0 10px;transition:color 0.2s;}
.footer-social a:hover {color:#226d3e;}
@media (max-width: 900px) {
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }
    nav ul li {
        margin-left: 0;
    }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    .header-flex { flex-direction: column; gap: 16px; }
    .logo { width: 55px; height: 55px; }
    .portfolio-slider { max-width: 95vw; }
    .company-name { font-size: 23px; }
    .contact-direct { gap: 10px; }
}





.multi-slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #133226;
    margin: 0;
    font-family: 'Cairo', Tahoma, Arial, sans-serif;

}
.p9{
    font-size: 30px;
    color: #d6b167;
    font-weight: bold;
}
.slider-container {
    width: 90vw;
    max-width: 950px;
    overflow: hidden;
    background: transparent;
    border-radius: 22px;
    box-shadow: 0 2px 16px rgba(180,180,180,0.08);
    padding: 18px 0;
    direction: rtl;
}
.slider-track {
    display: flex;
    align-items: center;
    transition: none;
    will-change: transform;
    justify-content: center;

}
.slider-slide {
    min-width: 150px;
    max-width: 150px;
    height: 87px;
    background: #fff;
    border-radius: 18px;
    margin-left: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 6px rgba(180,180,180,0.07);
    justify-content: center;

}
.slider-slide:last-child {
    margin-left: 0;
}
.slider-slide img {
    max-width: 90px;
    max-height: 75px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: contain;
    background: #f8f8f8;
}
@media (max-width: 750px){
    .slider-container {max-width: 99vw;}
    .slider-slide {min-width: 110px;max-width: 110px;}
}
html {
  scroll-behavior: smooth;
}
*{
    font-family:'cairo',sans-serif;
}

.fot{
    text-align: center;
     display: flex;
    flex-direction: column;

    
}
.footer-links {
    list-style: none;   /* نشيل النقاط */
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 15px 0;      /* مسافة بين العناصر */
}

.footer-links .l1 {
    text-decoration: none;
    color: #f8f8f8;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links .l1:hover {
    color: #3bc08db6;
}
