
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/sakkal-majalla-2');
body{
    direction: rtl;
    text-align: right;
    font-family: 'Sakkal Majalla', sans-serif;
}
.teams{
    direction: ltr;
    text-align: left;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}
.max-width{
    max-width: 1700px;
    padding: 0 80px;
    margin: auto;
}
/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    font-family: 'Ubuntu',sans-serif;
    transition: all 0.9s ease;
    height: 100px;
}
.navbar.sticky{
    padding: 15px 0;
    background: linear-gradient(500deg, #9900F0 40%, #4700D8 );
}
.navbar .navbar-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .navbar-content .menu{
    margin-right: 50px;
    margin-top: -150px;
}
.navbar .menu li a{
    font-size: 20px;
    font-weight: 500;
    position: relative;
    margin-left: 25px;
}
.navbar .menu li a::after{
    content: '';
    width: 0%;
    height: 3px;
    background: #FF85B3;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;

}
.navbar .logo a{
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo img{
    margin-left: -150px;
    height: 150px;
    margin-top: -110px;

}
.navbar .logo a div span{
    color: #006aff;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #fff;

}
.navbar .menu li{
    list-style: none;
    display: inline-block;
    /* margin-left: 25px; */
}
.navbar .navbar-content .selector{
    width: 150px;
    margin-top: 10px;
    color: #fff;
    font-size: 18px;
}
#arrowIcon{
    color: #fff;
    font-weight: 600;
}
#selectField{
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 5px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.399);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
#selectField i{
    width: 12px;
    transition: transform 0.5s;
}
#list{
    width: 100%;
    background: rgba(36, 35, 35, 0.348);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
}
.options{
    width: 100%;
    padding: 15px 0 15px ;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
}
.options a{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.options a::after{
    content: '';
    width: 0%;
    height: 3px;
    background: #FF85B3;
    position: absolute;
    left: 0;
    top: 1px;
    /* bottom: -6px; */
    transition: 0.5s;
}
.options:hover{
    background: rgba(255, 255, 255, 0.7);
}
.options:hover a{
    color: #FF85B3;
}
.options a:hover::after{
    width: 100%;
    
}
.hide{
    visibility: hidden;
}
.rotate{
    transform: rotate(180deg);
}
.navbar .menu li a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover::after{
    width: 100%;
    
}
.navbar.sticky .menu li a:hover{
    color: #fff;

}
/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: linear-gradient(500deg, #9900F0 40%, #4700D8 );
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
/* home section start */
.home{
    display: flex;
    background: linear-gradient(to bottom,rgba(0, 0, 0, 0.029),rgba(0,0,0,8)),url("imeg/1.jpg") no-repeat center ;
    background-size: 100% 100%;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    font-family: 'Ubuntu',sans-serif;
}
.home .max-width{
    margin: auto 0 auto 40px;
}
.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
    margin-top: 260px;

}
.home .home-content .text-3{
    font-size: 45px;
    margin: 25px 0;
    font-weight: 500;
    /* text-shadow: -2px 0 crimson, 0 2px crimson, 2px 0 crimson, 0 -2px crimson; */
}
.home .home-content .text-3 span{
    color: #FF85B3;
    font-weight: 500;
    border: #fff;
}
.home .home-content a{
    display: inline-block;
    background: #fff;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius: 8px;
    border: 2px solid #006aff;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    background: #006aff;
    border: 2px solid #fff;
}
.home .home-content a img{
    height: 120px;
}
/* animation */
.home .max-width .home-content .text-2,
.home .max-width .home-content .text-3,
.home .max-width .home-content a,
.home .max-width .home-content img,
.about .max-width .title{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.5s 0.5s linear 1 forwards;
}
@keyframes showContent{
    to{
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    } 
}
.home .max-width .home-content .text-2{
    animation-delay: 0.6s;
}
.home .max-width .home-content .text-3{
    animation-delay: 0.8s;
}
.home .max-width .home-content a{
    animation-delay: 1s;
}
.home .max-width .home-content img{
    animation-delay: 1.2s;
}

/* all similar content styling code  */
section{
    padding: 100px 0;
}
.about, .services, .skills, .teams, .contact, footer{
    font-family: 'poppins',sans-serif;
}
.about .about-content, 
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu',sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: #006aff;
    padding: 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* about section styling  */
.about{
    background: #F5F7F8;
}
.about .title::after{
    content: "who we are";
    color: #4700D8;
    background: #f5f7f8;
}
.about .about-content .left{
    width: 35%;
}
.ccc{
    position: relative;
    width: 430px;
    height: 430px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10%;
    overflow: hidden;
}
.ccc::before{
     content: " ";
     position: absolute;
     inset: -100px 120px;
     background: linear-gradient(315deg, #006aff,#dc143c);
     transition: 0.5s;
     animation: ahmed 4s linear infinite;
}
.ccc:hover::before{
    inset: 10px 0;
}
@keyframes ahmed{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.ccc::after{
    content: " ";
    position: absolute;
    inset: 5px;
    background: #F5F7F8;
    border-radius: 10%;
    z-index: 1;
}
.conn{
    position: absolute;
    inset: 20px;
    border: 6px solid #F5F7F8;
    z-index: 3;
    border-radius: 30%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.conn img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    pointer-events: none;
    z-index: 3;
}
.ccc:hover .conn img{
    opacity: 0;
}
.conn h2{
    position: relative;
    font-size: 2.5em;
    text-align: center;
    color: #a0a0a0;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
}
.conn h2 span{
    color: #4700D8;
}
.conn h2:hover{
    color: #a0a0a0;
    border-radius: 20px;
}
.conn h2:hover SPAN{ 
    color: #4700D8;
}

.about .about-content .right{
    width: 55%;
}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
    color: #4700D8;
}
.about .about-content .right p{
    text-align: justify;
}
.about .about-content .right a{
    display: inline-block;
    background: #006aff;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #006aff;
    transition: all 0.3s ease;
}
.about .about-content .right a:hover{
    color: #006aff;
    background: none;
}
/* services section start  */
.services, .teams{
    color: #fff;
    background: #111;
}
.services .title::before,
.teams .title::before{
    background: #fff;
}
.services .title::after, 
.teams .title::after{
    background: #111;
    content: "what we provide";
    color: #FF85B3;
}
.services .serv-content .card{
    height: 400px;
    width: calc(33% - 20px);
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.box img{
    height: 30px;
}

.box p{
    font-size: 14px;
}
.b6 p{
    font-size: 11.5px;
}
.services .serv-content .card:hover{
    border: 3px solid #fff;
    background: linear-gradient(#FF85B3 ,#4700D8);
}
.services .serv-content .card .box{
    transition: all 0.3s ease;
}
.services .serv-content .card:hover .box{
    transform: scale(0.90);
}
.services .serv-content .card i{
    font-size: 50px;
    color: #006aff;
    transition: color 0.3s ease;
}
.services .serv-content .card:hover i{
    color: #fff;
}
.services .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

/* skills section styling  */
.skills .title{
    font-size: 50px;
}
.skills .title::after{
    content: "what we know";
    color: #4700D8;
    font-size: 22px;
}
.skills .skills-content .column{
    width: calc(50% - 30px);
}
.skills .skills-content .left .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.skills .skills-content .left p{
    text-align: justify;
    font-size: 18px;
}
.skills .skills-content .left a{
    display: inline-block;
    background: #006aff;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #006aff;
    transition: all 0.3s ease;
}
.skills .skills-content .left a:hover{
    color: #4700D8;
    background: none;
}
.card-wrapper{
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}
.skills .skills-content .right{
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
}
.tob-titles{
    display: flex;
    flex-wrap: wrap;
    /* margin: 20px 120PX 40px; */
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    margin-top: 10px;
    flex-grow: 1;
    flex-basis: 200;
    align-items: center;
    text-align: center;
}
.active4{
    width: 100%;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.active0::after{
    background: linear-gradient(500deg, #4700D8 40% ,#9900F0 );
}
.active1::after{
    background: linear-gradient(500deg, #4700D8 40% ,#9900F0 );
}
.active2::after{
    background: linear-gradient(500deg, #4700D8 40% ,#9900F0 );
}
.active3::after{
    background: linear-gradient(500deg, #4700D8 40% ,#9900F0 );
}
.active4::after{
    background: linear-gradient(500deg, #4700D8 40% ,#9900F0 );
}
.active5::after{
    background: linear-gradient(500deg, #4700D8 40% ,#9900F0 );
}
.tab-links.active-link::after{
    width: 100%;
    border-radius: 100PX;
}
.tob-contents{
    display: none;
}
.tob-contents.active-tab{
    display: block;
}



.card-list .card-item{
    list-style: none;
}
.card-list .card-item .card-link{
    margin-top: 45px;
    user-select: none;
    display: block;
    background: linear-gradient(135deg, #9900F0 ,#FF85B3 );
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
    position: relative;
}
.card-link .card-item.card-link:active{
    cursor: grabbing
}
.card-item .card-link .card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}
.card-item .card-link .badge{
    color: #006aff;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: #dde4ff;
    width: fit-content;
    border-radius: 50px;
}
.tab-links{
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    /* margin: 16px 0 18px; */
    background: #dde4ff;
    width: fit-content;
    border-radius: 50px;

}
.card-item .card-link .badge.designer,
.active0{
    color: #333;
    background: #ccc;
}
.card-item .card-link .badge.designer,
.active0:hover{
    color: #dc143c;
    background: #f7dfdf;
}
.card-item .card-link .badge.developer,
.active1, .card-item .card-link .badge.marketer,
.active2, .card-item .card-link .badge.gamer,
.active3, .card-item .card-link .badge.editor,
.active4, .card-item .card-link .badge.social1,
.active5{
    color: #333;
    background: #ccc;
}
.card-item .card-link .badge.developer,
.active1:hover{
    color: #006aff;
    background: #dde4ff;
}
.card-item .card-link .badge.marketer,
.active2:hover{
    color: #b25a2b;
    background: #ffe3d2;
}
.card-item .card-link .badge.gamer,
.active3:hover{
    color: #205c20;
    background: #d6f8d6;
}
.card-item .card-link .badge.editor,
.active4:hover{
    color: #856404;
    background: #fff3cd;
}
.card-item .card-link .badge.social1,
.active5:hover{
    color: #ff6b09;
    background: #f7ebdf;
}
.card-item .card-link .card-title {
    font-size: 1.19rem;
    color: #000;
    font-weight: 600;
}
.card-item .card-link button{
    height: 30px;
    width: 30px;
    color: #fff;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: #9900F0;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transform: rotate(-25deg);
    transition: 0.4s ease;
}
.card-item .card-link:hover .card-button {
    color: #fff;
}
.card-wrapper .swiper-pagination-bullet{
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #006aff;
}
.card-wrapper .swiper-pagination-bullet-active{
    opacity: 1;
}
.card-wrapper .swiper-slide-button {
    color: #006aff;
    margin-top: -35px;
}
.card-item .card-link h2 li h3{
    margin: 5px;
}
.card-item .card-link h2 li{
    margin: 20px 0;
    padding: -15px;
}
.bar{
    background: #353b48;
    display: block;
    height: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.bar:hover{
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.bar span{
    height: 10px;
    float: left;
    background: linear-gradient(135deg, #ccc 20%, #fff);
    border-radius: 10px;
}
/* Developer */
.html1{
    width: 95%;
    animation: html1 0.5s;
}
@keyframes html1{
    0%{
        width: 0;
    }
    100%{
        width: 95%;
    }
}
.css1{
    width: 90%;
    animation: css1 0.5s;
}
@keyframes css1{
    0%{
        width: 0;
    }
    100%{
        width: 90%;
    }
}
.javascript1{
    width: 75%;
    animation: javascript1 0.5s;
}
@keyframes javascript1{
    0%{
        width: 0;
    }
    100%{
        width: 75%;
    }
}
.php1{
    width: 70%;
    animation: php1 0.5s;
}
@keyframes php1{
    0%{
        width: 0;
    }
    100%{
        width: 70%;
    }
}
/* Developer */
.html{
    width: 90%;
    animation: html 0.5s;
}
@keyframes html{
    0%{
        width: 0;
    }
    100%{
        width: 90%;
    }
}
.css{
    width: 85%;
    animation: css 0.5s;
}
@keyframes css{
    0%{
        width: 0;
    }
    100%{
        width: 85%;
    }
}
.javascript{
    width: 70%;
    animation: javascript 0.5s;
}
@keyframes javascript{
    0%{
        width: 0;
    }
    100%{
        width: 70%;
    }
}
.php{
    width: 60%;
    animation: php 0.5s;
}
@keyframes php{
    0%{
        width: 0;
    }
    100%{
        width: 60%;
    }
}
/* Management system */
.Net{
    width: 80%;
    animation: Net 0.5s;
}
@keyframes Net{
    0%{
        width: 0;
    }
    100%{
        width: 80%;
    }
}
.windowsformapp{
    width: 90%;
    animation: windowsformapp 0.5s;
}
@keyframes windowsformapp{
    0%{
        width: 0;
    }
    100%{
        width: 90%;
    }
}
.sql{
    width: 75%;
    animation: sql 0.5s;
}
@keyframes sql{
    0%{
        width: 0;
    }
    100%{
        width: 75%;
    }
}
.classlibraies{
    width: 95%;
    animation: classlibraies 0.5s;
}
@keyframes classlibraies{
    0%{
        width: 0;
    }
    100%{
        width: 95%;
    }
}
/* Design */
.photoshop{
    width: 85%;
    animation: photoshop 0.5s;
}
@keyframes photoshop{
    0%{
        width: 0;
    }
    100%{
        width: 85%;
    }
}
.illustrator{
    width: 80%;
    animation: illustrator 0.5s;
}
@keyframes illustrator{
    0%{
        width: 0;
    }
    100%{
        width: 80%;
    }
}
.office{
    width: 95%;
    animation: office 0.5s;
}
@keyframes office{
    0%{
        width: 0;
    }
    100%{
        width: 95%;
    }
}
.flu{
    width: 85%;
    animation: flu 0.5s;
}
@keyframes flu{
    0%{
        width: 0;
    }
    100%{
        width: 85%;
    }
}
.mob{
    width: 80%;
    animation: mob 0.5s;
}
@keyframes mob{
    0%{
        width: 0;
    }
    100%{
        width: 80%;
    }
}
.dart{
    width: 90%;
    animation: dart 0.5s;
}
@keyframes dart{
    0%{
        width: 0;
    }
    100%{
        width: 90%;
    }
}
.desi{
    width: 80%;
    animation: desi 0.5s;
}
@keyframes desi{
    0%{
        width: 0;
    }
    100%{
        width: 80%;
    }
}
.ver{
    width: 70%;
    animation: ver 0.5s;
}
@keyframes ver{
    0%{
        width: 0;
    }
    100%{
        width: 70%;
    }
}
.manag1{
    width: 90%;
    animation: manag1 0.5s;
}
@keyframes manag1{
    0%{
        width: 0;
    }
    100%{
        width: 90%;
    }
}
.adv1{
    width: 85%;
    animation: adv1 0.5s;
}
@keyframes adv1{
    0%{
        width: 0;
    }
    100%{
        width: 85%;
    }
}
.data1{
    width: 95%;
    animation: data1 0.5s;
}
@keyframes data1{
    0%{
        width: 0;
    }
    100%{
        width: 95%;
    }
}

/* teams section sryling  */
.teams .title{
    font-size: 40px;
}
.teams .title::after{
    content: "who with me";
    font-size: 22px;
}
.teams .carousel .card{
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover{
    border: 2px solid #fff;
}
.teams .carousel .card:hover{
    background: linear-gradient(#FF85B3 ,#4700D8);
}
.teams .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover .box{
    transform: scale(1.05);
}
.teams .carousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
    color: #fff;
}
.teams .carousel .card img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.teams .carousel .card .boox1 img{
    border: 3px solid  #9900F0 ;
}
.teams .carousel .card .boox3 img{
    border: 3px solid #9900F0;
}
.teams .carousel .card .boox2 img{
    border: 3px solid #9900F0 ;
}
.teams .carousel .card .boox4 img{
    border: 3px solid #9900F0 ;
}
.teams .carousel .card .boox5 img{
    border: 3px solid #9900F0 ;
}
.teams .carousel .card .boox6 img{
    border: 3px solid #9900F0 ;
}
.teams .carousel .card .boox7 img{
    border: 3px solid #9900F0 ;
}
.teams .carousel .card:hover .boox1 img{
    border-color: #fff;
}
.teams .carousel .card:hover .boox3 img{
    border-color: #fff;
}
.teams .carousel .card:hover .boox2 img{
    border-color: #fff;
}
.teams .carousel .card:hover .boox4 img{
    border-color: #fff;
}
.teams .carousel .card:hover .boox5 img{
    border-color: #fff;
}
.teams .carousel .card:hover .boox6 img{
    border-color: #fff;
}
.teams .carousel .card:hover .boox img{
    border-color: #fff;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #4700D8!important;
    transition: all 0.3s ease;

}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #FF85B3!important;
}

/* contact section styling  */
.contact .title::after{
    content: "get in touch";
    color: #4700D8;
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    color: #4700D8;
    font-size: 25PX;
    font-weight: 700;

}
.contact .contact-content .text h2{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #4700D8;
}
.contact .contact-content .text hr{
    border: none;
    width: 120px;
    height: 5px;
    background: #4700D8;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact .contact-content .left p{
    text-align: justify;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .left .iconss{
    margin-top: 15px;
    margin-left: -20px;
}
.contact .contact-content .left .iconss a{
    margin: 20px;
    font-size: 30px;
    border-radius: 50%;
    font-weight: 700;
    color: #494949;
}
.contact .contact-content .left .iconss .you:hover{
    color: #fa0000;
}
.contact .contact-content .left .iconss .fas:hover{
    color: #006aff;
}
.contact .contact-content .left .iconss .ins:hover{
    color: #dc143c;
}
.contact .contact-content .left .iconss .tik:hover{
    color: #25F4EE;
}
.contact .contact-content .left .iconss .wha:hover{
    color: #1e901e;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: #4700D8;
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .head .sub-title{
    color: #333;
}
.contact .right form .fields{
    display: flex;
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border: 1px solid rgb(161, 159, 159);
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}
.container input{
    margin-top: 10px;
}
.container textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
    margin-top: 10px;
}
.contact-inputs:focus{
    border: 2px solid #F900BF;
}
.contact-inputs::placeholder{
    color: #a9a9a9;
}
.container button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #4700D8,#F900BF);
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.3s;
}
.container button:hover{
    transform: translatex(15px);
    color: #fff;
}
.container button i{
    height: 15px;

}

/* footer section styling */
footer{
    background: linear-gradient(500deg, #9900F0 40%, #4700D8 );
    padding: 20px 23px;
    color: #fff;
    text-align: center;
}
footer span a{
    color: #FF85B3;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}








/* responsive media query start  */
@media (max-width: 1300px){
    .navbar .logo a img{
        margin-left: -5px;
    }
    .home .max-width{
        margin-left: 0px;
    }
    .about .about-content .left .ccc{
        width: 350px;
        height: 350px;
    }
}
@media (max-width: 1104px){
    .about .about-content .left .ccc{
        width: 300px;
        height: 300px;
    }
}
@media (max-width: 991px){
    .navbar.sticky{
        height: 60px;
    }
    .navbar .navbar-content{
        margin-top: -25px;
    }
    .navbar .navbar-content .logo img{
        margin-bottom: 30px;
        height: 80px;
    }
    .navbar .navbar-content #selectField{
        margin-top: 15px;
        height: 25px;
        width: 120px;
    }
    .navbar .navbar-content .selector #list{
        width: 120px;
    }

    .home{
        height: 10px;
    }
    .max-width{
        padding: 0 50px;
    }
    .home .home-content{
        margin-top: -150px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
        margin-top: -130px;
    }
    .menu-btn i.active::before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 150vh;
        /* margin-top: 20px; */
        width: 70%;
        left: -100%;
        top: 20px;
        background: linear-gradient(135deg, #4700D8,#9900F0 100%);
        text-align: center;
        padding-top: 220px;
        transition: all 0.5s ease;
        border-radius: 10%;
    }
    .navbar .menu.active{
        left: 0;
        /* top: 50px; */
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .max-width{
        max-width: full;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .skills .tob-titles{
        margin: 0 auto 0 50px;
    }
    .skills .skills-content .column{
        width: 100%;
        margin-bottom: -20px;
    }
    .skills .skills-content .left{
        margin-top: 40px;
    }
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: -10px;
    }
    .contact .contact-content .right{
        text-align: center;
    }

}
@media (max-width: 690px){
    .max-width{
        padding: 0 23px;
    }
    .services .title::after, 
.teams .title::after{
    font-size: 15px;
}
.skills .title::after{
    font-size: 15px;
}
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .services .serv-content .card{
        width: 100%;
        margin-bottom: 20px;
    }
    .contact .contact-content .right input,
    .contact .contact-content .right textarea{
        width: 250px;

    }

}
@media (max-width: 500px){
    .max-width{
        padding: 0 23px;
        width: full;
    }
    .home .home-content .text-2{
        font-size: 30px;
    }
    .home .home-content .text-3{
        font-size: 25px;
    }
}



/* -------custom scrollbar---- */
::-webkit-scrollbar{
    width: 12px;
}

::-webkit-scrollbar-track{
    background: #006aff;background: linear-gradient(#666,#333);
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(135deg, #4700D8,#9900F0 100%);
    border-radius: 50px;
    /* height: 20px; */
}