body {
  font-family: 'Tajawal', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
.indexagsam {
        margin-bottom: 20px;
    }       
     header {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #000; 
    }
    .social-icons {
        order: 1;
        margin-bottom: 5px;
        margin-top: 10px;
    }
    .social-icons a {
        margin: 0 5px;
        font-size: 24px; 
        color: white; 
    }
    .navbar {
    display: flex;
    width: 100%;
    order: 2;
    justify-content: space-around;
    align-items: center;
    background-color: #001e5b;
    }
    .navbar-brand {
        text-align: right;
    }
    .search-icon {
    cursor: pointer;
    font-size: 24px;
    color: #2ee314; 
    }
    .navbar-brand img {
         height:150px;
         width: 100%;
        }
    .form-inline {
        display: none;
    }
    .form-inline.show {
        display: block;
    } 
    .form-inline {
        position: absolute;
        top: 130px;
        right: 0;
        background-color: #5b6a7f;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        transition: all 0.3s cubic-bezier(1, 0.46, 0, 1.64);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 9999;
    }

    .form-inline.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .form-inline input[type="search"] {
        padding: .5rem;
        width: 75%;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: 'Tajawal', sans-serif;
    }
.contact-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 10px;
    font-family: 'Tajawal', sans-serif;
    font-weight: bold;
}
.contact-button:hover {
            background-color: #0056b3;
        } 
.anwankdmh{
    font-size: 40px; 
    font-weight: bold;
}   
label {
            display: block;
            font-weight: bold;
            margin-top: 20px;
        }
input[type="text"], 
input[type="password"], 
input[type="email"], 
input[type="number"], 
textarea, 
select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #1f4194;
    box-sizing: border-box;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Tajawal', sans-serif;
    font-size: small;
}
        textarea {
            height: 100px; 
        }
        input[type="submit"] {
            margin-top: 20px;
            padding: 10px 20px;
            border: none;
            background-color: #5C6BC0;
            color: white;
            cursor: pointer;
            font-weight: bold;
           font-family: 'Tajawal', sans-serif;
            border-radius: 5px;
        }
        input[type="submit"]:hover {
            background-color: #3949AB;
 }  
main {
     margin-right: 100px;
    margin-left: 100px;
 } 
       @media (max-width: 600px) {
    
  main {
    margin-right: 10px;
    margin-left: 10px;
               
            }
        }  
.article {
        margin: 5px auto;
        max-width: 800px;
      
    } 
    .article h1 {
        text-align: center;
        font-size: 2em;
        color: darkblue;
    }
    .article p {
        text-align: justify;
    }
    .article img {
        width: 100%;
        height: 250px;
    }
    .image-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, auto));
        grid-gap: 5px;
    }
    .image-grid img {
        width: 100%;
        height: 200px; 
        object-fit: cover; 
    }
    .keywords {
        border-top: 1px solid #ddd; 
        padding-top: 1em; 
        margin-top: 1em; 
    }
        .project-details {
            margin: 20px auto;
            padding: 20px;
            max-width: 800px;
        }
        .project-details img {
            max-width: 100%;
            height: 250px;
            border-radius: 5px;
        }

             .project-link {
          display: inline-block;
            margin-top: 20px;
            text-decoration: none;
            color: #fff;
            background: #4a9a00;
            padding: 5px 8px;
            border-radius: 5px;
        }    
        
     .footer {
      background: #001e5b;
      text-align: center;
      padding:5px;
      bottom: 0;
    }

    .footer a {
      color: white;
      text-decoration: none;
    } 
    .sectionsfo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 5px;
    box-sizing: border-box;
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
}

.sectionsfo li {
    background-color: #220f86; 
    border: 1px solid #ccc; 
    padding: 10px; 
    border-radius: 5px; 
    text-align: center; 
}

.sectionsfo li a {
    text-decoration: none; 
    color: #fff; 
}


@media (max-width: 600px) {
    .sectionsfo {
        grid-template-columns: repeat(2, 1fr);
    }
}
   /* الأنماط الأساسية للأزرار */
.custom-contact-btn, .custom-whatsapp-btn {
    position: fixed;
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    text-align: center; 
    line-height: 50px; 
    background-color: #009688; 
    color: white; 
    font-size: 20px; 
    z-index: 1000; 
}

/* تحديد مواقع الأزرار */
.custom-contact-btn {
    right: 10px;
    bottom: 70px; /* ضبط المسافة من الأسفل */
}

.custom-whatsapp-btn {
    right: 10px;
    bottom: 10px; 
}

/* تأثير عند التحويم على الزر */
.custom-contact-btn:hover, .custom-whatsapp-btn:hover {
    background-color: #00796B; /* لون الخلفية عند التحويم */
    text-decoration: none; /* إزالة الخط تحت النص */
}   