﻿:root {
    --primary-color: #30d3e7;
    --secondary-color: #502cc3;
    --tertiary-color: #59179a;
    --fourth-color: #fe40ff;
    --font-heading: Bebas Neue;
    --font-body: Red Hat Display;
    --tertiary-font: Orbitron;
    --theme: #010613;
    --theme2: #111213;
    --theme3: #1b0d2d;
    --font-body-color: #fff;
    --font-body-size: 15px;
    --border-color: #18524f;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    --gradient2: linear-gradient(135deg, var(--fourth-color), var(--tertiary-color));
    --gradient3: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 25%, var(--fourth-color) 50%, var(--tertiary-color) 75%, var(--secondary-color) 100%);
    --gradient-btn: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    --radial: radial-gradient(circle, var(--tertiary-color) 0%, rgba(80, 44, 195, 0.4) 20%, var(--theme) 100%);
    --hero-bg:url('../../../assets/landing/images/hero-bg.png');
    --overlay: #1b0d2df7;
    --overlay2: #1c1c1cd5;
    --overlay3: #ff40ff96;
    --overlay4: #30d2e7a1;
    --misvis-bg:url('../../../assets/landing/images/misvis.png');
    --blog-banner: url('../../../assets/landing/images/blog/welcome.jpg');
}


/*GENERAL SETTINGS*/

html {
    scroll-behavior: smooth;
}

* {
    margin:0;
    box-sizing:border-box;
    font-family: var(--font-body);
    color: var(--font-body-color);
}

body {
    background: var(--theme);
}

i{
    font-size:10px;
}

h1, h2, h3, h4, h5{
    font-family: var(--font-heading);
}

a{
    text-decoration:none;
    width: fit-content;
}

a:hover{
    color: var(--primary-color);
}

button {
    position: relative;
    border: none;
    border-radius: 50px;
    background: var(--gradient-btn);
    font-size: 15px;
    text-transform: uppercase;
    padding: 15px 17px;
    width: fit-content;
    margin: 20px 0 0;
    cursor: pointer;
    overflow: hidden;
    transition: 0.5s;
}

.space{
    margin:10px 0px;
}

button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    transform: skewX(-25deg);
    transition: 0.5s;
}

button:hover::before {
    left: 150%;
    transition: 1s;
}

button:hover {
    background: var(--primary-color);

}

hr {
    border: none;
    height: 1px;
    background: var(--gradient3);
    position: relative;
    margin: 20px 0;
}

hr:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--radial);
    filter: blur(5px);
}

hr:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient2);
    animation: pulse 1.5s infinite alternate;
}

p{
    margin-bottom: 10px;
}

@keyframes pulse {
    0% {
        transform: scaleX(0.8);
    }
    100% {
        transform: scaleX(1);
    }
}

.misvis {
    background: var(--gradient2); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 
        0 0 1px var(--fourth-color),
        0 0 3px var(--fourth-color), 
        0 0 5px var(--fourth-color);
}

.logo-circle{
    height:50px;
    width:60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
}

.templogo{
    font-family: var(--tertiary-font);
    line-height: 1;
    font-size:30px;
}

.smooth {
    border-radius: 10px;
}

.exciting{
    font-weight:900;
    text-align:center;
}

.image-div{
    height: 150px;
    width: 150px;
    margin: 0 auto;
    border-radius: 75px;
    border:2px solid var(--fourth-color);
    margin-top:-80px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, box-shadow 0.3s ease; 
}

.centered{
    text-align: center;
}

.drin{
    background: url('../../../assets/landing/images/members/aldrin.jpg');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
}

.mark{
    background: url('../../../assets/landing/images/members/mark.jpg');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
}

.miah{
    background: url('../../../assets/landing/images/members/jeremiah.jpg');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
}

.myns{
    background: url('../../../assets/landing/images/members/myns.png');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
}

.img-box.blog{
    background: url('../../../assets/landing/images/blog.png');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
}

.img-box.about {
    background: url('../../../assets/landing/images/working.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease, box-shadow 0.5s ease; 
    border: 2px solid var(--fourth-color);
    box-shadow: inset 0 0 10px var(--tertiary-color), 0 0 15px var(--fourth-color), 0 0 20px var(--tertiary-color);
    border-radius: 500px;
}


.img-box.about:hover {
    filter: grayscale(0%); 
    box-shadow: inset 0 0 15px var(--tertiary-color), 0 0 25px var(--fourth-color), 0 0 30px var(--tertiary-color);
}

.img-box.ready {
    background: url('../../../assets/landing/images/tech.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease, box-shadow 0.5s ease; 
    border: 2px solid var(--fourth-color);
    box-shadow: inset 0 0 10px var(--tertiary-color), 0 0 15px var(--fourth-color), 0 0 20px var(--tertiary-color);
    border-radius: 500px;
}

.img-box.ready:hover {
    filter: grayscale(0%); 
    box-shadow: inset 0 0 15px var(--tertiary-color), 0 0 25px var(--fourth-color), 0 0 30px var(--tertiary-color);
}

.img-box.website {
    background: url('../../../assets/landing/images/projects/webdesign.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    height: auto !important;
}

.img-box.webapp {
    background: url('../../../assets/landing/images/projects/login.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid var(--fourth-color);
    box-shadow: inset 0 0 15px var(--tertiary-color), 0 0 25px var(--fourth-color), 0 0 30px var(--tertiary-color);
}

.img-box.travel {
    background: url('../../../assets/landing/images/projects/monitor.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    height: auto !important;
}

.img-box.pos {
    background: url('../../../assets/landing/images/projects/pos.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: filter 0.5s ease, box-shadow 0.5s ease; 
    border: 2px solid var(--fourth-color);
    box-shadow: inset 0 0 15px var(--tertiary-color), 0 0 25px var(--fourth-color), 0 0 30px var(--tertiary-color);
    border-radius: 500px;
}

.img-box.saas {
    background: url('../../../assets/landing/images/projects/saas.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid var(--fourth-color);
    box-shadow: inset 0 0 15px var(--tertiary-color), 0 0 25px var(--fourth-color), 0 0 30px var(--tertiary-color);
    height: 400px;
}

.img-box{
    height: 450px;
}
/*GENERAL SETTINGS*/

/*GRIDS*/

.grid {
    display: grid;
    gap: 20px;
    box-sizing: border-box;
}

.two {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.produktwo{
    grid-template-columns: 400px 1fr;
    gap: 20px;
}

.three{
    grid-template-columns: 1fr 1fr 1fr;
}

.four{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.checkoutlist{
    grid-template-columns: 70px 150px 1fr 130px;
    gap:0px !important;
}


.five{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

@media screen and (max-width:1000px){
    .four{
        grid-template-columns: 1fr 1fr;
    }

    .five{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .produktwo{
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width:899px){
    .five{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .three{
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width:600px){
    .two, .three, .four{
        grid-template-columns: 1fr;
    }
    .five{
        grid-template-columns: 155px 155px
    }

}
/*GRIDS*/

/*HEADER*/

.leap{
    font-family: var(--font-body);
    font-size: 25px;
    font-weight:900; 
    font-size:50px;
}
.innovations{
    text-transform: uppercase;
    font-weight: 100;
    font-size:10px;
}

.cart-icon i{
    font-size:30px;
    cursor: pointer;
}

.cart-icon i:hover{
    color: var(--primary-color);    
}

.logo-text{
    line-height: 30px;
    margin-bottom: -10px;
    display: flex;
    flex-direction: column;
}

.logo-div img{
    width:60px;
    outline: none;
}

@media screen and (max-width:1000px){
    .logo-text{
        line-height: 1;
        margin-bottom: 0px;
    }

    .logo-div img{
        width:50px;
    }

    .leap{
        font-size:35px;
    }
    .innovations{
        font-size:7px;
    }
}


.bx-menu{
    display:none;
}

.header-wrapper {
    display: flex;
    max-width: 1466px;
    width: 100%;
    height: 80px;
    padding: 20px;
    align-items: center;
    background: transparent;
    z-index: 100;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap:20px;
}

.donate-btn {
    width: 5%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap:20px;
}

.donate-btn button{
    margin:0px;
}


.logo-div{
    width:35%;
    display:flex;
    align-items:center;
    gap:10px;
    
}

.logo-div i{
    font-size:40px;
    color: var(--primary-color);
}

.navigation-div {
    width: 80%;
    display:flex;
    justify-content:flex-end;
}

.navigation {
    padding: 0;
    list-style: none;
    text-decoration: none;
    display: flex;
    gap: 30px;
}

.navigation li {
    padding: 10px 0;
    position: relative;
}

.navigation li a:hover{
    color:var(--primary-color);
}

.navigation li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.navigation li a:hover::after,
.navigation .current a::after {
    width: 100%;
}

@media screen and (max-width:1000px){
    .logo-div{
        width:80%
    }
    .navigation-div{
        display:none;
    }
    .donate-btn {
        min-width: fit-content;
    }
    .header-wrapper{
        justify-content:space-between;
    }
}

/*HEADER*/

/*SiDE BAR*/

.bx-x {
    font-size: 35px;
    color: Red;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -110%;
    width: 340px;
    height: 100%;
    background-color: var(--theme);
    z-index: 1500;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding:10px;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -110%;
    width: 340px;
    height: 100%;
    background-color: var(--theme);
    z-index: 1500;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding:10px;
}

.cart-price{
    font-size:16px;
}

.sidebar-close {
    cursor: pointer;
}

.cart-list img{
    width:50px;
}

.cart-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap:20px;
}

.remove-btn{
    color:red;
    cursor: pointer;
}

.remove-btn:hover{
    color: var(--primary-color);
}

.bx-x{
    cursor: pointer;
}

.div-list {
    padding: 0px 20px;
}

.mobile-sidebar ul, .cart-sidebar ul {
    list-style: none;
    color: #fff;
}

.mobile-sidebar li {
    text-transform: uppercase;
    padding: 10px 0px;
}

.mobile-sidebar a {
    color: #fff;
}

.div-list ul li a:hover {
    color: var(--primary-color);
}

/*SiDE BAR*/

/*HERO SECTION*/

.hero-section {
    width: 100%;
    height: 700px;
    background: var(--hero-bg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(255,255,255,0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: moveGrid 5s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes moveGrid {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

.hero-div, .hero-text, .hero-image, .border {
    position: relative;
    z-index: 2;
}

.hero-div{
    width:1366px;
    margin:20px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding: 0px 20px;
}

.heading-part1{
    font-family: var(--font-body);
    font-weight:100;
    color: var(--font-body-color);
}

.heading-part2 {
    display: block;
    font-size: 80px;
    text-transform: uppercase;
    line-height: 0.9;
    background: var(--gradient2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.border {
    border-bottom: 3px solid var(--secondary-color);
    width: 50px;
    margin: 20px auto;
}

.border.left {
    margin: 20px 0px!important;
}

.small-center{
    width:600px;
    margin:0 auto;
}

@media screen and (max-width:999px){
    .small-center{
        width:100%;
        box-sizing: border-box;
    }
}

@media screen and (max-width:1280px){
    .hero-section {
        padding:100px 20px 0px 20px;
        width: auto;
        height: 650px;
        display: flex;
        align-items: center;
    }

    .heading-part2{
        font-size:65px;
    }
}

@media screen and (max-width: 1000px) {
    .navigation-div .navigation {
        display: none;
    }

    .bx-menu {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }

    .hero-section {
        width: 100%;
        height: auto;
        background: var(--radial) !important;
        padding: 150px 20px 100px 20px;
    }

    .hero-div {
        gap: 20px;
    }

    .heading-part2 {
        font-size: 40px;
    }

    .hero-image {
        background: var(--hero-bg);
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 500px;
    }

    p, button {
        font-size: 13px;
    }
}

@media screen and (max-width:600px){

    .hero-div {
        grid-template-columns: 1fr;
        justify-content: center;
        place-items: center;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .hero-image {
        height:250px;
        width:250px;
    }

    .hero-text h2, .hero-text p{
        text-align:center;
    }

    .border{
        margin: 20px auto;
    }

    .border.left {
        margin: 20px 0px !important;
    }

    .hero-text button {
        display: block;
        margin: 20px auto; 
    }

}
/*HERO SECTION*/

/*INTERNAL HERO*/
.internal-hero-section {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-bg);
    padding-top: 40px;
    position: relative;
    overflow: hidden;
}

.internal-hero-section.blogbanner {
    background: 
        var(--blog-banner),
        #121212f5; /* Ensure the variables are defined correctly */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.internal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(255,255,255,0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: moveGrid 5s linear infinite;
    pointer-events: none;
}

@keyframes moveGrid {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

.internal-hero-section h2 {
    font-size: 50px;
    position: relative;
    color: var(--fourth-color);
    text-align: center;
}

@media screen and (max-width:999px){
    .internal-hero-section h2 {
        font-size: 30px;
    }
}

/*INTERNAL HERO*/

/*H1 Section*/

.h1-section{
    width:1000px;
    margin: 0 auto;
    padding: 120px 20px;
}

.h2-section{
    width:1000px;
    margin: 0 auto;
    padding: 120px 20px;
}

.misvis-section {
    background: 
        var(--misvis-bg),
        var(--overlay); /* Ensure the variables are defined correctly */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: fixed;
}

.misvis-wrapper{
    width: 1000px;
    margin: 0 auto;
    padding: 120px 20px;
}

.h1-text .heading-part2 {
    font-size: 40px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-holder{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.card {
    position: relative;
    background: var(--gradient2);
    height: 180px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    transition: 0.5s;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transform: skewX(-25deg);
    transition: 0.5s;
}

.card:hover::before {
    left: 150%;
    transition: 1s;
}

.card i.bx{
    font-size:90px;
}

@media screen and (max-width: 1000px){
    .h1-section{
        padding:50px 20px;
        width:auto;
    }
    .h2-section{
        padding:50px 20px;
        width:auto;
    }
    .misvis-wrapper{
        padding:50px 20px;
        width:auto;
    }
}

@media screen and (max-width:600px){
    .h1-section{
        width: auto;
        padding:50px 20px;
    }
    .h2-section{
        width: auto;
        padding:50px 20px;
    }
    .misvis-wrapper{
        padding:50px 20px;
        width:auto;
    }
}
/*H1 Section*/

/*blog section*/

.blog-wrapper, .playground-wrapper, .shop-wrapper{
    width:1000px;
    height: auto;
    margin: 0 auto;
    padding: 70px 20px;
    box-sizing: border-box;
}

.blog-section, .playground-section, .shop-section{
    background:var(--theme3);
}

.grid-blog{
    display: grid;
    grid-template-columns: 250px 1fr;
    gap:20px;
}

.grid-blog .side-navigation {
    padding: 20px;
    border-radius: 20px;
    /*box-shadow: 0 0 11px 1px var(--fourth-color), 0 0 15px 2px rgba(255, 255, 255, 0.4);*/
    background: var(--theme2);
    max-height: fit-content;
}

.search-here {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--fourth-color);
}

.search-here:focus-within {
    border-bottom: 2px solid var(--primary-color);
}

.search-here .bx{
    font-size: 20px;
    color:var(--fourth-color);
}


.search-here:focus-within >.bx {
    color:var(--primary-color);
}

.side-navigation input{
    border: none;
    outline: none;
    background: none;
    padding: 10px 5px;
    width: 100%;
}

.grid-blog .side-navigation div{
    margin-bottom:30px;
}

.grid-blog .side-navigation ul{
    list-style: none;
    padding-left: 10px;
}

.grid-blog .side-navigation ul a li:hover{
    color: var(--primary-color) !important;
}

.grid-blog .side-navigation div:last-of-type{
    margin-bottom:0px;
}

.blog-item{
    margin: 0px 40px 15px 40px;
    background: var(--theme2);
    padding: 20px;
    border-radius: 10px;
}

.blog-item h2{
    font-family: var(--font-body);
}

.blog-item i{
    font-size:10px;
}

.blog-item .bx{
    font-size:30px;
}

.blog-content{
    padding: 70px 40px;
    border-radius: 10px;
    background-color: var(--theme2);
    margin:0px 20px
}

.blog-content h1{
    font-family: var(--font-body);
    font-size:40px;
}

.blog-content h3{
    font-size:20px;
    margin-bottom: 20px;
}

.related-post{
    padding: 10px;
    background: var(--theme);
    cursor: pointer;
}

.post-details h5{
    font-family: var(--font-body);
    
}

.post-details p{
    font-size: 11px;
}

.post-banner img{
    width: 100%;
    height: 150px; 
    object-fit: cover;
    object-position: top;
    border-radius: 10px; 
}

.main-content{
    margin-top:20px;
}

.blog-content {
    position: relative;
}

.views-container {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--tertiary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 14px;
}

.views-container i {
    font-size: 18px;
}

.views-container .view-count {
    font-weight: bold;
}


@media screen and (max-width:1000px){
    .blog-wrapper, .shop-wrapper{
        width:auto;
    }

    .blog-content h1{
        font-size:30px;
    }

    .img-box{
        height:auto;
        width:auto;
       
    }
    .grid-blog{
        display: flex;
        flex-direction: column-reverse;
        gap:20px;
    }
    .blog-item{
        margin: 0px 0px 15px 0px;
    }

    .blog-content{

        margin:0px;
    }
}

@media screen and (max-width:600px) {
    .img-box {
        box-sizing:border-box;
        height: 300px !important;
        width: 100% !important;
        margin:0 auto;
    }
    .blog-content{
        padding: 40px 20px;
    }
    
    
}

/*blog section*/

/*TEAM*/
.team-section{
    background:var(--theme3);
}

.team-wrapper{
    width:1000px;
    margin:0 auto;
    padding: 100px 20px 100px 20px;
}

.team-wrapper .heading-div{
    margin: 0px 0px 110px 0px;
    text-align: center;
}

.team-wrapper .heading-part2 {
    font-size: 40px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.member {
    box-shadow: 0 0 5px 2px var(--fourth-color);
    transition: box-shadow 0.3s ease;
    height: auto;
    border-radius: 10px;
    background: var(--theme);
}

.member-socials i{
    font-size: 40px !important;
    margin: 10px 0px;
    color:#fff !important;
}

.member-socials i:hover{
    color:var(--primary-color) !important;
}

.member-details{
    padding: 20px 10px;
    text-align: center;
}

.member-details p{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
    gap:10px;
    margin-bottom: 20px;
}

.member-details strong{
    font-family: var(--font-heading);
    font-size:20px;
}

.member-details i{
    font-size: 14px;
}

.member-details .bx{
    color:var(--primary-color);
    font-size:18px;
}

.member:hover {
    box-shadow: 0 0 10px 3px var(--fourth-color), 0 0 15px 5px rgba(255, 255, 255, 0.4);
    background: var(--theme2);
}

.member:hover > .image-div {
    filter: grayscale(0%);
    box-shadow: 0 0 10px 3px var(--fourth-color), 0 0 15px 5px rgba(255, 255, 255, 0.4);
}

@media screen and (max-width:1000px){
    .team-wrapper{
        width:auto;
        padding: 30px 20px;
    }

    .member{
        margin-bottom: 80px;
    }
}
/*TEAM*/

/*SERVICES*/
.services-section{
    padding: 120px 20px;
}

.service-section{
    padding: 120px 20px;
    background: var(--theme3);
}

.services-wrapper{
    width:1000px;
    margin: 0 auto;
}

#web-application-section{
    background: var(--theme);
}

/*FLIP*/
@media screen and (max-width:600px){
    #web-application-section .service-wrapper.grid{
        display: flex !important;
        flex-direction: column-reverse;
    }

    #pos-system-section .service-wrapper.grid{
        display: flex !important;
        flex-direction: column-reverse;
    }
}

#tourism-website-section{
    background: 
        var(--misvis-bg),
        var(--overlay);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: fixed;
}

.service-wrapper{
    width:1000px;
    margin: 0 auto;
}

.services-wrapper .heading-div{
    text-align: center;
    margin-bottom: 40px;
}

.services-wrapper .grid .service-card .bx{
    font-size:60px;
}

.services-wrapper .grid .service-card {
    position: relative;
    background: var(--gradient2);
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    overflow: hidden;
    height:200px;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transform: skewX(-25deg);
    transition: left 0.5s ease-out;
}

.service-card:hover::before {
    left: 150%;
    transition: left 0.5s ease-out;
}

.service-name{
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary-color)
}

.service-item{
    margin-bottom: 20px;
}

.service-item:last-of-type{
    margin-bottom: 0px;
}

.services {
    list-style-type: none;
    padding: 0;
}

.service-item i {
    font-size: 24px;
    color: var(--fourth-color);
}

.service-info{
    display: flex;
    align-items: center;
    gap:10px;
}

@media screen and (max-width:1000px){
    .services-wrapper{
        width:auto;
    }
    .services-section{
        padding: 50px 20px;
    }
    .service-wrapper{
        width:auto;
    }
    .service-section{
        padding: 50px 20px;
    }
    .img-box.website, .img-box.travel{
        height: 400px !important;
    }
}

/*SERVICES SIDE BAR*/
.services-bar {
    position: fixed;
    top: 20%;
    left: 20px;
    width: fit-content;
    background-color: #000000d9;
    color: var(--font-body-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.services-bar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.services-bar li {
    margin-bottom: 15px;
}

.services-bar li {
    color: var(--font-body-color);
    text-decoration: none;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    padding: 10px;
    transition: background-color 0.3s ease-in-out;
    font-size: 16px;
    cursor: pointer;
}

.services-bar li:hover {
    background-color: var(--primary-color);
    border-radius: 5px;
    color: var(--font-body-color) !important;
}

.services-bar i {
    font-size: 24px;
    color: var(--fourth-color);
}


.services-bar.active {
    transform: translateX(0);
    opacity: 1;
}


.sidebar-toggle {
    position: fixed;
    top: 45%;
    left: 20px; 
    transform: translateY(-50%);
    background-color: var(--overlay3);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    display: none;
    transition: left 0.3s ease;
}

.sidebar-toggle i {
    font-size: 30px;
    color: var(--font-body-color);
}


.sidebar-toggle.active i {
    transform: rotate(180deg);
}

.services-bar.active + .sidebar-toggle {
    left: 80px;
}

@media (max-width: 1000px) {

    .sidebar-toggle {
        top: 20px;
        left: 20px; 
        transform: translateY(0);
    }

    .services-bar {
        top: 0; 
    }

    .services-bar.active + .sidebar-toggle {
        left: 80    px;
    }
}

/*SERVICES*/

/*CONTACT*/
.contact-form {
    padding: 40px 20px;
    background: var(--theme2);
    border-radius: 20px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 2px var(--fourth-color);
}

.input-box{
    margin-bottom: 20px;
}

.input-box:last-of-type{
    margin-bottom: 0px;
}

.input-div {
    border: 2px solid var(--fourth-color);
    padding: 5px 10px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    margin-top: 10px;
}

.input-div .bx {
    color: var(--fourth-color);
    font-size: 25px;
}

.input-div input, .input-div textarea {
    border: none;
    outline: none;
    background: none;
    width: 100%;
    font-size: 16px;
    padding: 10px 15px;
}

.input-div textarea{
    height: 150px;
}

.input-div.mess{
    border-radius: 20px;

}

.input-div:focus-within {
    border: 2px solid var(--primary-color);
}

.input-div:focus-within > .bx {
    color: var(--primary-color);
}

/*CONTACT*/

/*Footer*/

.footer-section {
    background: var(--tertiary-color);
}

.footer-nav-section {
    background: #2f2f2f;
}

.footer-wrapper {
    width: 1000px;
    margin: 0 auto;
    padding: 50px 20px 20px 20px;
    align-items: center;

}

.social-icons{
    width: 1000px;
    margin: 0 auto;
    padding:30px 20px 50px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.social-icons div {
    background: var(--gradient-btn);
    height:40px;
    width:40px;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.5s;
    cursor:pointer;
    border:2px solid #fff;
}

.social-icons div:hover {
    background: var(--primary-color);
}


.social-icons div i{
    font-size:20px;
}

.footer-wrapper div p{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-logo-div{
    display:flex;
    align-items:center;
    gap:10px;
}


.footer-logo-div h2{
    font-size:30px;
}

.footer-logo-div i{
    font-size:70px;
}

.footer-nav {
    width: 1000px;
    margin: 0 auto;
    place-items: center;
    padding: 30px 0;
}

.footer-nav li {
    display: inline-block;
    margin: 0 10px;
}

.footer-nav li a {
    position: relative;
    color: var(--font-body-color); 
    text-decoration: none; 
}

.footer-nav li a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-nav li a:hover::after {
    width: 100%; 
}

.footer-menu {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

.contact-details{
    justify-self: center;
}


.contact-details p i, .address-details p i {
    border: 2px solid #fff;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--gradient-btn);
}

.address-details p i{
    width:75px;
    height:35px;
}

.contact-details p, .address-details p {
    margin: 5px 0px;
}

.address-details{
    display:flex;
    justify-self: center;
}

@media screen and (max-width:1000px){
    .footer-wrapper, .social-icons, .footer-nav{
        width: auto;
    }
}

@media screen and (max-width:899px){
    .footer-logo-div{
        margin-bottom:30px;
    }
    .footer-logo-div, .contact-details p, .address-details p{
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
    }

    .address-details p i{
        width:40px;
        height:40px;
    }

    .footer-nav ul{
        flex-direction:column;

    }
    .footer-nav ul li {
        text-align:center;
    }
}

/*Footer*/

/* MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: var(--theme2);
    padding: 20px;
    border-radius: 10px;
    width: 900px;
    max-width: 100%;
    margin: -30% auto 0;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
}

.close-modal:hover {
    color: var(--primary-color);
}

#modal-body {
    margin-top: 20px;
}

/*PLAYGROUND*/
.input-area textarea {
    width: 100%;
    height: 205px;
    outline: none;
}

.output-area iframe {
    width: 100%;
    height: 595px;
    border: none;
    background: #f9f9f9;
}

.nogap{
    gap:10px;
}

.playground-buttons{
    display: flex;
    justify-content: flex-end;
    margin:0px !important;
}

.CodeMirror {
    border:1px solid var(--secondary-color) !important;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace !important;
    height: 290px !important;
}

@media screen and (max-width:999px){
    .playground-wrapper.two{
        width:100%;
        grid-template-columns: 1fr !important;
        box-sizing: border-box;
    }
}

/*SHOP*/
.product-list-section{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:10px;
}

.shop-wrapper{
    gap:10px;
}

.product{
    background: var(--theme2);
    padding: 10px;
}

.product img{
    width: 100%;
    height: 150px; 
    object-fit: cover;
    object-position: top;
    border-radius: 10px; 
}

.product-details{
    padding: 5px;
}

.product-details h3{
    font-size: 20px;
    margin-bottom: 10px;
    cursor: pointer;
}

.product-details h3:hover{
    color: var(--primary-color);
}

.price{
    font-size: 14px;
    font-style: italic;
}

.buy-btn, .cart-btn{
    width: 100%;
}

.cart-btn{
    background: var(--gradient2);
}


@media screen and (max-width:1000px){
    .product-list-section{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:600px){
    .product-list-section{
        grid-template-columns: 1fr;
    }
}

.product-image-wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.tabs {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.tabs li {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: none;
    background-color: var(--theme2);
    transition: background-color 0.3s;
}

.tabs li:hover {
    background-color: var(--primary-color);
}

.tabs li.active {
    background-color: var(--secondary-color);
    font-weight: bold;
    border-top: 2px solid var(--primary-color);
}

.product-image {
    padding: 5px;
    background-color: var(--secondary-color);
    height: 400px;
    overflow-y: auto;
    border-bottom: 5px solid var(--secondary-color);
}

.product-image img{
    width: 100%;
    object-fit: cover;
    object-position: top;
}

/*SHOP*/

/*CHECKOUT*/
.checkoutlist div{
    border: 1px solid #2f2f2f;
    padding: 20px;
    display: flex;
    align-items: center;
}

.checkoutlist div img{
    width:110px;
}

@media screen and (max-width: 768px) {
    .checkoutlist {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .checkoutlist img {
        width: 100%; 
        height: auto;
    }

    .checkoutlist div {
        padding: 10px;
    }

    .checkoutlist h3, .checkoutlist div {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .checkoutlist {
        grid-template-columns: 1fr; 
        padding: 10px;
    }

    .checkoutlist h3, .checkoutlist div {
        font-size: 15px;
    }
}

.bxs-x-circle{
    color: red;
    font-size: 25px;
}

.total-wrapper{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding:20px 0px;
}

.information-wrapper{
    padding: 20px 20px;
    background: var(--theme3);
    margin-top:40px;

}

.information-wrapper input[type="email"] {
    padding: 10px 5px;
    outline: none;
    border: 50px;
    width: 250px;
    color:#444;
    margin-bottom: 10px;
}

.payment-wrapper{
    display: flex;
    justify-content: flex-end;
}

.payment-method{
    display: flex;
    align-items: center;
    gap:10px;
}

.payment-method img{
    width:40px;
}

/*PAGTINATION*/
.pagination-wrapper{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap:10px;
    margin-top: 40px;
}

.pagination-wrapper select{
    background: var(--theme);
    border:none;
    padding: 10px;
    outline:none;
}

.pagination-wrapper select option{
    border:none;
    
}

.pagination-wrapper span{
    padding:8px;
    background: var(--tertiary-color);
    display: inline-block;
    text-align: center;
    width:40px;
    font-size:13px;
    cursor: pointer;
}

.pagination-wrapper i{
    font-size:13px;
}

.pagination-wrapper span:hover{
    background: var(--primary-color);
}

@media screen and (max-width:999px) {
    .pagination-wrapper{
        justify-content: flex-start;
        margin-top:20px;
        margin-bottom:20px;
    }
}

/*PAGTINATION*/

/*SHARE*/
.post-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top:20px;
}

.post-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-buttons-singular{
    display: flex;
    align-items: center;
    gap:10px;
    background: var(--gradient2);
    padding: 5px;
}

.post-buttons a button{
    margin-top:0px;
}

.post-buttons i, .post-buttons-singular i{
    cursor: pointer;
    font-size:20px;
}

.post-buttons i:hover, .post-buttons-singular i:hover{
    color: var(--primary-color);
}


.disabled {
    background-color: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
    text-decoration: none;
    border: none;
}
