/* Google Fonts */
body {
    font-family: 'Cairo', 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cairo', 'Arial', sans-serif;
    font-weight: 600;
}

/* Frontend Custom Styles */
.hero-section {
    position: relative;
    background: linear-gradient(120deg, #2980b9, #8e44ad);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.services-section,
.scripts-section {
    padding: 80px 0;
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 123, 255, 0.2) !important;
    border-color: rgba(0, 123, 255, 0.3) !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.2) 0%, rgba(176, 196, 222, 0.2) 100%);
    border-radius: 50%;
}

.service-icon i {
    font-size: 2.5rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: #0056b3;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.3) 0%, rgba(176, 196, 222, 0.3) 100%);
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Navbar Brand Styling */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 0;
}

.navbar-brand i {
    font-size: 1.75rem;
    color: #fff;
}

.navbar-brand .site-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.4;
    justify-content: center;
}

.brand-name-ar {
    font-family: 'Cairo', 'Arial', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}

.brand-name-en {
    font-family: 'Open Sans', 'Arial', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    margin-top: -3px;
    text-align: center;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Footer Social Buttons */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-btn.facebook:hover {
    background-color: #3b5998;
}

.social-btn.twitter:hover {
    background-color: #1da1f2;
}

.social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-btn.linkedin:hover {
    background-color: #0077b5;
}

.social-btn.whatsapp:hover {
    background-color: #25d366;
}

.social-btn.youtube:hover {
    background-color: #ff0000;
}

.links-list li a {
    transition: all 0.3s ease;
}

.links-list li a:hover {
    padding-right: 8px;
    color: #fff !important;
}

.hover-white:hover {
    color: #fff !important;
}

/* Footer Bottom */
footer p {
    font-size: 0.95rem;
}