@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    overflow-x: hidden;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    scroll-behavior: smooth;

}


:root{
    --primary-color: #005bc2;
    --secondary-color: #091d2d;
    --white-color: #fff;
}


.section{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 110px 10%;
    gap: 50px;
}
.section_title{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.section_title .span{
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.2rem;
}
.section_title h2{
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.section_title p{
    font-size: 18px;
    font-weight: 400;
    color: #1e1e1e;
    line-height: 30px;
}

.section_image{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_image img{
    width: 100%;
}

.btn{
    height: 70px;
    width: 250px;
    padding: 5px 5px 5px 5px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: .6s;
    overflow: hidden;
    border: none;
    color: var(--white-color);

}

.btn a{
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 1;

}

.btn i{
    font-size: 20px;
    z-index: 1;

}

.btn::before{
    content: '';
    position: absolute;
    top: 0%;
    left: -50px;
    width: 0;
    height: 100%;
    color: var(--white-color);
    background-color: #1e1e1e;
    transform: skewX(45deg);
    z-index: 0;
    transition: width 1000ms;

}

.btn:hover::before{
    width: 250%;
}

.navbar{
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

}
.sticky{
    background-color: var(--primary-color);
}

.sticky #menu li a{
    color: var(--secondary-color);
}

.sticky .nav_btn{
    background-color: #277ddf;
}

.sticky #menu li a:hover{
    color: var(--white-color);
}

.logo{
    width: 10%;
    opacity: 0;
    animation: fade2 1.5s 0s ease-in-out forwards; 
}

.logo img{
    width: 100%;
    margin-top: 10px;
    
}

#menu{
    display: flex;
    align-items: center;
}

#menu li{
    padding: 0 10px;
}

#menu li:nth-child(2){
    opacity: 0;
    animation: fade2 1.5s 0.2s ease-in-out forwards;
}
#menu li:nth-child(3){
    opacity: 0;
    animation: fade2 1.5s 0.3s ease-in-out forwards;
}
#menu li:nth-child(4){
    opacity: 0;
    animation: fade2 1.5s 0.4s ease-in-out forwards;
}
#menu li:nth-child(5){
    opacity: 0;
    animation: fade2 1.5s 0.5s ease-in-out forwards;
}

#menu li a{
    font-size: 17px;
    padding: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
    transition: .6s;
    opacity: 1;
    animation: fade2 1.5s 0s ease-in-out forwards;

}

#menu li a:hover{
    color: var(--primary-color);
}


#toggle{
    color: var(--white-color);
    background-color: var(--primary-color);
    font-size: 30px;
    padding: 8px;
    border-radius: 8px;
    display: none;

}

.nav_btn{
    height: 40px;
    width: 150px;
    border-radius: 5px;
    font-size: 15px;
    opacity: 0;
    animation: fade2 1.5s 0.6s ease-in-out forwards;
}


@keyframes fade{
    0%{
        transform: skewX(50deg) scale(0.2);
        opacity: 0;
        filter: blur(10px);
    }
    50%{
        transform: scaleX(0deg) scale(1);
    }
    100%{
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes fade2{
    0%{
        opacity: 0;
        filter: blur(10px);
    }
    100%{
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes Anim_grayScale {
    0%{
        filter: grayscale(100%);
    }
    100%{
        filter: grayscale(0%);
    }
}

.hero{
    width: 100%;
    min-height: 90vh;
    position: relative;
    background-image: url(images/ChatGPT\ Image\ May\ 18\,\ 2025\,\ 01_20_18\ PM.png);
    background-size: cover;
    background-position: center;
    padding-bottom: 0 !important;
}

#span{
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.2rem;

}


.hero_title h1{
    font-size: 3.4rem;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}


/* Fix typewriter jump */
.typewriter-container {
  display: inline-block;
  min-width: 130px; /* Set to the width of your longest word */
  white-space: nowrap;
  vertical-align: bottom;
  overflow: hidden;
}

.hero_title h1 span{
    color: var(--primary-color);
}

.hero_title p{
    width: 70%;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero_image{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero_image img{
    width: 80%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.btn_and_icon{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.social_icon{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social_icon i{
    font-size: 1.5rem;
    color: var(--primary-color);
    height: 50px;
    width: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e1e1e;
    transform: rotate(0);
    transition: .4s;
}

.social_icon i:hover{
    transform: rotate(-10deg);
    background-color: var(--white-color);
}

.Online_clients{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    margin-top: 35px;
}

.Online_clients pre{
    font-weight: 600;
    font-size: 1.2rem;
}

/* Feature Section */
.Features{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    background-color: var(--primary-color);
    gap: 50px;
    padding: 50px 10%;
}
.Feature_item{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: var(--white-color);
}
.Feature_item img{
    width: 70px;
    height: 70px;
    fill: var(--white-color);
}
.Feature_item_content h3{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.Feature_item_content p{
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.5;
}
/* About Section*/
.Contact_now{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
.About_btn{
    width: 200px;
    gap: 0;
}
.About_btn a{
    font-size: 15px;
}

/* Services */

.Services{
    flex-direction: column;
    background-color: #f4f2f2;
}
.Heading{
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}
.Heading span{
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 600;
}
.Heading h2{
    font-size: 3.5rem;
    font-weight: 600;
}

.Services_Cards{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.Service_Card{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 50px 30px;
    background-color: var(--white-color);
    box-shadow: 5px 5px 5px #89898909;
    transition: .3s;
    border: 1px solid #5776ff00;
}

.Service_Card img{
    fill: #5777ff;
}
.Service_Card:hover{
    border: 1px solid var(--primary-color);
}
.Service_Card h2{
    font-size: 1.8rem;
    font-weight: 600;
    transform: .3s;
}
.Service_Card:hover h2{
    color: var(--primary-color);
    cursor: pointer;
}
.Service_Card p{
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.Testimonials{
    width: 100%;
    flex-direction: column;
}
.Testimonials_Splide{
    width: 100%;
    margin-top: 50px;
}

.test_slide{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background-color: #f9faff;
    border: 1px solid #5776ff00;
    transition: .3s;
    padding: 50px 30px;
}
.test_slide:hover{
    border: 1px solid var(--primary-color);
}

.test_head{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.test_head h2{
    font-size: 1.5rem;
    font-weight: 600;
    transition: .3s;
}

.test_head h2:hover{
    color: #577ff5;
    cursor: pointer;
}
    
.stars{
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars{
    color: var(--primary-color);
    font-size: 1.1rem;
}
.test_slide p{
   font-size: 1.1rem;
   font-weight: 500;
   color: #000000cf;
   line-height: 1.5;
   margin: 10px 0; 
}
.client_det{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.client_info h2{
    font-size: 1.5rem;
    font-weight: 500;
}
.client_info p{
    font-size: 18px;
}
.splide__arrows{
    display: none !important;
}
/* Contacts */
.Contact_title{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.Contact_Headings{
    align-items: start;
}
.Contact_Details{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}
.Contact_Det{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.Contact_Det:hover i{
    background-color: var(--secondary-color);
}
.Contact_Det i{
    font-size: 1.9rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: .3s;
}
.Contact_Info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.Contact_Info p{
    color: #666;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.Contact_Info h2{
    font-weight: 500;
    font-size: 0.9rem;
    transition: .3s;
}
.Contact_Info h2:hover{
    color: var(--primary-color);
    cursor: pointer;
}
.Contact_Form{
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    background-color: #f9faff;
    padding: 5%;
}
.Inputs_Head{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}
.Input_Box{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.Input_Box input{
    width: 100%;
    height: 50px;
    background-color: var(--white-color);
    color: #000;
    padding-left: 5%;
    font-size: 1.1rem;
    border: 1px solid #21212125;
    outline: none;
    border-radius: 10px;
}
.Contact_Form textarea{
    width: 100%;
    height: 150px;
    background-color: var(--white-color);
    color: #000;
    font-size: 1.1rem;
    border: 1px solid #21212125;
    padding: 2%;
    outline: none;
    margin: 10px 0px;
    border-radius: 10px;
}

.Contact_Form button {
    width: 150px;
    height: 50px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--primary-color); 
    color: white;              
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.Contact_Form button:hover {
    background-color: #333; 
    color: var(--white-color);
}



/* Footer Section */
.footer{
    width: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    gap: 20px;
    padding: 70px 20px;
}

.footer_Menu{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}
.footer_Menu li a{
    color: var(--secondary-color);
    font-size: 1.4rem;
    transition: .3s;
}
.footer_Menu li a:hover{
    color: var(--white-color);
}
.footer p{
    font-size: 1.4rem;
    font-weight: 400;
}
.footer p span{
    color: var(--secondary-color);
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}
.footer p span:hover{
    color: var(--white-color);

}





@media(max-width:1400px){
    .hero_title h1{
        font-size: 3rem;
    }
    .hero_title p{
        font-size: 18px;
    }
    .btn{
        width: 200px;
        height: 60px;
    }
    .btn a{
        font-size: 15px;
    }
    .Feature_item_content p{
        font-size: 14px;
    }
    .About_title h2{
        font-size: 2.4rem;
    }
    .Service_Card p{
        font-size: 1rem;
    }
    .Contact_Info h2{
    font-weight: 500;
    font-size: 0.7rem;
    transition: .3s;
}
}

@media(max-width:1200px){
    .navbar{
        padding: 0px 8% !important;
    }

    #menu li{
        padding: 0 10px;
    }
    .logo img{
        width: 100%;
    }
    .section{
        padding: 120px 8%;
    }
    .section_title p{
        font-size: 14px;
    }
    .nav_btn{
        height: 40px;
        width: 140px;
    }
    .hero{
        padding-bottom: 0% !important;
    }
    .hero_image img{
        width: 100%;
    }
    .hero_title h1{
        font-size: 2.5rem;
    }
    .btn_and_icon{
        gap: 15px;
    }
    .hero_title p{
        font-size: 16px;
    }
    .Feature_item img{
        width: 60px;
        height: 60px;
    }
    .Feature_item_content p{
        font-size: 12px;
    }
    .Feature_item_content h3{
        font-size: 1.3rem;
    }
    .About_title h2{
        font-size: 2rem;
    }
    .Contact_now span{
        font-size: 13px;
    }
    .Service_Card p{
        font-size: 0.8rem;
    }
    .Contact_Info h2{
        font-size: 1rem;
    }
    .Heading h2{
        font-size: 2.6rem;
    }
    .Contact_Info h2{
    font-weight: 500;
    font-size: 0.6rem;
    transition: .3s;
}
}

@media(max-width:1000px){
    .section{
        flex-direction: column;
    }
    .section_image{
        width: 100%;
    }
    .section_image img{
        width: 80%;
    }
    .section_title{
        width: 100%;
    }
    #toggle{
        display: block;
    }
    .menu{
        height: 0;
        position: absolute;
        flex-direction: column;
        top: 100%;
        left: 0%;
        width: 100%;
        opacity: 0;
        background-color: var(--white-color);
        overflow: hidden;
        transition: .6s;
    }
    .Show_menu{
        height: 252px;
        opacity: 1;
    }
    #menu li{
        width: 100%;
        padding: 20px 8%;
        border-bottom: 1px solid #1e1e1ea8;
    }
    .logo{
        width: 15%;
    }
    .hero_title h1{
        font-size: 4rem;
    }
    .social_icon i{
        height: 50px;
        width: 50px;
        font-size: 1.3rem;
    }
    .Feature_item_content p{
        font-size: 10px;
    }
    .Services_Cards{
        grid-template-columns: repeat(2,1fr);
    }
    .Contact_title{
        width: 100%;
    }
    .Contact_Form{
        width: 100%;
    }
}

@media(max-width: 768px){
    .hero_title #span{
        font-size: 1rem;
    }
    .hero_title h1{
        font-size: 3rem;
    }
    .hero_title p{
        width: 90%;
        font-size: 18px;
    }
    .Feature_item img{
        width: 50px;
        height: 50px;
    }
    .Feature_item_content h3{
        font-size: 1.2rem;
    }
    .Contact_Info h2{
    font-weight: 500;
    font-size: 0.7rem;
    transition: .3s;
    }
}

@media (max-width: 605px) {
  h1 {
    font-size: 18px;
  }
}


@media(max-width: 500px){
    .hero_title h1{
        font-size: 2rem;
    }
    .btn_and_icon{
        flex-direction: column;
        align-items: start;
        gap: 40px;
    }
    .Online_clients{
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    .hero_title h2{
        font-size: 2rem;
    }
    .hero_title p{
        width: 100%;
        font-size: 16px;
    }
    .nav_btn{
        width: 110px;
        font-size: 12px;
    }
    .logo{
        width: 25%;
    }
    .social_icon{
        top: 80%;
        left: 13%;
        flex-direction: row;
        gap: 20px;
    }
    .Features{
        grid-template-columns: repeat(1, 1fr);
    }
    .Feature_item{
        align-items: center;
        text-align: center;
    }
    .Contact_now{
        flex-direction: column;
        align-items: start;
    }
    .Services_Cards{
        grid-template-columns: repeat(1,1fr);
    }
    .Contact_Info h2{
        font-size: 0.7rem;
    }
    .Contact_Det{
        flex-direction: column;
    }
    .Contact_Info{
        align-items: center;
        text-align: center;
    }
    .Contact_Info h2{
        font-size: 1rem;
    }
    .footer_Menu li a{
        font-size: 1rem;
    }
    .contact_us{
        display: block;      
        text-align: center;  
        width: 100%;
    }
    .Online_clients pre{
        font-size: 16px;
        font-weight: 600;
    }
}

@media(max-width:481px){
    .Online_clients pre{
        font-size: 16px;
        font-weight: 600;
    }
}

@media(max-width:394px){
    .Contact_Headings h2{
        align-items: center;
    }
    .footer p{
        font-size: 1rem;
        text-align: center;
    }
    .Online_clients pre{
        font-size: 14px;
        font-weight: 600;
    }
}

