* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('images/Hero-section-01.jpg') no-repeat center center/cover;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    position: fixed;
    z-index: 9;
    right: 0;
    left: 0;
}

@media (max-width: 569px) {
    .navbar {
        justify-content: space-between;
    }
    .logo img {
        height: 70px;
    }
}

.logo img {
    height: 100px;
}

#nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

#nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all .2s ease;
}

#language-select {
    border: none;
    outline: none;
    background: linear-gradient(to left, #031fa1, #0a1754);
    padding: 5px 20px;
    border-radius: 5px;
    color: #fff;
}

#language-select option {
    color: #000;
}

#contact-us {
    background-color: #f8a620;
    padding: 2px 15px;
    border-radius: 5px;
}

#nav-links #contact-us a:hover {
    color: #fff;
}

header .navbar.scrolled {
    background-color: #fff;
    padding-right: 25px;
    padding-left: 25px;
    padding-bottom: 25px;
    box-shadow: 2px 12px 12px rgba(149, 149, 149, 0.2);
}
header .navbar{
    transition: background-color 0.3s;
}

@media (max-width: 1180px) {
    .hero-section #nav-links {
        display: none;
    }

    .navbar .menu-icon {
        display: flex;
    }

    .hero-section .navbar .logo img {
        width: 400px;
    }
}

#nav-links.show {
    display: flex;
    align-items: center; /* توسيط الروابط أفقياً */
    width: 100%; /* عرض الروابط بحجم الشاشة */
    margin: 0; /* إزالة أي مسافات غير مرغوبة */
    padding: 0; /* إزالة أي تعبئة إضافية */
    text-align: center; /* توسيط النص داخل الروابط */
    position: absolute;
    right: 0;
    left: 0;
    top: 120px;
    background-color: #fff;
    flex-direction: column;
    padding-bottom: 20px;
}


#nav-links.hide {
    display: none;
}

@media (max-width: 540px) {
.hero-section .navbar .logo img {
        width: 250px;
        height: 70px;
    }
}

.menu-icon {
    display: none;
    list-style: none;
    cursor: pointer;
}

.menu-icon li i {
    color: #f8a620;
    font-size: 40px;
}

#nav-links li a:hover {
    color: #f8a620;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: right;
    width: 80%;
}

.hero-content h1 {
    max-width: 440px;
}

.hero-text h2 {
    font-size: 24px;
    color: #f8a620; /* Yellow color */
}

.hero-text h1 {
    font-size: 36px;
    margin: 10px 0;
}

.hero-buttons {
    margin-top: 20px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
}

.btn-primary {
    background-color: #f8a620; /* Yellow color */
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
}

#cards-section .cards .container {
    display: flex;
    gap: 90px;
    justify-content: center;
}

#cards-section .cards .card img {
    width: 380px;
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.3);
}

#cards-section .cards .card h2 {
    text-align: center;
    border-bottom: 2px solid rgb(255, 196, 0);
    padding-bottom: 10px;
    font-size: 20px;
}

#cards-section .cards .card p {
    max-width: 350px;
    text-align: center;
    padding-top: 10px;
}

#cards-section .cards {
    position: relative;
    top: -60px;
}

@media (max-width: 1400px) {
    #cards-section .cards .container {
        flex-direction: column;
        align-items: center;
    }
}

#save-the-planet {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 250px 0;
}

#save-the-planet .container .columns {
    display: flex;
    justify-content: space-evenly;
    gap: 300px;
    align-items: center;
}

#save-the-planet .container .columns .col2 h2 {
    color: #f8a620;
    padding-bottom: 10px;
    font-size: 45px;
}

#save-the-planet .container .columns .col2 p  {
    max-width: 500px;
    font-size: 20px;
}

#save-the-planet .container .columns .col1 img {
    width: 300px;
}

@media (max-width: 1130px) {
    #save-the-planet .container .columns {
        gap: 150px;
    }
}

@media (max-width: 955px) {
    #save-the-planet .container .columns {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
}

@media (max-width: 500px) {
    #save-the-planet .container .columns .col2 p  {
    max-width: 350px;
    font-size: 14px;
}
}

.who-we-are {
    margin-top: 80px;
    background-image: url("images/Pattern-01.png");
}

.who-we-are .container .columns {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.who-we-are .container .columns .col2 img {
    width: 500px;
}

.who-we-are h1 {
    color: #f8a620;
    font-size: 55px;
    padding-bottom: 20px;
}

.who-we-are .col1 {
    text-align: right;
}

.who-we-are .col1 p {
    max-width: 700px;
}

@media (max-width: 1196px) {
    .who-we-are .container .columns {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 520px) {
    .who-we-are .container .columns .col2 img {
        width: 350px;
    }

    .who-we-are .col1 p {
        max-width: 350px;
        font-size: 14px;
    }
}

#why-us {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 150px 0;
    padding: 50px;
}

#why-us .container .cards {
    display: flex;
    justify-content: center;
    gap: 40px;
}

#why-us .container .cards .card {
    background-color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    border-radius: 15px;
}

#why-us .container .cards .card img {
    width: 500px;
    padding: 15px;
}

#why-us .container .cards .card h2 {
    color: #f8a620;
}

#why-us .container .cards .card p {
    max-width: 400px;
    padding-top: 20px;
}

#why-us .container .content {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
}

#why-us .container .content h1 {
    color: #f8a620;
    font-size: 55px;
    padding-bottom: 20px;
    text-align: center;
}

#why-us .container .content p {
    max-width: 900px;
    text-align: center;
    display: flex;
}

@media (max-width: 1669px) {
    #why-us .container .cards .card img {
        width: 400px;
    }
}

@media (max-width: 1458px) {
    #why-us .container .cards .card img {
        width: 350px;
    }
    #why-us .container .cards .card h2 {
        color: #f8a620;
        font-size: 20px;
    }
    
    #why-us .container .cards .card p {
        max-width: 300px;
        font-size: 16px;
    }
}

@media (max-width: 1300px) {
    #why-us .container .cards {
        flex-direction: column;
        align-items: center;
    }

    #why-us .container .cards .card img {
        width: 360px;
    }
    #why-us .container .cards .card h2 {
        font-size: 22px;
    }
    
    #why-us .container .cards .card p {
        max-width: 280px;
        font-size: 15px;
    }

    #why-us .container .cards .card {
        padding: 15px;
    }

    #why-us .container .content p {
        max-width: 500px;
        font-size: 14px;
    }
}

#contact {
    background-color: #f5f5f5bc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 150px 0;
    padding: 50px;
    background-image: url("images/Contact-us-section-pattern-01.png");
}

#contact .container .content h1 {
    color: #f8a620;
    font-size: 55px;
    padding: 20px 0;
    text-align: center;
}

#contact .container .content p {
    max-width: 600px;
    text-align: center;
    padding-bottom: 50px;
}

#contact .container .cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#contact .container .cards .card {
    background-color: #fff;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 400px;
    height: 400px;
    box-shadow: 5px 6px 12px rgba(134, 134, 134, 0.2);
}

#contact .container .cards .card h3 {
    color: #f8a620;
    font-size: 25px;
}

#contact .container .cards .card p {
    font-size: 22px;
    text-align: center;
}

#contact .container .cards .card i {
    color: #f8a620;
    font-size: 55px;
}

#contact .container .content {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#contact .container .form-section form .columns {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 120px;
}

#contact .container .form-section form .columns .col1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contact .container .form-section form .columns .col1 input {
    border: none;
    outline: none;
    background-color: #fff;
    padding: 10px 15px;
    width: 600px;
    height: 60px;
    text-align: right;
}

#contact .container .form-section form .columns .col1 button {
    border: none;
    outline: none;
    background-color: #f8a620;
    padding: 15px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s ease;
}

#contact .container .form-section form .columns .col1 button:hover {
    background-color: rgb(255, 189, 84);
}

#contact .container .form-section form .columns .col2 textarea {
    border: none;
    outline: none;
    width: 600px;
    height: 350px;
    text-align: right;
    padding: 10px 15px;
}

@media (max-width: 1283px) {
    #contact .container .cards .card {
        padding: 40px;
        width: 300px;
        height: 300px;
    }
    #contact .container .cards .card h3 {
        font-size: 22px;
    }
    
    #contact .container .cards .card p {
        font-size: 18px;
    }

    #contact .container .form-section form .columns .col2 textarea {
        width: 450px;
    }

    #contact .container .form-section form .columns .col1 input {
        width: 450px;
    }
}

@media (max-width: 993px) {
    #contact .container .cards {
        display: flex;
        flex-direction: column;
    }

    #contact .container .cards .card {
        padding: 60px;
        width: 350px;
        height: 350px;
    }
    #contact .container .cards .card h3 {
        font-size: 26px;
    }
    
    #contact .container .cards .card p {
        font-size: 20px;
    }

    #contact .container .form-section form .columns {
        flex-direction: column-reverse;
        align-items: center;
    }
}

footer {
    padding: 50px;
    background: url("images/Footer-BG-01.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

footer .container .columns {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer .container .columns .col1 img {
    width: 200px;
    display: flex;
    padding-bottom: 25px;
}

footer .container .columns .col1 {
    text-align: right;
    max-width: 350px;
}

footer .container .columns .col2 .links ul {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.copyrights {
    background-color: #f8a620;
    color: #fff;
    text-align: center;
    padding: 15px;
}

@media (max-width: 767px) {
    footer .container .columns {
        flex-direction: column;
        align-items: center;
        gap: 100px;
    }
}

@media (max-width: 500px) {
    #contact .container .form-section form .columns .col2 textarea {
        width: 350px;
    }

    #contact .container .form-section form .columns .col1 input {
        width: 350px;
    }
}

#company-purposes {
    background-color: #f5f5f5bc;
    background-image: url("./images/Pattern-01.png");
    margin: 150px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

#company-purposes .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#company-purposes .content h1 {
    color: #000;
    border-bottom: 5px solid #f8a620;
    padding-bottom: 20px;
    font-size: 3.8rem;
}

#company-purposes .content p {
    max-width: 700px;
    padding-top: 20px;
    font-size: 20px;
}

#company-purposes .container .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 100px;
    padding-top: 140px;
}

#company-purposes .container .cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#company-purposes .container .cards .card h5 {
    color: #f8a620;
    padding: 10px 0;
    font-size: 25px;
}

#company-purposes .container .cards .card p {
    font-size: 16px;
    max-width: 250px;
    color: #555555;
}

#company-purposes .container .cards .card img {
    width: 100px;
}

@media (max-width: 1330px) {
    #company-purposes .container .cards {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 80px;
    }
}

@media (max-width: 600px) {
    #company-purposes .container .cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 80px;
    }

    #company-purposes .content h1 {
        font-size: 2.8rem;
    }
    
    #company-purposes .content p {
        max-width: 500px;
        padding-top: 20px;
        font-size: 16px;
    }
}

#we-help {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 150px 0;
    background-color: #f8a620;
    padding: 100px;
    height: 450px;
}

#we-help h4 {
    font-size: 30px;
    text-align: center;
}

@media (max-width: 816px) {
    #we-help h4 {
        font-size: 18px;
        max-width: 400px;
    }
}

#profile-section {
    margin: 150px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to left, #031fa1, #0a1754);
}

#profile-section .container .columns {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
}

#profile-section .container .columns .col2 p {
    color: #fff;
    max-width: 500px;
    font-size: 22px;
}

#profile-section .container .columns .col1 a img {
    width: 800px;
}

@media (max-width: 1300px) {
    #profile-section .container .columns .col1 a img {
        width: 600px;
    }

    #profile-section .container .columns {
        gap: 20px;
    }
}

@media (max-width: 950px) {
    #profile-section .container .columns {
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    #profile-section .container .columns .col1 a img {
        width: 300px;
    }
    #profile-section .container .columns .col2 p {
        max-width: 450px;
        font-size: 14px;
    }
}

footer .col3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .col3 .socialmedia-links {
    display: flex;
    gap: 30px;
}

footer .col3 .content {
    padding-bottom: 20px;
}

.socialmedia-links .link a i {
    font-size: 35px;
    color: #f8a620
}

