/* ===================================
   GOOGLE FONT
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===================================
   ROOT VARIABLES
=================================== */

:root{

    --primary:#00d4ff;
    --secondary:#7b61ff;
    --dark:#080808;
    --dark-light:#111111;
    --card-bg:rgba(255,255,255,0.05);

    --white:#ffffff;
    --gray:#bdbdbd;

    --transition:.4s ease;
}

/* ===================================
   GLOBAL
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--dark);
    color:var(--white);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    padding-left:20px;
}

.section{
    padding:120px 0;
}

.container{
    position:relative;
    z-index:2;
}

.section-title{
    max-width:800px;
    margin:auto;
}

.section-title h2{
    font-size:3rem;
    font-weight:800;
    margin-top:15px;
}

.section-title p{
    color:var(--gray);
    margin-top:20px;
}

.sub-title{
    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.85rem;
    font-weight:700;
}

/* ===================================
   CUSTOM SCROLLBAR
=================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#000;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        180deg,
        var(--primary),
        var(--secondary)
    );
}




/* ===================================
   NAVBAR
=================================== */

.navbar{
    padding:20px 0;
    transition:.3s;
    backdrop-filter:blur(15px);
    background:rgba(0,0,0,.6);
}

.navbar-brand{
    color:#fff !important;
    letter-spacing:2px;
}

.nav-link{
    color:#ddd !important;
    margin-left:25px;
    transition:.3s;
}

.nav-link:hover{
    color:var(--primary) !important;
}






/* ===================================
   HERO SECTION
=================================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    margin-top: 35px;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:var(--secondary);
    filter:blur(220px);
    opacity:.25;
    right:-150px;
    top:-100px;
}

.hero::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:var(--primary);
    filter:blur(220px);
    opacity:.15;
    left:-150px;
    bottom:-100px;
}

.tag{
    display:inline-block;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:25px;

}

.hero h1{
    font-size:4.5rem;
    line-height:1.1;
    font-weight:900;
    margin-bottom:25px;
}

.hero p{
    color:var(--gray);
    font-size:1.1rem;
    max-width:650px;
}

.hero-btn{
    margin-top:35px;
}

.hero-btn .btn{
    margin-right:15px;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
}

.btn-primary{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    border:none;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.hero-card{
    background:var(--card-bg);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    padding:40px;
    border-radius:30px;
}

.hero-card h3{
    margin-bottom:25px;
}

.hero-card ul li{
    margin-bottom:15px;
    color:#ddd;
}






/* ===================================
   ABOUT
=================================== */

#about h2{
    font-size:3rem;
    font-weight:800;
}

#about p{
    color:var(--gray);
    line-height:1.9;
    font-size:1.05rem;
}

/* ===================================
   SERVICES
=================================== */

.services{
    background:#0d0d0d;
}

.service-card{
    height:100%;
    background:var(--card-bg);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px;
    transition:var(--transition);
    backdrop-filter:blur(20px);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.service-card h4{
    margin-bottom:15px;
    font-weight:700;
}

.service-card p{
    color:var(--gray);
}

/* ===================================
   CASE STUDIES
=================================== */

.project-card{
    background:var(--card-bg);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:45px;
    transition:.4s;
    height:100%;
}

.project-card:hover{
    transform:translateY(-10px);
    border-color:var(--secondary);
}

.project-number{
    font-size:4rem;
    font-weight:900;
    color:rgba(255,255,255,.1);
    display:block;
    margin-bottom:20px;
}

.project-card h3{
    margin-bottom:20px;
    font-weight:700;
}

.project-card p{
    color:var(--gray);
}

.project-card ul{
    margin-top:20px;
    margin-bottom:25px;
}

.project-card ul li{
    margin-bottom:10px;
    color:#ddd;
}

.project-card a{
    color:var(--primary);
    font-weight:600;
}

/* ===================================
   PROCESS SECTION
=================================== */

.process{
    background:#0d0d0d;
}

.process-wrapper{
    margin-top:80px;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.process-item{
    background:var(--card-bg);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.process-item:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.process-item span{
    width:70px;
    height:70px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    font-weight:700;
    margin-bottom:20px;
}

.process-item h5{
    margin-bottom:15px;
    font-size:1.3rem;
}

.process-item p{
    color:var(--gray);
}

/* ===================================
   GLASS EFFECT
=================================== */

.glass{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
}

/* ===================================
   ANIMATIONS
=================================== */

@keyframes float {

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

.hero-card{
    animation:float 5s ease-in-out infinite;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

    .hero{
        text-align:center;
        padding-top:120px;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero-card{
        margin-top:50px;
    }

    .section-title h2{
        font-size:2.2rem;
    }

    #about h2{
        margin-bottom:25px;
    }

    .process-wrapper{
        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:767px){

    .hero h1{
        font-size:2.3rem;
    }

    .section{
        padding:80px 0;
    }

    .section-title h2{
        font-size:1.8rem;
    }

    .process-wrapper{
        grid-template-columns:1fr;
    }

    .project-card,
    .service-card,
    .hero-card{
        padding:25px;
    }
    .hero-btn .btn-outline-light{
        margin-top: 20px;
    }

}


/*===================================
  SKILLS SECTION
===================================*/

.skills {
    background: #080808;
}

.skill-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 15px 40px rgba(0,212,255,0.25);
}

.skill-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.skill-card p {
    color: #bdbdbd;
    line-height: 1.7;
}


/*===================================
  STATISTICS SECTION
===================================*/

.stats {
    background: linear-gradient(
        135deg,
        rgba(0,212,255,0.08),
        rgba(123,97,255,0.08)
    );
}

.stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 25px;
    transition: 0.4s;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: #7b61ff;
}

.stat-box h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        #00d4ff,
        #7b61ff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    color: #ddd;
    margin-top: 10px;
}


/*===================================
  TESTIMONIAL SECTION
===================================*/

.testimonials {
    background: #0d0d0d;
}

.testimonial-card {
    height: 100%;
    padding: 35px;
    border-radius: 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    transition: all .4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
}

.stars {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #888;
    font-size: 0.9rem;
}


/*===================================
  CALL TO ACTION
===================================*/

.cta {
    position: relative;
}

.cta-box {
    padding: 80px 50px;
    border-radius: 35px;
    background: linear-gradient(
        135deg,
        #00d4ff,
        #7b61ff
    );
    overflow: hidden;
    position: relative;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto auto 35px;
    position: relative;
}

.cta-box .btn {
    background: #080808;
    color: #ffffff;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    position: relative;
    transition: .4s;
}

.cta-box .btn:hover {
    transform: translateY(-5px);
}


/*===================================
  CONTACT SECTION
===================================*/

.contact {
    background: #080808;
}

.contact h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 15px 0 25px;
}

.contact p {
    color: #bdbdbd;
    line-height: 1.8;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
}

.contact-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form .form-control:focus {
    background: rgba(255,255,255,0.10);
    border-color: #00d4ff;
    color: white;
    box-shadow: 0 0 20px rgba(0,212,255,.3);
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
}


/*===================================
  FOOTER
===================================*/

.footer {
    padding: 35px 0;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer h3 {
    font-weight: 800;
    letter-spacing: 2px;
}

.footer p {
    color: #888;
    margin-bottom: 8px;
}


/*===================================
  RESPONSIVE DESIGN
===================================*/

@media(max-width:991px) {

    .contact h2,
    .cta-box h2 {
        font-size: 2.3rem;
    }

    .contact-form {
        margin-top: 50px;
    }

    .footer {
        text-align: center;
    }

    .footer .text-lg-end {
        margin-top: 25px;
    }
}


@media(max-width:767px) {

    .cta-box {
        padding: 60px 25px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .stat-box h2 {
        font-size: 2.3rem;
    }

    .contact-form {
        padding: 25px;
    }

}

/* PRELOADER */

.preloader{
    position:fixed;
    inset:0;
    background:#080808;
    z-index:9999;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.5s;
}


.loader{
    width:60px;
    height:60px;
    border:5px solid #222;
    border-top-color:#00d4ff;
    border-radius:50%;
    animation:spin 1s linear infinite;
}


@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}



/* SCROLL PROGRESS */

.scroll-progress{
    position:fixed;
    top:0;
    left:0;
    height:3px;
    width:0;
    background:linear-gradient(
        90deg,
        #00d4ff,
        #7b61ff
    );
    z-index:9999;
}



/* SCROLL TOP BUTTON */

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#00d4ff;
    color:#000;
    font-size:22px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:99;
}


.scroll-top.show{
    opacity:1;
    visibility:visible;
}



/* ACTIVE NAV */

.nav-link.active{
    color:#00d4ff !important;
}



/* SCROLL REVEAL */

.section{
    opacity:0;
    transform:translateY(70px);
    transition:.8s ease;
}


.section.show{
    opacity:1;
    transform:translateY(0);
}


/* TYPING TEXT */

.typing{
    color:#00d4ff;
    border-right:3px solid #00d4ff;
    padding-right:5px;
    animation:blink .7s infinite;
}


@keyframes blink{

    50%{
        border-color:transparent;
    }

}

/*===================================
  SKILLS SECTION
===================================*/

.skills {
    background: #080808;
}

.skill-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 15px 40px rgba(0,212,255,0.25);
}

.skill-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.skill-card p {
    color: #bdbdbd;
    line-height: 1.7;
}


/*===================================
  STATISTICS SECTION
===================================*/

.stats {
    background: linear-gradient(
        135deg,
        rgba(0,212,255,0.08),
        rgba(123,97,255,0.08)
    );
}

.stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 25px;
    transition: 0.4s;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: #7b61ff;
}

.stat-box h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        #00d4ff,
        #7b61ff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    color: #ddd;
    margin-top: 10px;
}


/*===================================
  TESTIMONIAL SECTION
===================================*/

.testimonials {
    background: #0d0d0d;
}

.testimonial-card {
    height: 100%;
    padding: 35px;
    border-radius: 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    transition: all .4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
}

.stars {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #888;
    font-size: 0.9rem;
}


/*===================================
  CALL TO ACTION
===================================*/

.cta {
    position: relative;
}

.cta-box {
    padding: 80px 50px;
    border-radius: 35px;
    background: linear-gradient(
        135deg,
        #00d4ff,
        #7b61ff
    );
    overflow: hidden;
    position: relative;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto auto 35px;
    position: relative;
}

.cta-box .btn {
    background: #080808;
    color: #ffffff;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    position: relative;
    transition: .4s;
}

.cta-box .btn:hover {
    transform: translateY(-5px);
}


/*===================================
  CONTACT SECTION
===================================*/

.contact {
    background: #080808;
}

.contact h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 15px 0 25px;
}

.contact p {
    color: #bdbdbd;
    line-height: 1.8;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
}

.contact-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form .form-control:focus {
    background: rgba(255,255,255,0.10);
    border-color: #00d4ff;
    color: white;
    box-shadow: 0 0 20px rgba(0,212,255,.3);
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
}


/*===================================
  FOOTER
===================================*/

.footer {
    padding: 35px 0;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer h3 {
    font-weight: 800;
    letter-spacing: 2px;
}

.footer p {
    color: #888;
    margin-bottom: 8px;
}


/*===================================
  RESPONSIVE DESIGN
===================================*/

@media(max-width:991px) {

    .contact h2,
    .cta-box h2 {
        font-size: 2.3rem;
    }

    .contact-form {
        margin-top: 50px;
    }

    .footer {
        text-align: center;
    }

    .footer .text-lg-end {
        margin-top: 25px;
    }
}


@media(max-width:767px) {

    .cta-box {
        padding: 60px 25px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .stat-box h2 {
        font-size: 2.3rem;
    }

    .contact-form {
        padding: 25px;
    }

}

/*==============================
  PREMIUM FOOTER
===============================*/

.footer {
    background: #050505;
    padding: 90px 0 25px;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.08);
}


.footer-logo {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 3px;
    text-decoration: none;
}


.footer-text {
    color: #999;
    line-height: 1.8;
    margin: 25px 0;
    padding-bottom: 25px;
}


.footer h5 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}


.footer-menu {
    list-style: none;
    padding: 0;
}


.footer-menu li {
    margin-bottom: 14px;
    color: #999;
}


.footer-menu a {
    color: #999;
    text-decoration: none;
    transition: .3s;
}


.footer-menu a:hover {
    color: #00d4ff;
    padding-left: 8px;
}


/* Social Icons */

.social-links {
    display: flex;
    gap: 15px;
}


.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .4s;
}


.social-links a:hover {
    background: linear-gradient(
        135deg,
        #00d4ff,
        #7b61ff
    );

    transform: translateY(-5px);
}


/* Contact */

.footer-contact p {
    color: #999;
    margin-bottom: 15px;
}


/* Bottom Footer */

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
}


.footer-bottom p {
    color: #777;
    margin: 0;
    font-size: 14px;
}


/* Responsive */

@media(max-width: 768px) {

    .footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}


/*==============================
  PROJECT PAGE HERO
==============================*/

.projects-hero {
    padding: 180px 0 100px;
    background: #050505;
    position: relative;
}


.projects-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0;
}


.projects-hero p {
    max-width: 750px;
    margin: auto;
    color: #bdbdbd;
    line-height: 1.8;
}


/* Breadcrumb */

.breadcrumb-area {
    margin-top: 30px;
}


.breadcrumb-area a {
    color: #00d4ff;
    text-decoration: none;
}


.breadcrumb-area span {
    color: #777;
    margin: 0 10px;
}


/* Project CTA */

.project-cta {
    padding-bottom: 120px;
    margin-top: 80px;
}


/* Responsive */

@media(max-width: 991px) {

    .projects-hero h1 {
        font-size: 3rem;
    }

}


@media(max-width: 767px) {

    .projects-hero {
        padding: 140px 0 70px;
    }


    .projects-hero h1 {
        font-size: 2.2rem;
    }

}

.projects-page{
    color: #00d4ff;
}

.projects-page{
    border: 1px solid #00d4ff;
}


/*=========================================
    PROJECT GRID
=========================================*/

.project-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

/*=========================================
    PROJECT CARD
=========================================*/

.project-item{

    position:relative;
    background:#111;
    border-radius:15px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.project-item:hover{

    transform:translateY(-12px);
    border-color:#00d4ff;
    box-shadow:
    0 25px 60px rgba(0,212,255,.15);
}


/*=========================================
    IMAGE
=========================================*/

.project-image{

    position:relative;
    overflow:hidden;
    height:360px;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.project-item:hover .project-image img{
    transform:scale(1.05);
}

/* Image Overlay */

.project-image::before{

    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.55)
    );
    opacity:0;
    transition:.4s;
    z-index:1;
}

.project-item:hover .project-image::before{

    opacity:1;
}

/*=========================================
    CATEGORY BADGE
=========================================*/

.project-category{

    display:inline-block;
    background:rgba(0,212,255,.12);
    color:#00d4ff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:18px;
}

/*=========================================
    CONTENT
=========================================*/

.project-content{

    padding:35px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.project-content h3{

    font-size:30px;
    font-weight:700;
    margin-bottom:18px;
    color:#fff;
}

.project-content h6{
    font-size: 0.9rem;
    font-weight: 400;
    margin: 18px 0 18px 0;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 3px;
}


.project-content p{

    color:#bdbdbd;
    line-height:1.9;
    margin-bottom:30px;
}

/*=========================================
    PROJECT META
=========================================*/

.project-meta{

    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:30px;
}

.project-meta span{

    background:rgba(255,255,255,.05);
    color:#ddd;
    border:1px solid rgba(255,255,255,.08);
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
}


/*=========================================
    BUTTON
=========================================*/

.project-btn{

    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
}

.project-btn i{

    transition:.35s;
}

.project-btn:hover{
    color:#00d4ff;

}

.project-btn:hover i{

    transform:translateX(8px);
}


/*=========================================
    HOVER GLOW
=========================================*/

.project-item::after{

    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(

        circle at top right,
        rgba(0,212,255,.15),
        transparent 45%
    );

    opacity:0;
    transition:.5s;
    pointer-events:none;
}

.project-item:hover::after{

    opacity:1;
}


/*=========================================
    FILTER BUTTONS
=========================================*/

.project-filter{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:60px;
}

.project-filter button{

    background:#111;
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
    padding:12px 28px;
    border-radius:50px;
    transition:.35s;
    cursor:pointer;
}

.project-filter button:hover,

.project-filter button.active{

    background:linear-gradient(
        135deg,
        #00d4ff,
        #7b61ff
    );

    border-color:transparent;
}


/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px){

.project-grid{

    grid-template-columns:1fr;
}

.projects-header h1{

font-size:3rem;

}

.project-image{

height:300px;

}

}

@media(max-width:768px){

.projects-page{

padding:90px 0;
}

.project-item{
    margin: 0 10px;
}

.projects-header{

margin-bottom:50px;

}

.projects-header h1{

font-size:2.3rem;

}

.project-content{

padding:25px;

}

.project-content h3{

font-size:24px;

}

.project-image{

height:240px;

}

.project-filter{

gap:10px;

}

.project-filter button{

padding:10px 20px;

font-size:14px;

}

}




/*===============================
 CASE STUDY HERO
================================*/


.case-hero {

padding: 180px 0 100px;
background: #050505;

}


.project-tag {

display: inline-block;
padding: 10px 20px;
border-radius: 50px;
background: rgba(0,212,255,.1);
color: #00d4ff;
font-weight: 600;
margin-bottom: 25px;

}


.case-hero h1 {

font-size: 4rem;
font-weight: 800;
line-height: 1.1;

}


.hero-text {

color: #bdbdbd;
font-size: 1.1rem;
margin: 30px 0;

}


.hero-buttons {

display:flex;
gap:15px;

}


.hero-image img {

width:100%;
border-radius:30px;
box-shadow:
0 30px 60px rgba(0,0,0,.5);

}


/* Project Info */


.project-info {

background:#0d0d0d;

}


.info-card {

height:100%;
padding:30px;
border-radius:25px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(20px);

}


.info-card h6 {

color:#00d4ff;
margin-bottom:15px;
text-transform:uppercase;
letter-spacing:1px;

}


.info-card p {

color:#fff;
margin:0;

}


/* Overview */


.overview-card {

height:100%;
padding:40px;
background:rgba(255,255,255,.05);
border-radius:30px;
border:1px solid rgba(255,255,255,.08);


}


.overview-card h3 {

margin-bottom:20px;
font-weight:700;

}


.overview-card p,
.overview-card li {

color:#bdbdbd;
line-height:1.8;

}


.overview-card ul {

margin-top:20px;

}


/* Responsive */


@media(max-width:991px){

.case-hero {

text-align:center;
padding:140px 0 80px;

}


.case-hero h1 {

font-size:2.8rem;

}


.hero-buttons {

justify-content:center;
margin-bottom:50px;

}

}


@media(max-width:767px){

.case-hero h1 {

font-size:2rem;

}


.hero-buttons {

flex-direction:column;

}

.overview-card{
    margin-top: 15px;
}


}

/*===========================
Brandidentity
===========================*/


.branding-section{

    padding:140px 0;

}

.section-number{

    font-size:14px;

    letter-spacing:4px;

    color:#00d4ff;

    font-weight:700;

    text-transform:uppercase;

}

.case-title{

    font-size:58px;

    font-weight:800;

    margin-top:20px;

}

.case-description{

    max-width:760px;

    margin:auto;

    color:#999;

    line-height:1.8;

    margin-top:20px;

}

.case-image{

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 40px 80px rgba(0,0,0,.4);

}


/*==============================
color palette
=============================*/
.color-card{

height:220px;

border-radius:24px;

display:flex;

align-items:end;

padding:20px;

font-weight:700;

color:#fff;

}

.primary{

background:#0057FF;

}

.secondary{

background:#00C6FF;

}

.dark{

background:#111;

}

.light{

background:#F6F8FB;

color:#111;

}


/*=============
typography
================*/
.type-card{

padding:60px;

border-radius:30px;

background:#111;

}

.type-card h1{

font-size:140px;

font-weight:800;

}

.type-card h3{

margin:20px 0;

}

/*=========
live project CTA
====================*/
.live-box{

padding:100px 60px;

background:linear-gradient(135deg,#0057FF,#00C6FF);

border-radius:32px;

text-align:center;

}

.live-box h2{

font-size:52px;

font-weight:800;

margin-bottom:20px;

}

.live-box p{

max-width:700px;

margin:auto auto 40px;

color:#fff;

opacity:.9;

}

@media(max-width:767px){

.live-box h2 {

font-size:2.5rem;

}

}



/*==================
Nova Derm
=====================*/

/*==============================
color palette
=============================*/
.color-card-Nova{

    height:220px;
    border-radius:24px;
    display:flex;
    align-items:end;
    padding:20px;
    font-weight:700;
    color:#fff;

}

.primary-nd{

    background:#705D3F;

}

.secondary-nd{

    background:#809671;

}

.dark-nd{

    background:#B4B897;
    color:#111;
}

.light-nd{

    background:#CCAC85;
    color:#111;

}

.shade-nd{
    background: #E3D3BC;
    color: #111;
}




/*==================
Aspire
=====================*/

/*==============================
color palette
=============================*/
.color-card-Aspire{

    height:220px;
    border-radius:24px;
    display:flex;
    align-items:end;
    padding:20px;
    font-weight:700;
    color:#fff;

}

.primary-as{

    background:#1E8E3E;

}

.secondary-as{

    background:#FF8A00;

}

.dark-as{

    background:#222222;

}

.light-as{

    background:#F5F7FA;

    color:#111;

}

.shade-as{
    background: #E6F4EA;
    color: #111;
}


/*==================
OnaSnap
=====================*/

/*==============================
color palette
=============================*/
.color-card-OnaSnp{

    height:220px;
    border-radius:24px;
    display:flex;
    align-items:end;
    padding:20px;
    font-weight:700;
    color:#fff;

}

.primary{

    background:#0C6665;

}

.secondary{

    background:#DAA017;

}

.dark{

    background:#F7EFE6;
    color:#111;
}

.light{

    background:#E6E8EB;
    color:#111;

}

.shade{
    background: #1B1F23;
    color: #fff;
}


/*==================
DUSK
=====================*/

/*==============================
color palette
=============================*/
.color-card-Dusk{

    height:220px;
    border-radius:24px;
    display:flex;
    align-items:end;
    padding:20px;
    font-weight:700;
    color:#fff;

}

.primary-Dusk{

    background:#C07A67;

}

.secondary-Dusk{

    background:#88959E;

}

.dark-Dusk{

    background:#3A3A3F;

}

.light-Dusk{

    background:#F3E9DF;

    color:#111;

}

.shade-Dusk{
    background: #FCF7F2;
    color: #111;
}

/*==================
luxe
=====================*/

/*==============================
color palette
=============================*/
.color-card-Luxe{

    height:220px;
    border-radius:24px;
    display:flex;
    align-items:end;
    padding:20px;
    font-weight:700;
    color:#fff;

}

.primary-Luxe{

    background:#121A14;

}

.secondary-Luxe{

    background:#EFA47A;

}

.dark-Luxe{

    background:#F7EBDF;
    color:#111;
}

.light-Luxe{

    background:#E3C9B1;

    color:#111;

}

.shade-Luxe{
    background: #C48F65;
    color: #111;
}

/*==================
JANInfra
=====================*/

/*==============================
color palette
=============================*/
.color-card-Jan{

    height:220px;
    border-radius:24px;
    display:flex;
    align-items:end;
    padding:20px;
    font-weight:700;
    color:#fff;

}

.primary-Jan{

    background:#0E5BAA;

}

.secondary-Jan{

    background:#E6F0FB;
    color:#111;
}

.dark-Jan{

    background:#0D1B2A;
    color:#FFF;
}

.light-Jan{

    background:#E6F4EA;
    color:#111;

}

.shade-Jan{
    background: #f1f8ff;
    color: #111;
}


/*==================
EnLaundry
=====================*/

/*==============================
color palette
=============================*/
.color-card-En{

    height:220px;
    border-radius:24px;
    display:flex;
    align-items:end;
    padding:20px;
    font-weight:700;
    color:#fff;

}

.primary-En{

    background:#0D3B66;

}

.secondary-En{

    background:#117788;
    color:#fff;
}

.dark-En{

    background:#14A3A6;
    color:#FFF;
}

.light-En{

    background:#7EC8E3;
    color:#111;

}

.shade-En{
    background: #E6F2FA;
    color: #111;
}


/*==================
AutoMozo
=====================*/

/*==============================
color palette
=============================*/
.color-card-Auto{

    height:220px;
    border-radius:24px;
    display:flex;
    align-items:end;
    padding:20px;
    font-weight:700;
    color:#fff;

}

.primary-Auto{

    background:#0E1A2B;

}

.secondary-Auto{

    background:#E30613;
    color:#fff;
}

.dark-Auto{

    background:#1B1B1B;
    color:#FFF;
}

.light-Auto{

    background:#C5CDD8;
    color:#111;

}

.shade-Auto{
    background: #FFFFFF;
    color: #111;
}



/*==================
ArchiPark
=====================*/

/*==============================
color palette
=============================*/
.color-card-Arch{

    height:220px;
    border-radius:24px;
    display:flex;
    align-items:end;
    padding:20px;
    font-weight:700;
    color:#fff;

}

.primary-Arch{

    background:#232323;

}

.secondary-Arch{

    background:#B88746;
    color:#fff;
}

.dark-Arch{

    background:#8A6335;
    color:#FFF;
}

.light-Arch{

    background:#F2ECE4;
    color:#111;

}

.shade-Arch{
    background: #FAF8F5;
    color: #111;
}




/*==================
Mocha Muse
=====================*/

/*==============================
color palette
=============================*/
.color-card-Muse{

    height:220px;
    border-radius:24px;
    display:flex;
    align-items:end;
    padding:20px;
    font-weight:700;
    color:#fff;

}

.primary-Muse{

    background:#232323;

}

.secondary-Muse{

    background:#B88746;
    color:#fff;
}

.dark-Muse{

    background:#5D6B4A;
    color:#FFF;
}

.light-Muse{

    background:#F2ECE4;
    color:#111;

}

.shade-Muse{
    background: #FAF8F5;
    color: #111;
}