/* ==========================
   GOOGLE FONT
========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background: linear-gradient(
        135deg,
        #0f0f0f 0%,
        #181818 25%,
        #222831 55%,
        #111111 100%
    );
    color: #fff;
    
}

/* ==========================
NAVBAR
========================== */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 9%;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:999;
}

.logo{
    font-size:30px;
    font-weight:700;
    letter-spacing:3px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-weight:500;
}

nav a:hover{
    color:#d4af37;
}

/* ==========================
HERO
========================== */

.project-hero{

    width:100%;
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:90px;

    padding:160px 10% 100px;

}

.project-left{

    flex:1;

}

.project-left img{

    width:100%;
    border-radius:25px;

    box-shadow:
    0 30px 60px rgba(0,0,0,.45);

    transition:.5s;

}

.project-left img:hover{

    transform:scale(1.04);

}

.project-right{

    flex:1;

}

.project-category{

    display:inline-block;

    background:#d4af37;

    color:#000;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    margin-bottom:25px;

    font-weight:600;

}

.project-right h1{

    font-size:58px;

    line-height:1.1;

    margin-bottom:25px;

}

.project-description{

    color:#b8b8b8;

    font-size:18px;

    line-height:1.8;

    margin-bottom:45px;

}

/* ==========================
DETAILS
========================== */

.project-details{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.project-details div{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    padding:30px;

    border-radius:18px;

    transition:.35s;

}

.project-details div:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

}

.project-details span{

    color:#999;

    font-size:13px;

    text-transform:uppercase;

}

.project-details h3{

    margin-top:10px;

    font-size:20px;

}

/* ==========================
GALLERY
========================== */

.project-gallery{

    padding:120px 10%;

}

.project-gallery h2{

    font-size:46px;

    text-align:center;

    margin-bottom:70px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

}

.gallery-grid img{

    width:100%;

    border-radius:22px;

    transition:.5s;

    cursor:pointer;

    box-shadow:0 15px 45px rgba(0,0,0,.45);

}

.gallery-grid img:hover{

    transform:translateY(-10px) scale(1.02);

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:1000px){

.project-hero{

    flex-direction:column;

    text-align:center;

}

.project-right h1{

    font-size:42px;

}

.project-details{

    grid-template-columns:1fr;

}

}
/* ==========================
   CONTACT SECTION
========================== */

.contact-card{

    max-width:1100px;
    margin:120px auto;
    padding:70px 50px;

    border-radius:30px;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(135deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.02));

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    text-align:center;

    box-shadow:
    0 20px 80px rgba(0,0,0,.45);

}

.contact-card::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:#FFD233;

    filter:blur(170px);

    opacity:.25;

    top:-120px;
    left:-120px;

}

.contact-card::after{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    background:#4F46E5;

    filter:blur(170px);

    opacity:.18;

    bottom:-120px;
    right:-120px;

}

.contact-content{

    position:relative;
    z-index:2;

}

.contact-content h2{

    font-size:52px;
    margin-bottom:20px;

    font-weight:700;

}

.contact-content p{

    font-size:20px;

    color:#d4d4d4;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.contact-box{

    display:inline-block;

    margin-top:45px;

    padding:22px 45px;

    border-radius:18px;

    background:#FFD233;

    color:#111;

    transition:.35s;

    cursor:pointer;

}

.contact-box:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 60px rgba(255,210,51,.45);

}

.contact-box span{

    display:block;

    font-size:15px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.contact-box h3{

    font-size:36px;

    font-weight:700;

}
/*==========================
COMING SOON
===========================*/

.coming-soon{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px;

    background:

    radial-gradient(circle at top left,#ffe9a8 0%,transparent 30%),

    radial-gradient(circle at bottom right,#ffd54d 0%,transparent 35%),

    linear-gradient(135deg,#ffffff,#fafafa);

}

.coming-card{

    width:100%;

    max-width:950px;

    background:white;

    border-radius:35px;

    padding:80px;

    text-align:center;

    position:relative;

    overflow:hidden;

    border:2px solid rgba(212,175,55,.25);

    box-shadow:

    0 30px 90px rgba(0,0,0,.15);

}

.coming-card::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:radial-gradient(circle,#FFD700,transparent 70%);

    filter:blur(100px);

    top:-220px;

    left:-220px;

    opacity:.45;

}

.coming-logo{

    font-size:40px;

    font-weight:800;

    letter-spacing:5px;

    color:#D4AF37;

    margin-bottom:30px;

}

.coming-card h1{

    font-size:95px;

    font-weight:800;

    margin-bottom:15px;

    color:#111;

}

.coming-card h1 span{

    color:#D4AF37;

}

.divider{

    width:180px;

    height:4px;

    margin:30px auto;

    background:

    linear-gradient(to right,

    transparent,

    #D4AF37,

    transparent);

}

.coming-card p{

    color:#666;

    font-size:22px;

    line-height:1.8;

}

.phone-box{

    display:inline-flex;

    align-items:center;

    gap:20px;

    margin-top:60px;

    padding:22px 40px;

    border-radius:70px;

    background:white;

    border:2px solid #D4AF37;

    box-shadow:

    0 15px 45px rgba(212,175,55,.25);

    transition:.35s;

}

.phone-box:hover{

    transform:translateY(-8px);

    box-shadow:

    0 25px 60px rgba(212,175,55,.35);

}

.phone-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:

    linear-gradient(135deg,#FFD700,#D4AF37);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:30px;

}

.phone-box small{

    display:block;

    color:#777;

    font-size:16px;

}

.phone-box h2{

    color:#D4AF37;

    font-size:38px;

    margin-top:6px;

}

/* ==========================
   MOBILE OPTIMIZATION
========================== */

.gallery-grid img{
    display:block;
    height:auto;
}

@media (max-width: 600px){

    .navbar{
        padding:16px 5%;
    }

    .logo{
        font-size:22px;
        letter-spacing:2px;
    }

    nav{
        gap:16px;
    }

    nav a{
        font-size:13px;
    }

    .project-gallery{
        padding:100px 5% 50px;
    }

    .project-gallery h2{
        font-size:32px;
        margin-bottom:35px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .gallery-grid img{
        width:100%;
        max-width:100%;
        border-radius:16px;
    }
}

@media (min-width: 601px) and (max-width: 900px){

    .project-gallery{
        padding-left:6%;
        padding-right:6%;
    }

    .gallery-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:24px;
    }
}

/* ===== PROJECT 3 MOBILE FULL-FIT FIX ===== */
html, body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

img, video, iframe{
    max-width:100%;
}

@media (max-width:600px){

    .navbar{
        padding:14px 5%;
        gap:10px;
    }

    .logo{
        font-size:22px;
        letter-spacing:2px;
        white-space:nowrap;
    }

    nav{
        gap:12px;
        flex-wrap:nowrap;
    }

    nav a{
        font-size:12px;
        white-space:nowrap;
    }

    .project-hero{
        width:100%;
        min-height:auto;
        padding:115px 5% 60px;
        gap:35px;
        flex-direction:column;
    }

    .project-left,
    .project-right{
        width:100%;
        min-width:0;
        flex:none;
    }

    .project-left img{
        width:100%;
        height:auto;
    }

    .project-right h1{
        font-size:38px;
        line-height:1.15;
        overflow-wrap:anywhere;
    }

    .project-description{
        font-size:16px;
        line-height:1.7;
        margin-bottom:30px;
    }

    .project-details{
        grid-template-columns:1fr;
        width:100%;
    }

    .project-details div{
        padding:22px;
    }

    .project-gallery{
        width:100%;
        padding:70px 5% 45px;
    }

    .project-gallery h2{
        font-size:32px;
        line-height:1.2;
        margin-bottom:35px;
    }

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

    .gallery-grid img{
        width:100%;
        height:auto;
        max-width:100%;
        border-radius:16px;
    }

    .contact-card{
        width:90%;
        margin:70px auto;
        padding:45px 20px;
    }

    .contact-content h2{
        font-size:34px;
        line-height:1.2;
    }

    .contact-content p{
        font-size:16px;
        line-height:1.7;
    }

    .contact-box{
        max-width:100%;
        padding:18px 20px;
        margin-top:30px;
    }

    .contact-box h3{
        font-size:26px;
        overflow-wrap:anywhere;
    }

    .coming-soon{
        width:100%;
        padding:100px 10px 25px;
    }

    .coming-card{
        width:100%;
        padding:35px 15px;
    }

    .coming-logo{
        font-size:27px;
        letter-spacing:3px;
    }

    .coming-card h1{
        font-size:clamp(40px,14vw,58px);
        line-height:1.05;
        overflow-wrap:anywhere;
    }

    .coming-card p{
        font-size:16px;
        line-height:1.7;
    }

    .phone-box{
        width:100%;
        max-width:100%;
        padding:14px;
        gap:10px;
        border-radius:35px;
        justify-content:center;
    }

    .phone-icon{
        width:48px;
        height:48px;
        flex:0 0 48px;
        font-size:22px;
    }

    .phone-box small{
        font-size:11px;
    }

    .phone-box h2{
        font-size:21px;
        overflow-wrap:anywhere;
    }
}


/* ==========================================================
   FINAL MOBILE FIX - CONTACT CARD
   ========================================================== */

@media (max-width: 600px) {

    .contact-card {
        width: calc(100% - 20px) !important;
        max-width: none !important;
        margin: 70px auto 30px !important;
        padding: 45px 16px 35px !important;
    }

    .contact-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-content h2 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 34px !important;
        line-height: 1.15 !important;
        margin: 0 auto 20px !important;
        text-align: center !important;
        letter-spacing: 0 !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;
    }

    .contact-content p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.7 !important;
        text-align: center !important;
        overflow-wrap: anywhere !important;
    }

    .contact-box {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px 12px !important;
        margin-top: 30px !important;
    }

    .contact-box span {
        font-size: 13px !important;
    }

    .contact-box h3 {
        font-size: 28px !important;
        line-height: 1.25 !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }
}

@media (max-width: 380px) {

    .contact-card {
        width: calc(100% - 12px) !important;
        padding: 38px 12px 28px !important;
    }

    .contact-content h2 {
        font-size: 31px !important;
    }

    .contact-content p {
        font-size: 15px !important;
    }

    .contact-box h3 {
        font-size: 25px !important;
    }
}
/* Upcoming Pages - Black PIXORA Logo */
.navbar .logo {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}
/* Web Development Page - White PIXORA */
.navbar .logo {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}
.upcoming-page .navbar .logo {
    color: #000 !important;
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: initial !
important;
    background-clip: initial !important;
    -webkit-text-fill-color: #000 !important;
    text-shadow: none !important;
    display: block !important;
}
/* UPCOMING PAGES - BLACK NAV LINKS */

.upcoming-page .navbar nav a {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
}