*{
margin:0;
padding:0;
box-sizing:border-box;
}





/* HIDE SCROLLBAR - KEEP SCROLL WORKING */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* IE / old Edge */
body {
  -ms-overflow-style: none;
}






/* SPINNER */
.spinner{
  position:relative;
  width:60px;
  height:60px;

  /* smoother rotation */
  animation: spin 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DOT BASE */
.spinner span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;

  top:50%;
  left:50%;

  background:#e53935;

  /* smoother fade */
  animation: fade 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DEPTH (IMPORTANT 🔥) */
.spinner span:nth-child(1){ transform: translate(-50%, -50%) rotate(0deg) translateY(-20px) scale(1); }
.spinner span:nth-child(2){ transform: translate(-50%, -50%) rotate(45deg) translateY(-20px) scale(0.9); }
.spinner span:nth-child(3){ transform: translate(-50%, -50%) rotate(90deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(4){ transform: translate(-50%, -50%) rotate(135deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(5){ transform: translate(-50%, -50%) rotate(180deg) translateY(-20px) scale(0.6); }
.spinner span:nth-child(6){ transform: translate(-50%, -50%) rotate(225deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(7){ transform: translate(-50%, -50%) rotate(270deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(8){ transform: translate(-50%, -50%) rotate(315deg) translateY(-20px) scale(0.9); }

/* DELAYS */
.spinner span:nth-child(1){ animation-delay:-1.6s; }
.spinner span:nth-child(2){ animation-delay:-1.4s; }
.spinner span:nth-child(3){ animation-delay:-1.2s; }
.spinner span:nth-child(4){ animation-delay:-1.0s; }
.spinner span:nth-child(5){ animation-delay:-0.8s; }
.spinner span:nth-child(6){ animation-delay:-0.6s; }
.spinner span:nth-child(7){ animation-delay:-0.4s; }
.spinner span:nth-child(8){ animation-delay:-0.2s; }

/* ROTATION */
@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* FADE */
@keyframes fade{
  0%{ opacity:1; }
  50%{ opacity:0.3; }
  100%{ opacity:1; }
}



#loader{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;

  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}

#loader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}







body{
background:#000;
color:white;
font-family:'Poppins',sans-serif;
line-height:1.5;
padding-top: 5rem;
}


/* GLOBAL CONTAINER */

.container{
width:min(1200px,92%);
margin:auto;
}





/* ===============================
   PREMIUM HEADER REPLACE
=============================== */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;

  display: flex;
  justify-content: center;

  padding: 14px 0;

  transition: transform .35s ease, opacity .35s ease;
  will-change: transform;
}

.nav.hide{
  transform: translateY(-110%);
  opacity: .2;
}

.nav.show{
  transform: translateY(0);
  opacity: 1;
}

.nav-inner{
  width:min(1200px,92%);
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:14px 24px;
  border-radius:26px;

  /* LIGHT PREMIUM GLASS */
  background: linear-gradient(
    145deg,
    rgba(245,245,245,.95),
    rgba(220,220,220,.88)
  );

  border: 1px solid rgba(255,255,255,.7);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  position:relative;
  overflow:hidden;

  /* 3D DEPTH */
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,.9),
    inset 0 -6px 12px rgba(0,0,0,.08),
    0 10px 25px rgba(0,0,0,.18),
    0 18px 40px rgba(0,0,0,.12);
}





/* SHINY EFFECT */
.nav-inner::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:50%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );
  transform:skewX(-25deg);
  animation:navShine 6s linear infinite;
}

@keyframes navShine{
  100%{ left:140%; }
}

.logo img{
  height:42px;
  position:relative;
  z-index:2;
}

.menu{
  display:flex;
  gap:28px;
  position:relative;
  z-index:2;
}

.menu a{
  color:#000000;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:.3s;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#e53935;
  transition:.3s;
}

.menu a:hover{
  color:#e53935;
}

.menu a:hover::after{
  width:100%;
}

.menu-toggle{
  width:42px;
  height:42px;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  position:relative;
  z-index:2;
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#fff;
  margin:auto;
  transition:.35s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}


/* ===============================
   FINAL CREATIVE MOBILE PILLS
=============================== */
.mobile-menu{
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 99998;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;

  pointer-events: none;
}

.mobile-menu a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: 88vw;

  /* TIGHTER FIT */
  padding: 12px 20px;

  /* LESS ROUNDED */
  border-radius: 18px;

  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;

  /* SOLID PREMIUM RED */
  background: #9f1111;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 10px 22px rgba(0,0,0,.22),
    0 0 14px rgba(229,57,53,.12);

  opacity: 0;
  visibility: hidden;
  transform: translateX(40px) scale(.94);

  transition:
    opacity .4s ease,
    transform .4s cubic-bezier(.22,1,.36,1),
    visibility .4s ease;
}

/* ONLY SHOW WHEN ACTIVE */
.mobile-menu.active{
  pointer-events: auto;
}

.mobile-menu a.show{
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.menu a.active{
  color:#e53935;
}

.menu a.active::after{
  width:100%;
}

.mobile-menu a.active{
  background:#e53935;
}







@media(max-width:900px){
  .menu{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .nav{
    padding:10px 0;
  }

  .nav-inner{
    width:94%;
    border-radius:18px;
    padding:12px 16px;
  }

  .logo img{
    height:36px;
  }
}
















/* ===================================
PORTFOLIO HERO
=================================== */

.portfolio-hero{

    position:relative;

    overflow:hidden;

    background:#050505;

    padding:180px 0 150px;

    text-align:center;

}

.portfolio-glow{

    position:absolute;

    width:700px;
    height:700px;

    background:radial-gradient(circle,
    rgba(229,57,53,.15),
    transparent 70%);

    left:50%;
    top:-250px;

    transform:translateX(-50%);

    pointer-events:none;

}

.portfolio-hero .container{

    position:relative;
    z-index:2;

}

.portfolio-label{

    display:inline-block;

    color:#e53935;

    letter-spacing:5px;

    font-size:.85rem;

    font-weight:700;

    margin-bottom:22px;

}

.portfolio-title{

    font-size:clamp(3.2rem,7vw,5.5rem);

    line-height:1.05;

    color:#fff;

    margin-bottom:30px;

    font-weight:800;

}

.portfolio-title span{

    color:#e53935;

}

.portfolio-subtitle{

    max-width:760px;

    margin:auto;

    color:#bdbdbd;

    font-size:1.15rem;

    line-height:1.9;

}





/* ==========================
PORTFOLIO BUTTONS
========================== */

.portfolio-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:50px;
    flex-wrap:wrap;
}

.portfolio-buttons .btn-primary,
.portfolio-buttons .btn-secondary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:210px;
    height:60px;

    padding:0 32px;

    text-decoration:none;
    font-size:1rem;
    font-weight:600;

    border-radius:14px;

    transition:.35s ease;

}

/* PRIMARY */

.portfolio-buttons .btn-primary{

    background:#e53935;
    color:#fff;
    border:2px solid #e53935;

}

.portfolio-buttons .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(229,57,53,.35);

}

/* SECONDARY */

.portfolio-buttons .btn-secondary{

    background:#111;
    color:#fff;
    border:2px solid #2a2a2a;

}

.portfolio-buttons .btn-secondary:hover{

    background:#1a1a1a;

    transform:translateY(-4px);

}









/* ===================================
STATS
=================================== */

.portfolio-stats{

    background:#ffffff;

    padding:90px 0;

}

.portfolio-stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    background:#fff;

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    border:1px solid #ececec;

    transition:.35s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.05);

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box h2{

    font-size:3rem;

    color:#111;

    margin-bottom:12px;

}

.stat-box p{

    color:#777;

    font-size:1rem;

}

@media(max-width:900px){

.portfolio-stats .container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

 .portfolio-buttons{

        flex-direction:column;
        width:100%;

    }

    .portfolio-buttons .btn-primary,
    .portfolio-buttons .btn-secondary{

        width:100%;
        max-width:320px;

    }

.portfolio-stats .container{

grid-template-columns:1fr;

}

.portfolio-hero{

padding:150px 0 120px;

}

}






/* ====================================
PORTFOLIO NAVIGATION
==================================== */

.portfolio-nav{

    padding:140px 0;

    background:#fff;

}

.portfolio-nav-head{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}

.portfolio-nav-head span{

    color:#e53935;

    letter-spacing:5px;

    font-size:.85rem;

    font-weight:700;

}

.portfolio-nav-head h2{

    font-size:clamp(2.5rem,5vw,4rem);

    color:#111;

    margin:20px 0;

    line-height:1.1;

}

.portfolio-nav-head p{

    color:#666;

    font-size:1.1rem;

    line-height:1.8;

}

.portfolio-nav-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.portfolio-card{

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:24px;

    padding:35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-decoration:none;

    transition:.35s;

    color:inherit;

}

.portfolio-card:hover{

    transform:translateY(-8px);

    border-color:#e53935;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.portfolio-card h3{

    font-size:1.7rem;

    color:#111;

    margin-bottom:12px;

}

.portfolio-card p{

    color:#666;

    line-height:1.7;

    max-width:350px;

}

.portfolio-card span{

    font-size:2rem;

    color:#e53935;

    transition:.3s;

}

.portfolio-card:hover span{

    transform:translateX(8px);

}

@media(max-width:900px){

.portfolio-nav-grid{

grid-template-columns:1fr;

}

}





.portfolio-showcase{

    background:#fff;

    padding:140px 0;

}

.showcase-head{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.showcase-head span{

    color:#e53935;

    letter-spacing:5px;

    font-size:.85rem;

    font-weight:700;

}

.showcase-head h2{

    font-size:clamp(3rem,6vw,4.5rem);

    margin:18px 0;

    color:#111;

}

.showcase-head p{

    color:#666;

    line-height:1.9;

    font-size:1.1rem;

}

.featured-image{

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);

}

.featured-image img{

    width:100%;

    display:block;

    transition:.6s;

}

.featured-image:hover img{

    transform:scale(1.03);

}










.portfolio-gallery{

    padding:120px 0 160px;

    background:#fff;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    display:block;
    aspect-ratio:4/3;

}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}




.portfolio-info{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:18px;

}

.portfolio-info h3{

    font-size:1rem;

    color:#111;

    font-weight:600;

}

.like-btn{

    display:flex;

    align-items:center;

    gap:8px;

    border:none;

    background:none;

    cursor:pointer;

    font-size:.95rem;

    color:#777;

    transition:.3s;

    padding:0;

}

.heart{

    width:22px;

    height:22px;

    fill:none;

    stroke:#999;

    stroke-width:2;

    transition:.3s ease;

}

.like-btn.active .heart{

    fill:#e53935;

    stroke:#e53935;

    animation:heartPop .35s;

}

.like-btn.active{

    color:#e53935;

}

@keyframes heartPop{

0%{

transform:scale(1);

}

50%{

transform:scale(1.3);

}

100%{

transform:scale(1);

}

}


@media(max-width:992px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.gallery-grid{

grid-template-columns:1fr;

}

}
























.site-footer{
  background:#000;
  color:#fff;
  padding:clamp(4rem,8vw,6rem) 0 2rem;
}

/* CONTAINER */
.footer-container{
  width:min(1100px,92%);
  margin:auto;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:2rem;
}

/* LOGO */
.footer-logo{
  font-size:1.8rem;
  font-weight:800;
  margin-bottom:1rem;
}

/* TEXT */
.footer-brand p{
  color:#aaa;
  max-width:300px;
  line-height:1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4{
  margin-bottom:1rem;
}

.footer-links a{
  display:block;
  color:#aaa;
  text-decoration:none;
  margin-bottom:0.5rem;
  transition:0.3s;
}

.footer-links a:hover{
  color:#fff;
}

/* CONTACT */
.footer-contact p{
  color:#aaa;
  margin-bottom:0.5rem;
}

/* SOCIAL */
.footer-social{
  margin-top:1rem;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:35px;
  height:35px;
  border:1px solid #333;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.footer-social a:hover{
  background:#c62828;
  border-color:#c62828;
}

/* CTA */
.footer-cta{
  text-align:center;
  margin-top:4rem;
}

.footer-cta h3{
  font-size:2rem;
  margin-bottom:1rem;
}

.footer-btn{
  display:inline-block;
  padding:12px 28px;
  background:#c62828;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.footer-btn:hover{
  background:#e53935;
  transform:translateY(-2px);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:3rem;
  color:#666;
  font-size:0.9rem;
}


@media (max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
    text-align:left;
  }

  .footer-cta h3{
    font-size:1.5rem;
  }

}






/*==============================
CATEGORY DIVIDER
==============================*/

.category-divider{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:70px 0;

    grid-column:1/-1;   /* Makes it span all columns inside CSS Grid */

}

.category-divider::before,
.category-divider::after{

    content:"";

    flex:1;

    max-width:180px;

    height:1px;

    background:#e7e7e7;

}

.category-divider span{

    width:8px;
    height:8px;

    margin:0 20px;

    border-radius:50%;

    background:#e53935;

    box-shadow:0 0 12px rgba(229,57,53,.35);

}