@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'DM Sans';
}

body {
    background-color: #0f141c;
}

p {
    color: rgba(131,131,131,1);
}

.container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 80px 12%;
    margin-top: 50px;
}

.service_wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
}

.service_wrapper .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
}

.service_wrapper .content .title {
    font-size: 1.6rem;
    text-transform: uppercase;
    background: linear-gradient(90deg , #ff7d61 0%, #ffd859 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.service_wrapper .content h3 {
    font-size: 3.8rem;
    color: #fff;
    line-height: 4.5rem;
}

.service_wrapper .content p {
    width: 90%;
    color: #ddd;
    margin: 10px 0;
}

button {
    width: 200px;
    height: 200px;
    font-size: 20px;
    font-weight: 600;
    background-color: #ffd859;
    border-radius: 50%;
    border: 0.5px solid #ffd859;
    transition: 0.6s;
    cursor: pointer;
    z-index: 1;
    position: relative;
}

button::after {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    background-color: #fff;
    border-radius: 50%;
    transition: .6s;
    z-index: -1;
}

button:hover::after {
    width: 100%;
    height: 100%;
}

button:nth-of-type(2)::after {
    background-color: #ffd859;
    color: #000;
}

button:nth-of-type(2) {
    background-color: #161d26;
    margin-left: -80px;
    color: #fff;
    border-color: #161d26;
}

button:nth-of-type(2):hover {
    color: #0f141c;
    border-color: #ffd859;
}

.service_contaner {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.service_contaner .service {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service_contaner .service .service_Title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0px;
    border-bottom: 0.2px solid rgba(131,131,131,1);
    transition: 1s;
}

.service_contaner .service .service_Title h2 {
    font-size: 35px;
    letter-spacing: 0.6px;
    color: #fff;
    font-weight: 500;
}

.ActiveHeading {
    background: linear-gradient(90deg ,#ff7d61 0%, #ffd859 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service_contaner .service_Title i {
    font-size: 2.3rem;
    color: #fff;
}

.service_description{ /*problem*/
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0px;
    transition: .6s;
    opacity: 0;
    height: 0;
    z-index: -1;
}

.ActiveDesc{
    height: 230px;
    opacity: 1;
    transition: 0.6s;
    z-index: 1;
    animation: ShowDescription 0.6s linear forwards;
}

@keyframes ShowDescription {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.service_description p{
    font-size: 18px;
    font-weight: 500;
}

.service_description ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
}

.service_description ul li{
    font-size: 18px;
    color: #fff;
}

.slider{
    display: flex;
    align-items: center;
    padding: 50px 0;
    max-width: 100vw;
    overflow: hidden;




}

.slider {
    position: relative;
    width: 100vw; /* Adjust the width of the slider container */
    overflow: hidden; /* Hide overflowed content */
}

.slider::after,
.slider::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #0f141c 0%, transparent 100%);
    top: 0;
    left: 0;
    z-index: 9;
}

.slider::before {
    left: 70%;
    width: 30%; /* Adjust the width as per your design */
    transform: none; /* Remove the rotation if not needed */
}

.slider h1 {
    font-size: 7rem;
    font-weight: 700;
    color: #fff;
    animation: slide 80s infinite linear;
    text-transform: uppercase;
    font-family: 'syne', sans-serif;
}

.slider h1 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
    letter-spacing: 3px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@media (max-width:1500px) {
    .container{
        margin-top: 0;
    }
}
@media (max-width:1400px) {
    .container{
        margin-top: 0;
        padding: 30px 12%;
    }
    button:nth-of-type(2){
        margin-left: -40px;
    }
    button{
        height: 150px;
        width: 150px;
        font-size: 18px;
    }
    .slider{
        padding: 30px 0;
    }
}

@media (max-width:1100px) {
    .service_wrapper{
        flex-direction: column;
    }
    .service_wrapper .content{
        width: 100%;
    }
    .service_contaner{
        width: 100%;
        margin-top: 50px;
    }
}

@media (max-width: 78px) {
    .service_wrapper .content h3 {
        font-size: 3.6rem;
        line-height: 4.2rem;
    }
    .slider::before {
        left: 30%;
    }
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Poppins", sans-serif;
    --color1: #FFF ;
    --color2: #181818 ;
}
.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: var(--color2);
    padding: 12px 20px;
}
.logo img {width: 40px;}
.menu {display: flex;}
.menu li {padding-left: 30px;}
.menu li a {
    display: inline-block;
    text-decoration: none;
    color: var(--color1);
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}
.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color1);
    transition: 0.15s ease-in-out;
}
.menu li a:hover:after {width: 100%;}
.open-menu , .close-menu {
    position: absolute;
    color: var(--color1);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}
.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.close-menu {
    top: 20px;
    right: 20px;
}
#check {display: none;}
@media(max-width: 610px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: var(--color2);
        transition: all 0.2s ease-in-out;
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {right: 0;}
    }
        .location-outline p {
            color: #000000;
        }
        .footer {
            background-color: #1316f1;
            color: #000000;
            padding: 40px 0;
            text-align: center;
            animation: fadeInUp 1s ease-in-out;
        }
    
        .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
    
        .footer-section {
            flex: 1;
            padding: 20px;
            min-width: 250px;
        }
        .footer-section p{
            color: #222;
        }
        
        .footer-section h2 {
            margin-bottom: 15px;
            font-size: 1.5rem;
            color: #000;
        }
    
        .footer-section p, .footer-section ul {
            font-size: 1.3rem;
            line-height: 1.6;
        }
    
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
    
        .footer-section ul li {
            margin-bottom: 10px;
        }
    
        .footer-section ul li a {
            color: #030303;
            text-decoration: none;
        }
    
        .footer-section ul li a:hover {
            color: #f39c12;
        }
    
        .social-icons a {
            color: #06f812;
            margin: 0 10px;
            font-size: 1.7rem;
            transition: color 0.3s ease;
        }
    
        .social-icons a:hover {
            color: #f39c12;
        }
    
        .footer-bottom {
            background-color: #b83636;
            padding: 10px 0;
            font-size: 1.2rem;
        }
    
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
