@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300&display=swap');

:root{
    --body-f: 'Mulish', sans-serif;
    --title-f: 'Poppins', sans-serif;
    --primary-color: #ffffff;
    --main-color: #7fe9fd;
    --seconday-color: rgba(74, 48, 136, 0.1);
    --text-color-dark: #000000;
    --text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
    --shadow: 0px 0px 10px 0px rgba(0,0,0,0.10) !important;
    --shadow-dark: 0px 0px 10px 0px rgba(0,0,0,0.24);
    --btm-shadow: 1px 1px 5px 5px rgba(0,0,0,0.2);
}

/* ===============================================================
    DEFAULT CSS
==================================================================*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body, 
html{
    width: 100vw;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: var(--body-f);
    background-color: var(--primary-color);
    transition: .6s all ease;
}

@media (max-width: 991px){
    html{
        font-size: 88%;
    }
}

@media (max-width: 600px){
    html{
        font-size: 87%;
    }
}
h1,h2,h3,h4,h5{
    font-family: var(--title-f);
    color: var(--text-color-dark);
    font-weight: 500;
    line-height: 1.5;
    transition: .6 all ease;
}
h6{
    font-family: var(--title-f);
    color: var(--text-color-dark);
    font-weight: 300;
    line-height: 1.5;
    transition: .6 all ease;
}

p{
    font-family: var(--body-f);
    color: var(--text-color-dark);
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.5; 
    transition: .6 all ease;
    text-align: justify;
}
a,
a:active,
a:hover{
    color: var(--text-color-dark);
}

body {
  padding-top: 56px; /* For default navbar height */
}

@media (max-width: 767.98px) {
  body {
    padding-top: 80px; /* adjust for mobile */
  }
}


input[type="text"], input[type="email"], input[type="number"], input[type="search"], textarea

	{
		
		border: 1px solid var(--text-color-dark);
		border-radius: 5px;
		outline: none !important;
		box-shadow: none !important;

	}

input[type="text"], input[type="email"], input[type="number"]:focus

	{
		
		outline: var(--text-color-dark) !important;
			

	}

select.form-select

	{
		border: 2px solid var(--text-color-dark);
		border-radius: 3px;
		outline: none !important;
		box-shadow: none !important;
	}


.navbar

    {
        
    }


.cardscontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%; /* Orignal 1200px */
    flex-wrap: wrap;
    padding: 0 0;
}
.cardscontainer .card{
    position: relative;
    width: 420px;
    height: 470px;
    box-shadow: inset 5px 5px 5px rgba(0,0,0,0.05),
                inset -5px -5px 5px rgba(255,255,255,0.5),
                5px 5px 5px rgba(0,0,0,0.05),
                -5px -5px 5px rgba(255,255,255,0.5);
    /* border-radius: 15px; */
    margin: 10px;
}
.cardscontainer .card .box{
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #f2f7fc;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    /* border-radius: 15px; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.cardscontainer .card:hover .box{
    transform: translateY(-35px); /* Orignal -50px */
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #8fd1e6, #7758df);
}
.cardscontainer .card .box .content{
    padding: 20px;
    text-align: center;
}
.cardscontainer .card .box .content h2{
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 8em;
    color: rgba(0,0,0,0.02);
    transition: 0.5s;
    pointer-events: none;
}
.cardscontainer .card:hover .box .content h2{
    color: rgba(0,0,0,0.05);
}
.cardscontainer .card .box .content h3{
    font-size: 2em;
    color: #777;
    z-index: 1;
    transition: 0.5s;
}

.cardscontainer .card .box .content p{
    font-size: 1em;
    font-weight: 300;
    color: #777;
    z-index: 1;
    transition: 0.5s;
}

.cardscontainer .card:hover .box .content h3
, .cardscontainer .card:hover .box .content p {
    color: #fff;
}

.cardscontainer .card .box .content a{
    position: relative;
    display: inline-block;
    padding: 9px 20px;
    background: #7758df;
    margin-top: 20px;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.cardscontainer .card:hover .box .content a{
    background: #fff;
    font-weight: 600;
    color: #7758df;
}


/* Pakistan Citizen Portan Card */

.cardscontainer-pcp {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%; /* Orignal 1200px */
    flex-wrap: wrap;
    padding: 0 0;
}
.cardscontainer-pcp .card{
    position: relative;
    width: 350px;
    height: 250px;
    box-shadow: inset 5px 5px 5px rgba(0,0,0,0.05),
                inset -5px -5px 5px rgba(255,255,255,0.5),
                5px 5px 5px rgba(0,0,0,0.05),
                -5px -5px 5px rgba(255,255,255,0.5);
    /* border-radius: 15px; */
    margin: 10px;
}
.cardscontainer-pcp .card .box{
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #f2f7fc;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    /* border-radius: 15px; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.cardscontainer-pcp .card:hover .box{
    transform: translateY(-25px); /* Orignal -50px */
    box-shadow: 0 5px 40px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #8fd1e6, #7758df);
}
.cardscontainer-pcp .card .box .content{
    padding: 5px;
    text-align: center;
}

#splash1{
    position: relative;
    width: 100%;
    min-height: 40vh;
    background: url(images/top-image1.png);
    background-size: cover;
}
#splash1:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 40vh;
    background: url(images/splash1.png);
    background-size: 100%;
    background-position: center;
    mix-blend-mode: screen;
}

#splash2{
    position: relative;
    width: 100%;
    min-height: 40vh;
    background: url(images/top-image1.png);
    background-size: cover;
}
#splash2:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 40vh;
    background: url(images/splash2.png);
    background-size: 100%;
    background-position: center;
    mix-blend-mode: screen;
}

#splash3{
    position: relative;
    width: 100%;
    min-height: 40vh;
    background: url(images/top-image1.png);
    background-size: cover;
}
#splash3:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 40vh;
    background: url(images/splash3.png);
    background-size: 100%;
    background-position: center;
    mix-blend-mode: screen;
}

#splash4{
    position: relative;
    width: 100%;
    min-height: 40vh;
    background: url(images/top-image1.png);
    background-size: cover;
}
#splash4:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 40vh;
    background: url(images/splash4.png);
    background-size: 100%;
    background-position: center;
    mix-blend-mode: screen;
}

#splash5{
    position: relative;
    width: 100%;
    min-height: 40vh;
    background: url(https://ajkbise.net/css/images/top-image1.png);
    background-size: cover;
}
#splash5:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 40vh;
    background: url(https://ajkbise.net/css/images/splash5.png);
    background-size: 100%;
    background-position: center;
    mix-blend-mode: screen;
}

#splash6{
    position: relative;
    width: 100%;
    min-height: 40vh;
    background: url(images/top-image1.png);
    background-size: cover;
}
#splash6:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 40vh;
    background: url(images/splash6.png);
    background-size: 100%;
    background-position: center;
    mix-blend-mode: screen;
}


#gallery{
    padding: 20px;
    width: auto;
    margin: 5px auto;
}

#gallery ul{
    display: flex;
    margin-bottom: 10px;
}

#gallery ul li{
    list-style: none;
    background: #eeeeee;
    padding: 8px 20px;
    margin: 5px;
    letter-spacing: 1px;
    cursor: pointer;
}
#gallery ul li.active{
    background-color: #03A9F4;
    color: #ffffff;
}
.product{
    display: flex;
    flex-wrap: wrap;
}
.product .itemBox{
    position: relative;
    width: 385px;
    height: 250px;
    margin: 10px;
}
.product .itemBox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}