:root {
    --primary-color: #2a1b3d;
    --secondary-color: #e6a54c;
    --text-color: #333;
    --light-text: #fff;
    --background-light: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #210F40 ;
    color: var(--light-text);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    color: var(--light-text);
    margin-left: 15px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: #210f40c1;
    color: var(--light-text);
    padding: 150px 0;
    text-align: center;

}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    width: 600px;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    background-repeat: no-repeat;

    object-fit: cover; /* لتغطية الشاشة بالكامل */
  }
  

.highlight {
    color: var(--secondary-color);
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background-light);
}

.about h2 {
    color: #210F40;
    margin-bottom: 2.5rem;
}
.about p {
    color: #210F40;
    
}

/* Services Section */
.services {
    padding: 80px 0;  
    background-color:#210F40;    
    color: var(--light-text);
}

.services h2 {
    margin-bottom: 2.5rem;
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: #d4734a52;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.service-card i {
    font-size: 3rem;
    color: #D4744A;
    margin-bottom: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 80px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #D4744A;
    margin-bottom: 10px;
}
.services{
    background-image: url("Group 92.png");
    background-repeat: no-repeat;
    background-position: bottom;

}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: #ffff;
}

.partners h2{
    margin-bottom: 2.5rem;
    text-align: center;
    color: #210F40;

}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.partner-logos img {
    max-width: 100%;
    height: auto;
}

/* Footer */
footer {
    background-color: #210F40;
    color: var(--light-text);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-bottom: 50px;
}
.footer-contact i {
    background-color: #c46d3b;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin-right: 0px;
    margin: 10px;
  }
  

.newsletter form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #e17b48;
    border: none;
    border-radius: 20px;
    color: var(--light-text);
    cursor: pointer;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    background-color: #e17b48;
    color: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
  }
  

.footer-bottom {
    text-align: center;
    margin: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom  p {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info, .social-links {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


