@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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --green: #0ca72d;
    --green2: rgb(0, 71, 27);
    --bg: #f3fff6;
    --bg2:rgb(233, 255, 238);
    --bg3:rgb(209, 254, 220);
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
    --violet: #6a41e1;
    --pink: #fc346a;
    --blue: #4481e4;
    --blue2: #EB3951;
    --blue3: #0a1f43;
    --orange: #f2532c;
    --bg-grad: linear-gradient(158deg, #f8e8ff 0%, #e0f4ff 85.84%);;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
    /* font-family: "Poppins", serif; */
    /* font-family: "Montserrat", sans-serif; */
    /* font-family: "Jost", sans-serif; */
    scroll-behavior: smooth;
    scroll-padding-top: 230px;
}
body{
    background-color: #eff4fa;
}

/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--blue3);
    border-radius: 15px;
    width: 60px;
    height: 60px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2.4em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--blue);
  }
  #top:active {
    background-color: var(--blue);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

/********* Header Section Start *********/

.navbar .navbar-brand img{
    width: 130px;
    transition: all 0.3s ease;
    
}
 
#logo {
    transition: all 0.3s ease !important; 
  }

.logo-small{
    transform: scale(0.5);
    /* transition: .5s ease-in-out !important;  */
}
.header-shadow{
    padding: 0 !important;
}
.menu-color{
    font-size: 12px !important;
    padding: 5px 8px;
}
.navbar a{
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
}
.navbar ul li a{
    text-transform: uppercase;
    padding: 10px 20px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    transition: .3s ease-in-out;
}
.navbar ul li a:hover{
    color: var(--blue);
}
.navbar ul li{
    margin: 0 5px;
}
.navbar{
    position: fixed;
    padding: 20px 0;
    background-color: var(--blue3);
    z-index: 99999999;
    transition: .5s ease-in-out !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--blue);
}
.navbar .sign{
    background-color: var(--blue);
    padding: 10px 25px;
    border-radius: 20px 0 20px 0;
    border: 2px solid var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease-in-out;
}
.navbar .list{
    background-color: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease-in-out;
}
.navbar .sign:hover{
    background-color: #4679cc;
    border-color: #4679cc;
    color: #fff;
}
.s-link{
    font-size: 12px !important;
    padding: 4px 20px !important;
}
.navbar .profile{
    margin-top: 5px;
    color: var(--white);
    font-size: 27px;
    transition: .4s ease-in-out;
}
.navbar .profile:hover{
    color: var(--blue);
}
.offcanvas {
    width: 250px !important;
}
.offcanvas-backdrop.show{
    opacity: .8;
}
.custom-toggler {
    border: none;
    background: transparent;
    padding: 10px;
}
.custom-toggler:focus{
    box-shadow: none;
}
.hamburger {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    transition: all 0.4s ease-in-out;
}
.dropdown-menu{
    background-color: var(--blue);
}
.dropdown-item{
    font-size: 14px !important;
}
.heading h2{
    font-family: "Jost", sans-serif;
    position: relative;
}
.heading h2:after{
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 6px;
    background-color: var(--blue);
}
.heading h2:before{
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--blue);
}
.heading p{
    font-size: 16px !important;
}

/********* Header Section End *********/

/********* profile Section Start *********/

.p-name a h1{
    transition: .3s ease-in-out;
}
.p-name a:hover h1{
    color: var(--blue2) !important;
}
#profile{
    background-color: var(--white);
    z-index: 99999999;
}
#pro2{
    background-color: var(--white);
    display: none;
    z-index: 99999999;
}
.p-fixed{
    width: 100%;
    display: block;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 45px;
}
.fixed{
    position: fixed;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    top: 130px;
}
#pro{
    background-color: var(--white);
    padding-top: 85px;
}
#p-bg img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
#profile a{
    text-decoration: none;
}
#profile .c-logo img{
    width: 200px;
    border: 1px solid #d2d2d2;
    border-radius: 50%;
}
#pro2 .c-logo img{
    width: 70px;
}
#profile h1{
    font-size: 32px;
    color: var(--blue);
    margin-right: 20px;
}
#pro2 h1{
    font-size: 25px;
}
#profile h1 i{
    font-size: 12px;
    color: #585858;
    opacity: .5;
}
#profile .ratings span{
    color: #edc74b;
    font-size: 18px;
    margin: 0 2px;
}
#profile .rp{
    color: var(--blue);
    font-size: 18px;
    font-weight: 700;
}
#profile .rp span{
    color: #585858;
    font-size: 14px;
    font-weight: 500;
}
#profile .p-tagline{
    margin-top: 5px;
    font-size: 22px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 20px;
}
#profile .p-others a{
    color: var(--black);
    font-size: 17px;
    font-weight: 500;
    transition: .3s ease-in-out;
}
#profile .p-others a:hover{
    color: var(--blue2);
}
#profile .p-others i{
    color: var(--blue);
    font-size: 20px;
    margin-right: 10px;
}
#profile .p-btn{
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
}
#profile .p-btn i{
    margin-left: 10px;
}
#profile .p-left a{
    display: block;
    padding: 12px 15px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 7px;
    border: 1px solid var(--blue);
}
#profile .p-right a{
    display: block;
    padding: 12px 15px;
    background-color: transparent;
    color: var(--blue);
    border-radius: 7px;
    border: 1px solid var(--blue);
}
#profile .p-re a{
    background-color: var(--blue3);
    border-color: var(--blue3);
    color: var(--white);
}
.pad-top{
    padding-top: 370px !important;
}
#menu{
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background-color: var(--white);
    transition: .4s ease-in-out;
    z-index: 99999999;
}
#menu ul{
    list-style: none;
    display: flex;
    justify-content: center;
}
#menu ul li{
    padding: 15px 20px;
}
#menu ul li a{
    font-size: 16px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    position: relative;
    transition: 0.4s;
}
  
#menu ul li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  bottom: -18px;
  left: 50%;
  background-color: var(--blue);
  transition: all 0.5s;
}
#menu ul li a:hover{
    color: var(--blue);
}
#menu ul li a:hover::before {
  width: 100%;
  left: 0;
}
#menu ul li .active::before {
    width: 100%;
    left: 0;
  }

/********* profile Section End *********/

/********* About Section Start *********/

#about iframe{
    border-radius: 10px;
}
#about .a-det p{
    font-weight: 700;
    color: var(--blue);
    font-size: 15px;
}
#about .a-det span{
    font-weight: 600;
    font-size: 15px;
}
#about .a-det i{
    font-size: 35px;
    margin-right: 10px;
    color: var(--blue);
}

/********* About Section End *********/

/********* Services Section Start *********/

.bg-color{
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    background-color: var(--white);
}
#services a{
    text-decoration: none;
}
#services span{
    font-size: 17px;
    font-weight: 700;
    color: var(--black2);
    transition: .3s ease-in-out;
}
#services i{
    font-size: 20px;
    font-weight: 700;
    color: #585858;
    transition: .3s ease-in-out;
}
#services .s-item{
    border-bottom: 1px solid #bdbdbd;
    transition: .3s ease-in-out;
}
#services a:hover span{
    color: var(--blue);
}
#services a:hover i{
    color: var(--blue);
    transform: translateX(5px);
}
#services a:hover .s-item{
    border-color: var(--blue);
}

/********* Services Section End *********/

/********* Portfolio Section Start *********/

#portfolio .p-item{
    border: 1px solid #e9e9e9;
    height: 100%;
    position: relative;
    border-radius: 20px 20px 0 0;
    transition: .4s ease-in-out;
}
#portfolio .p-img{
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
#portfolio .p-img img{
    border-radius: 20px 20px 0 0;
    transition: .4s ease-in-out;
}
#portfolio .p-over{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue3);
    opacity: 0;
    transition: .4s ease-in-out;
}
#portfolio .p-tag{
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background-color: var(--blue2);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
#portfolio a{
    text-decoration: none;
}
#portfolio .p-item:hover img{
    transform: scale(1.4) rotate(10deg);
}
#portfolio .p-item:hover .p-over{
    opacity: 0.6;
}
#portfolio h5{
    color: var(--black);
    font-weight: 600;
    font-size: 18px;
    transition: .4s ease-in-out;
}
#portfolio .p-item:hover{
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
#portfolio .p-item:hover h5{
    color: var(--blue) !important;
}
#portfolio p{
    font-size: 14px;
}
#portfolio .p-det{
    font-weight: 600;
    font-size: 15px;
    color: var(--black);
}
#portfolio .p-det i{
    margin-right: 5px;
    font-size: 18px;
    color: var(--blue);
}

/********* Portfolio Section End *********/

/********* Clients Section Start *********/

#clients h5{
    font-size: 19px;
}
#clients .c-item{
    padding: 50px 0 !important;
    background-color: var(--white);
    border: 1px solid var(--blue);
    color: var(--black2);
    border-radius: 15px;
}

/********* Clients Section End *********/

/********* Industries Section Start *********/

#industries .s-item{
    padding: 0 !important;
}
#industries .s-item span{
    padding: 12px 30px;
    border: 1px solid var(--blue);
    border-radius: 50px;
    margin: 0 !important;
}

/********* Industries Section End *********/

/********* Location Section Start *********/

#location p{
    font-weight: 600;
    padding-right: 20px;
    font-size: 15px;
}
#location h5{
    color: var(--blue);
    position: relative;
}
#location h5::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--blue);
}
#location p i{
    margin-right: 6px;
    color: var(--blue);
}
#location .l-link a{
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    transition: .3s ease-in-out;
}
#location .l-link i{
    transition: .3s ease-in-out;
}
#location .l-link a:hover{
    color: var(--blue2);
}
#location .l-link a:hover i{
    margin-left: 5px;
}
#location .l-wrap{
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}

/********* Location Section Start *********/

/********* Awards Section Start *********/

#awards .a-item{
    padding: 20px;
}
#awards img{
    height: 90px;
    margin-bottom: 10px;
}
#awards p{
    font-size: 14px;
}

#awards span{
    font-size: 12px;
    font-weight: 500;
}

/********* Awards Section End *********/

/********* Team Section Start *********/

#team .t-item{
    border-radius: 20px 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #d8d8d8;
}
#team .t-img{
    margin-right: 25px;
}
#team h5{
    font-weight: 700;
    margin-bottom: 0;
}
#team span{
    font-size: 14px;
}
#team p{
    margin-top: 8px;
    font-size: 15px;
}
#team img{
    border-radius: 50%;
    border: 2px solid var(--blue);
    width: 150px;
    height: 150px;
    object-fit: cover;
}
#team ul{
    display: flex;
    list-style: none;
}
#team ul li a{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: var(--blue);
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
}
#team ul li a:hover{
    background-color: var(--blue3);
}

/********* Team Section End *********/

/********* Careers Section Start *********/

#careers .icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#careers .icon-wrapper:hover {
    background-color: var(--pink) !important;
    color: var(--pink);
    transform: translateY(-5px);
}

/********* Careers Section End *********/

/********* Pricing Section Start *********/

#pricing .p-item{
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid #c5c5c5;
    transition: all .3s ease-in-out;
}
#pricing .popular{
    border: 1px solid var(--blue);
}
#pricing .p-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
#pricing .popular-badge {
    background-color: var(--blue);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 6px 6px;
    width: fit-content;
    margin: -1rem auto 1.5rem;
}
.pricing-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
}

.pricing-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 5px 0;
    display: flex;
    font-size: 15px;
    align-items: center;
}
.pricing-features li i{
    margin-right: 10px;
    color: var(--blue);
    font-size: 18px;
}
.p-btn a {
    background-color: var(--blue);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
} 
.p-btn a:hover {
    background-color: var(--blue3);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-pricing {
    background-color: transparent !important;
    color: var(--blue) !important;
    border: 1px solid var(--blue) !important;
}
.btn-outline-pricing:hover {
    background-color: var(--blue3) !important;
    color: var(--white) !important;
    border-color: var(--blue3) !important;
}


/********* Pricing Section End *********/

/********* Review Section Start *********/

#review .ratings{
    margin-top: -5px;
}
#review .r1 h6{
    color: var(--blue) !important;
    font-size: 18px;
}
#review ul{
    list-style: none;
}
#review .ratings span{
    color: var(--blue);
    font-size: 16px;
    margin: 0 2px;
}
#review .r1 .ratings span{
    color: #edc74b;
}
#review .r-item{
    border-bottom: 1px solid #dbdbdb;
}
#review .r-item:nth-child(1){
    border-top: 1px solid #dbdbdb;
}
#review .r-item img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
#review .bord{
    border-right: 1px solid #dbdbdb;
    border-left: 1px solid #dbdbdb;
}
#review .rd{
    color: var(--blue);
}
#review p{
    font-size: 15px;
    font-weight: 500;
}
#review .r-name h6{
    font-weight: 600;
    font-size: 15px;
    color: var(--blue);
}

/********* Review Section End *********/

/********* Footer Section Start *********/

#footer{
    background-color: var(--blue3);
}
#footer p{
    font-size: 14px;
    color: #efefef;
    opacity: 0.7;
}
#footer ul{
    list-style: none;
}
#footer ul li{
    margin: 7px 0;
}
#footer ul li a{
    text-decoration: none;
    color: var(--white);
    opacity: 0.7;
    transition: .3s ease-in-out;
}
#footer ul li a:hover{
    opacity: 1;
}
#footer .social ul{
    display: flex;
    list-style: none;
}
#footer .social ul li a{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: var(--blue);
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: .3s ease-in-out;
}
#footer .social ul li a:hover{
    background-color: var(--blue2);
}
#footer h4{
    color: var(--white);
}
#copy{
    background-color: #031330;
}
#copy ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: right;
}
#copy li{
    margin-left: 15px;
}
#copy li a{
    color: rgb(177, 177, 177);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: .3s ease-in-out;
}
#copy li a:hover{
    color: var(--white);
    text-decoration: underline;
}
#copy p{
    font-size: 14px;
    color: var(--white);
}

/********* Footer Section End *********/