* {
    font-family: 'Cairo', sans-serif;
}

body {
    background: #206aa9;
    min-height: 100vh;
    padding: 40px 0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(images/abstract-bg_06.jpg) no-repeat center bottom;
    background-size: 100% auto;
    pointer-events: none;
}
.container{position:relative; z-index:0}

.logintro img{
    height: 135px;
}
.tmt-text {
    font-size: 72px;
    font-weight: 700;
    color: #2E76B3;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.wave-icon {
    width: 80px;
    height: 30px;
    margin-top: -10px;
}

.wave-path {
    fill: none;
    stroke: #2E76B3;
    stroke-width: 3;
}

.company-name {
    color: white;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.company-subtitle {
    color: white;
    font-size: 24px;
    letter-spacing: 8px;
    margin-bottom: 15px;
    font-weight: 300;
}

.company-subtitle::before,
.company-subtitle::after {
    content: '';
    display: inline-block;
    width: 100px;
    height: 1px;
    background: white;
    vertical-align: middle;
    margin: 0 20px;
}

.company-arabic {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.services-container {
    position: relative;
    z-index: 1;
    margin-top: 56px;
}

.service-link {
    display: block;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-link:hover {
    transform: translateY(-15px);
}
.service-link:hover .service-circle{box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);}

.service-link:hover .service-title {
    color: #fffb7a;
}

.service-circle {
    width: 260px;
    height: 260px;
    background: transparent;
    padding: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); */
    border: 16px solid white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-circle svg,.service-circle img{
    border-radius:100%;
    width: 100%;
    height: 100%;
}
.service-circle::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    border: 8px solid #2E76B3;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-title {
    color: white;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .company-name {
        font-size: 28px;
    }

    .company-subtitle {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .company-arabic {
        font-size: 24px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-circle {
        width: 220px;
        height: 220px;
    }
    .logintro img{
    height: 90px;
}
}
