
html {
    scroll-behavior: smooth;
}

* {
    padding: 0px;
    margin: 0px;
    outline: none;
    border: none;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    position: relative;
}

:root {
    --blue: #007bff;
    --light-blue: #d1e3ff;
    --orange: #ff8a1d;
    --dark-blue: #0a0f43;
}

body {
    max-width: 100vw;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    overflow-x: hidden;
}


header {
    padding: 10px 20px;
    background-color: var(--light-blue);
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.head h1 {
    color: var(--blue);
    font-size: 1.5rem;
}

.head h2 {
    display: none; 
}

.ul1 {
    display: flex;
    gap: 20px;
}

.ul1 li a {
    color: black;
    font-weight: 500;
    transition: 0.3s;
}

.ul1 li a:hover {
    color: var(--blue);
}

.Home {
    padding: 5% 20px;
    background-color: var(--light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.Home > div:first-child {
    width: 45%;
}

#repa {
    color: var(--blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.Home p {
    margin-bottom: 30px;
    font-size: 1rem;
    color: #4f4f4f;
    line-height: 1.6;
}

.buton {
    background-color: var(--orange);
    color: white;
    font-weight: bold;
    padding: 12px 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.buton:hover {
    background-color: #e67a1a;
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(255, 138, 29, 0.3);
}

.slider {
    width: 40%;
}

.slider img {
    width: 100%;
    height: auto;
}

.services-cards {
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.REP, .IMPR, .MAI {
    height: 250px;
    width: 30%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: white;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
    transition: 0.5s;
    margin: 20px 1.5%;
    vertical-align: top;
    border-radius: 5px;
}

.IMPR {
    background-color: var(--orange);
    color: white;
}

.REP:hover, .MAI:hover {
    background-color: var(--orange);
    color: white;
    transform: translateY(-10px);
}

.IMPR:hover {
    transform: translateY(-10px);
}

.REP i, .IMPR i, .MAI i {
    font-size: 50px;
}

.REP strong, .IMPR strong, .MAI strong {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about div {
    width: 45%;
}

.about h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    color: #4f4f4f;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about button {
    background-color: var(--blue);
    color: white;
    padding: 12px 35px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.about button:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(0, 123, 255, 0.3);
}

.about img {
    width: 100%;
    border-radius: 5px;
}

.professional {
    background-color: var(--light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
}

.professional div {
    width: 45%;
}

.professional img {
    width: 100%;
}

.professional h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.CONTACT button {
    background-color: var(--orange);
    color: white;
    padding: 12px 35px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.CONTACT button:hover {
    background-color: #e67a1a;
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(255, 138, 29, 0.3);
}

.our-services {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.our-services h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.our-services div:not(:first-child):not(:last-child) {
    display: inline-block;
    width: 30%;
    margin: 15px 1%;
    padding: 40px 20px;
    box-shadow: 0px 0px 10px #eee;
    transition: 0.3s;
    border-radius: 5px;
}

.our-services div:not(:first-child):not(:last-child):hover {
    background-color: var(--orange);
    color: white;
    transform: translateY(-5px);
}

.our-services div i {
    font-size: 45px;
    margin-bottom: 20px;
}

.our-services div strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.our-services button {
    background-color: var(--blue);
    color: white;
    padding: 12px 40px;
    margin-top: 40px;
    cursor: pointer;
    border-radius: 3px;
    transition: 0.3s;
}

.our-services button:hover {
    background-color: var(--dark-blue);
}

.contact {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact > div:last-child {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact form {
    flex: 1;
    min-width: 300px;
}

.contact input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 5px #ddd;
}

.feedback {
    height: 120px;
}

.send-btn {
    background-color: var(--blue);
    color: white;
    padding: 12px 40px;
    cursor: pointer;
    width: 150px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(0, 123, 255, 0.3);
}

iframe {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border: none;
    box-shadow: 0px 0px 10px #ddd;
}

footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .Home, .about, .professional, .contact > div:last-child {
        flex-direction: column;
    }

    .Home > div:first-child, .slider, .about div, .professional div, .REP, .IMPR, .MAI, .our-services div:not(:first-child):not(:last-child) {
        width: 90%;
        margin: 10px auto;
    }
}
