/* Reset default styles */

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

.color {
    color: #00cc00;
}

body {
    background-color: #111;
    min-height: 100vh;
    font-family: "Cairo", sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #1a1a1a;
}

header .logo h4 {
    margin: 0 15px;
    color: #fff;
    font-size: 1.5rem;
    /* Consistent font size */
}

header nav {
    height: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

header nav ul li a {
    text-decoration: none;
    margin: 0 15px;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #00cc00;
}

header .icon {
    display: none;
}

@media (max-width: 767px) {
    header .icon {
        display: block;
        color: #fff;
        margin: 0 15px;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    header .icon i {
        font-size: 1.5rem;
    }
    header nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #333;
        left: -900px;
        transition: left 1s ease;
        z-index: 2;
    }
    header nav.active {
        left: 0px;
    }
    header nav ul {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 20px;
    }
    header nav ul li {
        line-height: 3;
        text-align: center;
    }
    header nav ul li a {
        display: block;
        margin: 10px 0;
        font-size: 1.2rem;
        color: #fff;
    }
}

section .background {
    padding: 20px;
    color: white;
}

section .background .text {
    line-height: 2;
}

section .background .image {
    text-align: center;
    position: relative;
}

section .background .image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    width: 420px;
    height: 420px;
    border: solid 4px #00cc00;
    border-radius: 50%;
    left: 75px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        border-color: #00cc00;
        transform: scale(1);
    }
    50% {
        border-color: #00ff00;
        transform: scale(1.1);
    }
    100% {
        border-color: #00cc00;
        transform: scale(1);
    }
}

@media (max-width:767px) {
    section .background .image::before {
        display: none;
    }
}

section .background .image img {
    width: 300px;
}

section .background button {
    background-color: #00cc00;
    color: white;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
}

section .background .icon i {
    margin: 0px 10px;
    background-color: transparent;
    border: solid 2px #00cc00;
    padding: 10px;
    border-radius: 50%;
    color: #00cc00;
}

section .service {
    position: relative;
    top: 200px;
    padding: 10px;
}

section .service .content .box {
    background-color: #444;
}

section .service .content .box .icon i:hover {
    transition: 2s;
    transform: rotateY(180deg);
}

.experince {
    position: relative;
    top: 200px;
    padding: 10px;
}


/* start contact */

.contact {
    position: relative;
    top: 200px;
    padding: 10px;
}

.contact input,
.contact textarea {
    background-color: #111;
    color: white;
}

.contact button {
    background-color: #00cc00;
    color: white;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    display: block;
    margin: auto;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: white;
}