/* =========================
   HERO SECTION – PREMIUM
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  color:#1a1919;
  line-height:1.7;
}
/* ===== HERO AUTO ANIMATION (NO JS) ===== */

.hero-animate-1,
.hero-animate-2,
.hero-animate-3,
.hero-animate-4{
  opacity:0;
  transform:translateY(30px);
  animation:heroFade 0.9s ease forwards;
}

.hero-animate-1{ animation-delay:0.2s; }
.hero-animate-2{ animation-delay:0.6s; }
.hero-animate-3{ animation-delay:1s; }
.hero-animate-4{ animation-delay:1.4s; }

@keyframes heroFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* NAV */
.nav{
  position:fixed;
  top:0;
  width:100%;
  background:#d1580d;
  display:flex;
  justify-content:space-around;
  align-items:center;
  padding:18px 40px;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  z-index:1000;
}
.nav a{
  margin-left:24px;
  text-decoration:none;
  color:#222;
  font-weight:500;
  margin-top: -10px;
}


/* ===== STICKY NAV AFTER HERO ===== */

.nav{
  transition:0.3s ease;
}

#navMenu a:hover{
  color: whitesmoke;
}
.nav.sticky{
  position:fixed;
  top:0;
  background:#315535;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}
/* ===== STICKY WHATSAPP CTA ===== */

.whatsapp-sticky{
  position:fixed;
  right:24px;
  bottom:24px;
  width:64px;
  height:64px;
  /* background:#25D366; */
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  text-decoration:none;
  /* box-shadow:0 12px 30px rgba(0,0,0,0.35); */
  z-index:99999;
  transition:0.3s ease;
}

.whatsapp-sticky:hover{
  transform:translateY(-6px) scale(1.05);
  /* box-shadow:0 18px 40px rgba(0,0,0,0.45); */
}

/* MOBILE SAFE */
@media(max-width:768px){
  .whatsapp-sticky{
    right:16px;
    bottom:16px;
    width:56px;
    height:56px;
    font-size:28px;
  }
}

/* spacing fix after sticky */
body.nav-active{
  padding-top:90px;
}
/* ===== MOBILE MENU ===== */

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* Mobile */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    transform:translateX(-200px);
    display:flex;
    flex-direction:column;
    align-items:left;
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
    
   
  }
  
  .nav nav a{
    margin:15px 0;
    font-size:18px;
  }

  .nav nav.open{
    max-height:400px;
    padding:20px 0;
  }
}

/* ===== NAVBAR OVER HERO IMAGE ===== */

.overlay-nav{
  position:absolute;          /* NOT fixed */
  top:0;
  left:0;
  width:100%;
  background:transparent;     /* hero image visible */
  box-shadow:none;
  z-index:10;
}

/* Logo & menu color for hero */
/* .logo{
  margin-right: 600px;
  margin-bottom: 200px;
} */

.overlay-nav nav a{
  color:#fffefe;
  font-weight:500;
}
.overlay-nav nav a:hover{
    color:#070707;
}
/* Hover underline */
.overlay-nav nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  /* background:#C0392B; */
  transition:.3s;
}

.overlay-nav nav a:hover::after,
.overlay-nav nav a.active::after{
  width:100%;
}

/* ===== HERO TOP SPACE (CONTENT NOT HIDE) ===== */
.hero{
  padding-top:120px;  /* navbar height space */
}


/* ===== HERO FIX ===== */
.hero{
  position:relative;
  height:100vh;
  background:url('images/home\ hero2.png') right center/cover no-repeat;
  display:flex;
  align-items:center;
  padding-left:80px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0, 0, 0, 0.27),
    rgba(0, 0, 0, 0.011),
    rgba(0,0,0,0)
  );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:600px;
  color:#fff;
}

/* ICON */
.hero-icon{
  font-size:52px;
  margin-bottom:18px;
}

/* TEXT */
.hero h1{
  font-family:'Playfair Display', serif;
  font-size:52px;
  line-height:1.2;
  margin-bottom:18px;
}

.hero h1 span{
  color:#ff0000;
  top:16px;
}

.hero p{
  font-size:18px;
  margin-bottom:35px;
  color:#eee;
}

/* BUTTON */
.hero-btn{
  display:inline-block;
  padding:18px 48px;
  background:rgb(255, 255, 255);
  color:#000000;
  border-radius:50px;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
  box-shadow:0 20px 40px rgba(255, 255, 255, 0.232);
}

/* ===== ANIMATION FIX ===== */
.fade-seq{
  opacity:0;
  transform:translateY(30px);
}

.fade-seq.show{
  opacity:1;
  transform:none;
  transition:0.8s ease;
}

.delay-1{transition-delay:.3s}
.delay-2{transition-delay:.6s}
.delay-3{transition-delay:.9s}

/* MOBILE */
@media(max-width:768px){
  .hero{
    padding:40px;
    background-position:center;
  }

  .hero h1{
    font-size:36px;
  }
}
/* ===== HERO ICON (PNG) ===== */
.hero-icon{
  width:90px;
  height:90px;
  margin-bottom:22px;
}

.hero-icon img{
  width:100%;
  height:auto;
  filter:drop-shadow(0 15px 25px rgba(0,0,0,0.35));
}

/* ===== HERO SEQUENCE ANIMATION (NO JS) ===== */
.hero-animate-1,
.hero-animate-2,
.hero-animate-3,
.hero-animate-4{
  opacity:0;
  transform:translateY(30px);
  animation:heroFade 0.9s ease forwards;
}

.hero-animate-1{
  animation-delay:0.2s;
  transform:scale(0.4) rotate(-20deg);
}

.hero-animate-2{ animation-delay:0.6s; }
.hero-animate-3{ animation-delay:1s; }
.hero-animate-4{ animation-delay:1.4s; }

@keyframes heroFade{
  to{
    opacity:1;
    transform:none;
  }
}

/* ===== ICON MICRO ANIMATION ===== */
.hero-icon img{
  animation:floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
/* ===== TYPING EFFECT (YELLOW WORD ONLY) ===== */

.typing-wrap{
  display:inline-block;
  position:relative;
  margin-right:8px;
}

.typing-text{
  color:#ff0800;
  
  display:inline-block;
  overflow:hidden;
  white-space:nowrap;
  border-right:3px solid #ff1500;
  width:0;
  animation:typing 3s steps(9) forwards,blink .8s infinite,erase 3s steps(9) 4s forwards;
}

/* Typing animation */
@keyframes typing{
  from{ width:0 }
  to{ width:9ch }
}

/* Cursor blink */
@keyframes blink{
  0%,100%{ border-color:transparent }
  50%{ border-color:#ffffff }
}

/* Erase animation */
@keyframes erase{
  from{ width:9ch }
  to{ width:0 }
}

/* Loop delay */
.typing-text{
  animation-iteration-count: infinite;
}

/* ===== STATS HOVER + PREMIUM ===== */

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.stat-card{
  background:#fff;
  padding:45px 25px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 15px 30px rgba(0,0,0,0.12);
  transition:0.4s ease;
  cursor:pointer;
}

.stat-card h3{
  font-size:44px;
  color:#C0392B;
  margin-bottom:12px;
}

.stat-card span{
  font-size:15px;
  letter-spacing:1px;
  color:#444;
}

/* Hover effect */
.stat-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 55px rgba(0,0,0,0.25);
}

/* Mobile */
@media(max-width:768px){
  .hero-stats{
    grid-template-columns:1fr 1fr;
  }
}
/* ===== HERO NEXT SECTION ===== */

/* .hero-next{
  background:linear-gradient(
    to right,
    #FFD700,
    #FFEB3B
  );
  padding:100px 60px;
} */

.hero-next-content{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.hero-next h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:20px;
}

.hero-next h2 span{
  color:#ff0000;
}

.hero-next p{
  font-size:18px;
  max-width:700px;
  margin:0 auto 60px;
}

/* Stats */
.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.stat-card{
  background:#fff;
  padding:40px 20px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.stat-card h3{
  font-size:42px;
  color:#ff1900;
  margin-bottom:10px;
}

.stat-card span{
  font-size:15px;
  letter-spacing:1px;
}

/* Reuse hero animation */
.hero-next .hero-animate-1,
.hero-next .hero-animate-2,
.hero-next .hero-animate-3,
.hero-next .hero-animate-4,
.hero-next .hero-animate-5,
.hero-next .hero-animate-6{
  opacity:0;
  transform:translateY(30px);
  animation:heroFade 0.9s ease forwards;
}

.hero-next .hero-animate-1{animation-delay:.2s}
.hero-next .hero-animate-2{animation-delay:.4s}
.hero-next .hero-animate-3{animation-delay:.6s}
.hero-next .hero-animate-4{animation-delay:.8s}
.hero-next .hero-animate-5{animation-delay:1s}
.hero-next .hero-animate-6{animation-delay:1.2s}

/* Mobile */
@media(max-width:768px){
  .hero-stats{
    grid-template-columns:1fr 1fr;
  }

  .hero-next{
    padding:80px 25px;
  }
}
/* ===== SIGNATURE SERVICES ===== */

.services-highlight{
  padding:120px 60px;
  background:#fff;
}

.services-content{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.services-highlight h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:20px;
}

.services-highlight h2 span{
  color:#f71b02;
}

.services-highlight p{
  max-width:650px;
  margin:0 auto 70px;
  font-size:18px;
}

/* Cards */
.service-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.service-card{
  background:#fff;
  padding:55px 30px;
  border-radius:26px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  transition:0.4s ease;
  cursor:pointer;
}

.service-card:hover{
  transform:translateY(-14px);
  box-shadow:0 30px 60px rgba(0,0,0,0.25);
}

.service-icon{
  font-size:48px;
  margin-bottom:20px;
}

.service-card h3{
  font-size:22px;
  margin-bottom:12px;
}

.service-card p{
  font-size:15px;
  color:#555;
}

/* Entrance animation */
.sec-animate-1,
.sec-animate-2,
.sec-animate-3,
.sec-animate-4,
.sec-animate-5{
  opacity:0;
  transform:translateY(30px);
  animation:heroFade 0.9s ease forwards;
}

.sec-animate-1{animation-delay:.2s}
.sec-animate-2{animation-delay:.4s}
.sec-animate-3{animation-delay:.6s}
.sec-animate-4{animation-delay:.8s}
.sec-animate-5{animation-delay:1s}

/* Mobile */
@media(max-width:768px){
  .service-cards{
    grid-template-columns:1fr;
  }

  .services-highlight{
    padding:90px 25px;
  }
}
/* ===== HOW WE WORK (TIMELINE) ===== */

/* .work-process{
  padding:120px 60px;
  background:linear-gradient(
    to right,
    #FFF8DC,
    #FFF3B0
  );
} */

.work-content{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.work-process h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:20px;
}

.work-process h2 span{
  color:#ff1c03;
}

.work-process p{
  max-width:700px;
  margin:0 auto 80px;
  font-size:18px;
}

/* Timeline */
.timeline{
  position:relative;
  max-width:900px;
  margin:auto;
}

.timeline::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:4px;
  height:100%;
  background:#f21d06;
  transform:translateX(-50%);
}

/* Items */
.timeline-item{
  display:flex;
  align-items:center;
  margin-bottom:70px;
  position:relative;
}

.timeline-item:nth-child(even){
  flex-direction:row-reverse;
}

/* Icon */
.timeline-icon{
  width:60px;
  height:60px;
  background:#fdf9f8;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  z-index:2;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* Box */
.timeline-box{
  background:#fff;
  padding:30px 35px;
  border-radius:18px;
  width:45%;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.timeline-box h3{
  margin-bottom:10px;
}

/* Animation */
.wp-animate-1,
.wp-animate-2,
.wp-animate-3,
.wp-animate-4,
.wp-animate-5,
.wp-animate-6{
  opacity:0;
  transform:translateY(30px);
  animation:heroFade 0.9s ease forwards;
}

.wp-animate-1{animation-delay:.2s}
.wp-animate-2{animation-delay:.4s}
.wp-animate-3{animation-delay:.6s}
.wp-animate-4{animation-delay:.8s}
.wp-animate-5{animation-delay:1s}
.wp-animate-6{animation-delay:1.2s}

/* Mobile */
@media(max-width:768px){
  .timeline::before{
    left:30px;
  }

  .timeline-item{
    flex-direction:row !important;
  }

  .timeline-icon{
    margin-right:20px;
  }

  .timeline-box{
    width:100%;
  }

  .work-process{
    padding:90px 25px;
  }
}
/* ===== TESTIMONIALS ===== */

.testimonials{
  padding:120px 60px;
  background:#fff;
}

.testimonials-content{
  max-width:1000px;
  margin:auto;
  text-align:center;
}

.testimonials h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:20px;
}

.testimonials h2 span{
  color:#ea1800;
}

.testimonials p{
  max-width:650px;
  margin:0 auto 60px;
  font-size:18px;
}

/* Slider */
.testimonial-slider{
  position:relative;
  max-width:700px;
  margin:auto;
}

/* Card */
.testimonial-card{
  display:none;
  background:#fff;
  padding:50px 45px;
  border-radius:24px;
  box-shadow:0 25px 55px rgba(0,0,0,0.18);
}

.testimonial-card.active{
  display:block;
}

.testimonial-card p{
  font-size:17px;
  line-height:1.8;
  margin-bottom:25px;
}

.testimonial-card h4{
  margin-bottom:6px;
}

.testimonial-card span{
  font-size:14px;
  color:#777;
}

/* Entrance animation */
.ts-animate-1,
.ts-animate-2,
.ts-animate-3{
  opacity:0;
  transform:translateY(30px);
  animation:heroFade 0.9s ease forwards;
}

.ts-animate-1{animation-delay:.2s}
.ts-animate-2{animation-delay:.4s}
.ts-animate-3{animation-delay:.6s}

/* Mobile */
@media(max-width:768px){
  .testimonials{
    padding:90px 25px;
  }
}
/* ===== CTA MAIN SECTION ===== */

.cta-main{
  position:relative;
  padding:140px 60px;
  background:url('images/Home\ page\ center\ section\ img.jpg') center/cover no-repeat;
  text-align:center;
  overflow:hidden;

}

.cta-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

/* Content */
.cta-content{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:auto;
  color:#fff;
}

.cta-main h2{
  font-family:'Playfair Display', serif;
  font-size:44px;
  margin-bottom:20px;
}

.cta-main h2 span{
  color:#FFD700;
}

.cta-main p{
  font-size:18px;
  margin-bottom:45px;
  color:#f1f1f1;
}

/* Buttons */
.cta-buttons{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.cta-btn{
  padding:18px 48px;
  font-size:17px;
  font-weight:600;
  border-radius:50px;
  text-decoration:none;
  transition:0.35s ease;
}

/* Primary */
.cta-btn.primary{
  background:#ff1900;
  color:#fff;
  box-shadow:0 18px 40px rgba(192,57,43,0.5);
}

.cta-btn.primary:hover{
  background:#fdf9f9;
  color: #070707;
  transform:translateY(-4px);
}

/* Secondary */
.cta-btn.secondary{
  background:transparent;
  color:#fff;
  border:2px solid #315535;
}

.cta-btn.secondary:hover{
  background:#315535;
  color:#ffffff;
}

/* Animation */
.cta-animate-1,
.cta-animate-2,
.cta-animate-3{
  opacity:0;
  transform:translateY(30px);
  animation:heroFade 0.9s ease forwards;
}

.cta-animate-1{animation-delay:.2s}
.cta-animate-2{animation-delay:.5s}
.cta-animate-3{animation-delay:.8s}

/* Mobile */
@media(max-width:768px){
  .cta-main{
    padding:100px 25px;
  }

  .cta-main h2{
    font-size:34px;
  }
}
/* ===== GALLERY PREVIEW ===== */

.gallery-preview{
  padding:120px 60px;
  background:#fff;
}

.gallery-content{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.gallery-preview h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:20px;
}

.gallery-preview h2 span{
  color:#ff1900;
}

.gallery-preview p{
  max-width:650px;
  margin:0 auto 70px;
  font-size:18px;
}

/* Grid */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* Card */
.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
  cursor:pointer;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

/* Overlay */
.gallery-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:0.4s ease;
}

.gallery-overlay span{
  color:#fff;
  font-size:18px;
  letter-spacing:1px;
}

/* Hover effects */
.gallery-card:hover img{
  transform:scale(1.1);
}

.gallery-card:hover .gallery-overlay{
  opacity:1;
}

/* Button */
.gallery-btn{
  margin-top:60px;
}

.gallery-btn a{
  padding:16px 42px;
  background:#ff1900;
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-weight:600;
  box-shadow:0 18px 40px rgba(255, 25, 0, 0.4);
  transition:0.3s ease;
}

.gallery-btn a:hover{
  background:#ff0000;
  transform:translateY(-4px);
}

/* Entrance animation */
.gp-animate-1,
.gp-animate-2,
.gp-animate-3,
.gp-animate-4,
.gp-animate-5,
.gp-animate-6{
  opacity:0;
  transform:translateY(30px);
  animation:heroFade 0.9s ease forwards;
}

.gp-animate-1{animation-delay:.2s}
.gp-animate-2{animation-delay:.4s}
.gp-animate-3{animation-delay:.6s}
.gp-animate-4{animation-delay:.8s}
.gp-animate-5{animation-delay:1s}
.gp-animate-6{animation-delay:1.2s}

/* Mobile */
@media(max-width:768px){
  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-preview{
    padding:90px 25px;
  }
}
/* ===== FOOTER ===== */

.site-footer{
  background:#315535;
  padding:90px 60px 30px;
}

.footer-content{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-col h3{
  font-family:'Playfair Display', serif;
  font-size:26px;
  margin-bottom:20px;
  color:#ffffff;
}

.footer-col h4{
  font-size:18px;
  margin-bottom:18px;
  color:#ffffff;
}

.footer-col p{
  font-size:15px;
  color:#ffffff;
  line-height:1.7;
}

.footer-col ul{
  list-style:none;
  padding:0;
  color: white;
}

.footer-col ul li{
  margin-bottom:12px;
  font-size:15px;
}

.footer-col ul li a{
  color:#ffffff;
  text-decoration:none;
  transition:0.3s ease;
}

.footer-col ul li a:hover{
  color:#ffffff;
}

/* Socials */
.footer-socials{
  margin-top:20px;
}

.footer-socials a{
  display:inline-block;
  margin-right:12px;
  font-size:22px;
  text-decoration:none;
  transition:0.3s ease;
}

.footer-socials a:hover{
  transform:translateY(-4px);
}

.fa-brands{
  margin-top:20px;
  border-radius: 50px;
  background-color: #ffffff;
  padding: 13px;
}
.fa-brands:hover{
  background-color: #000000;
  color: #ffffff;
}
/* Bottom */
.footer-bottom{
  margin-top:60px;
  padding-top:25px;
  border-top:1px solid rgba(15, 14, 14, 0.1);
  text-align:center;
  font-size:14px;
  color:#c9c9c9;
}

/* Mobile */
@media(max-width:768px){
  .footer-content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .site-footer{
    padding:70px 25px 30px;
  }
}
/* ===== GALLERY GRID ===== */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* ===== CARD ===== */

.gallery-card{
  position:relative;
  height:340px;
  border-radius:24px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 20px 40px rgba(250, 15, 15, 0.18);
  transition:0.4s ease;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

/* ===== DEFAULT OVERLAY (HIDDEN) ===== */

.gallery-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(255, 2, 2, 0.85),
    rgba(237, 6, 6, 0.3),
    transparent
  );
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-bottom:35px;
  transform:translateY(100%);
  transition:0.6s ease;
}

.gallery-overlay span{
  color:#fff;
  font-size:18px;
  letter-spacing:1px;
  transform:translateY(20px);
  opacity:0;
  transition:0.4s ease 0.2s;
}

/* ===== HOVER EFFECT ===== */

.gallery-card:hover{
  transform:translateY(-10px);
  box-shadow:0 35px 70px rgba(0,0,0,0.35);
}

.gallery-card:hover img{
  transform:scale(1.08);
}

.gallery-card:hover .gallery-overlay{
  transform:translateY(0);
}

.gallery-card:hover .gallery-overlay span{
  transform:translateY(0);
  opacity:1;
}

/* ===== MOBILE ===== */

@media(max-width:768px){
  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-card{
    height:260px;
  }
}

/* Slow → Fast → Slow */
@keyframes logoEaseSway{
  0%{
    transform:translateX(0);
  }
  20%{
    transform:translateX(-4px);
  }
  50%{
    transform:translateX(0);
  }
  80%{
    transform:translateX(4px);
  }
  100%{
    transform:translateX(0);
  }
}
.site-logo{
  filter:drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}
  /* HANGER CONTAINER */
.logo-hanger{
  display:inline-block;
  transform-origin:50% 0%; /* TOP CENTER = rope point */
  animation:pendulumSwing 4.5s ease-in-out infinite;
  margin-left: -300px;
  margin-top: -100px;

}

/* LOGO IMAGE */
.site-logo{
  width:70px; /* adjust */
  display:block;
}

/* PENDULUM KEYFRAMES */
@keyframes pendulumSwing{
  0%{
    transform:rotate(0deg);
  }
  20%{
    transform:rotate(-6deg);
  }
  50%{
    transform:rotate(0deg);
  }
  80%{
    transform:rotate(6deg);
  }
  100%{
    transform:rotate(0deg);
  }
}
.logo-hanger:hover{
  animation-play-state:paused;
}
.logo-hanger::before{
  content:"";
  position:absolute;
  top:-18px;
  left:50%;
  width:2px;
  height:18px;
  background:#555;
  transform:translateX(-50%);
}
/* ===== LOGO HANGER ===== */

.logo-hanger{
  position:relative;
  display:inline-block;
  transform-origin:50% 0%;
  animation:pendulumSwing 4.5s ease-in-out infinite;
}

/* ROPE */
.logo-hanger::before{
  content:"";
  position:absolute;
  top:-18px;
  left:50%;
  width:2px;
  height:18px;
  background:#444;
  transform:translateX(-50%);
}

/* LOGO IMAGE */
.site-logo{
  width:70px; /* adjust */
  display:block;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,0.35));
  transition:0.3s ease;
}

/* SHADOW SYNC (moves opposite to swing) */
.logo-hanger::after{
  content:"";
  position:absolute;
  bottom:-12px;
  left:50%;
  width:60%;
  height:8px;
  background:rgba(0,0,0,0.35);
  filter:blur(8px);
  transform:translateX(-50%);
  animation:shadowSwing 4.5s ease-in-out infinite;
}

/* PENDULUM SWING */
@keyframes pendulumSwing{
  0%{
    transform:rotate(0deg);
  }
  20%{
    transform:rotate(-6deg);
  }
  50%{
    transform:rotate(0deg);
  }
  80%{
    transform:rotate(6deg);
  }
  100%{
    transform:rotate(0deg);
  }
}

/* SHADOW MOTION (opposite direction) */
@keyframes shadowSwing{
  0%{
    transform:translateX(-50%) scaleX(1);
  }
  20%{
    transform:translateX(-60%) scaleX(1.05);
  }
  50%{
    transform:translateX(-50%) scaleX(1);
  }
  80%{
    transform:translateX(-40%) scaleX(0.95);
  }
  100%{
    transform:translateX(-50%) scaleX(1);
  }
}

/* PAUSE ON HOVER (CLASSY TOUCH) */
.logo-hanger:hover{
  animation-play-state:paused;
}

.logo-hanger:hover::after{
  animation-play-state:paused;
}
/* ===== LOGO HANGER ===== */

.logo-hanger{
  position:relative;
  display:inline-block;
  transform-origin:50% 0%;
  animation:pendulumSmooth 3.8s linear infinite;
}

/* ROPE */
/* ===== LOGO HANGER ===== */
.logo-hanger{
  position:relative;
  display:inline-block;
  transform-origin:50% 0%;
  animation:pendulumSmooth 3.8s linear infinite;
  z-index:9999; /* VERY IMPORTANT */
}

/* ===== ROPE (VISIBLE VERSION) ===== */
.rope{
  position:absolute;
  top:-45px;           /* more height above logo */
  left:50%;
  width:6px;           /* thicker rope */
  height:45px;
  transform:translateX(-50%);
  z-index:9999;
  margin-top: 100px;

  background:repeating-linear-gradient(
    45deg,
    #7a4a1e,
    #7a4a1e 4px,
    #a4713d 4px,
    #a4713d 8px
  );

  border-radius:6px;
}

/* Knot */
.rope::after{
  content:"";
  position:absolute;
  bottom:-8px;
  left:50%;
  width:14px;
  height:14px;
  background:#5c3515;
  border-radius:50%;
  transform:translateX(-50%);
}

/* LOGO */
.site-logo{
  width:70px;
  display:block;
  filter:drop-shadow(0 12px 18px rgba(0,0,0,0.35));
}


/* ===== LOGO IMAGE ===== */

.site-logo{
  width:70px;
  display:block;
  filter:drop-shadow(0 12px 18px rgba(0,0,0,0.35));
}

/* ===== SHADOW ===== */

.logo-hanger::after{
  content:"";
  position:absolute;
  bottom:-14px;
  left:50%;
  width:60%;
  height:8px;
  background:rgba(0,0,0,0.35);
  filter:blur(8px);
  transform:translateX(-50%);
  animation:shadowSmooth 3.8s linear infinite;
}

/* ===== CONTINUOUS SMOOTH SWING ===== */

@keyframes pendulumSmooth{
  0%   { transform:rotate(-6deg); }
  25%  { transform:rotate(0deg); }
  50%  { transform:rotate(6deg); }
  75%  { transform:rotate(0deg); }
  100% { transform:rotate(-6deg); }
}

/* Shadow sync */
@keyframes shadowSmooth{
  0%   { transform:translateX(-60%) scaleX(1.05); }
  25%  { transform:translateX(-50%) scaleX(1); }
  50%  { transform:translateX(-40%) scaleX(0.95); }
  75%  { transform:translateX(-50%) scaleX(1); }
  100% { transform:translateX(-60%) scaleX(1.05); }
}

/* Pause on hover (optional) */
.logo-hanger:hover{
  animation-play-state:paused;
}
.logo-hanger:hover::after{
  animation-play-state:paused;
}
/* ===============================
   RESPONSIVE FIX PACK – HOME
   (NO STRUCTURE CHANGE)
================================ */

/* ---------- LARGE SCREENS (4K) ---------- */
@media (min-width:1600px){
  .hero-content{
    max-width:720px;
  }

  .hero h1{
    font-size:60px;
  }

  .hero p{
    font-size:20px;
  }
}

/* ---------- TABLET (768px – 1024px) ---------- */
@media (max-width:1024px){

  /* NAV */
  .nav{
    padding:16px 25px;
  }

  /* HERO */
  .hero{
    padding-left:40px;
    background-position:center;
  }

  .hero-icon img{
    width:260px;
    margin-top:-40px;
  }

  .hero h1{
    font-size:42px;
  }

  /* STATS */
  .hero-stats{
    grid-template-columns:1fr 1fr;
  }

  /* SERVICES */
  .service-cards{
    grid-template-columns:1fr 1fr;
  }

  /* GALLERY */
  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* ---------- MOBILE (≤768px) ---------- */
@media (max-width:768px){

  /* NAV FIX */
  .logo-hanger{
    margin:0 !important;
    transform:scale(0.85);
  }

  #navMenu{
    margin-left:0 !important;
  }

  /* HERO */
  .hero{
    height:auto;
    padding:140px 25px 80px;
    background-position:center;
  }

  .hero-content{
    max-width:100%;
  }

  .hero-icon img{
    width:200px;
    margin-top:0;
  }

  .hero h1{
    font-size:34px;
    line-height:1.3;
  }

  .hero p{
    font-size:16px;
  }

  .hero-btn{
    padding:14px 36px;
    font-size:16px;
  }

  /* HERO NEXT */
  .hero-next{
    padding:80px 25px;
  }

  .hero-next h2{
    font-size:34px;
  }

  /* STATS */
  .hero-stats{
    grid-template-columns:1fr 1fr;
    gap:20px;
  }

  .stat-card{
    padding:30px 18px;
  }

  .stat-card h3{
    font-size:32px;
  }

  /* SERVICES */
  .services-highlight{
    padding:90px 25px;
  }

  .service-cards{
    grid-template-columns:1fr;
  }

  /* WORK PROCESS */
  .work-process{
    padding:90px 25px;
  }

  .timeline::before{
    left:25px;
  }

  /* TESTIMONIALS */
  .testimonials{
    padding:90px 25px;
  }

  .testimonial-card{
    padding:35px 25px;
  }

  /* CTA */
  .cta-main{
    padding:90px 25px;
  }

  .cta-main h2{
    font-size:32px;
  }

  /* GALLERY */
  .gallery-preview{
    padding:90px 25px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-card{
    height:240px;
  }

  /* FOOTER */
  .footer-content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .site-footer{
    padding:70px 25px 30px;
  }
}

/* ---------- SMALL MOBILES (≤420px) ---------- */
@media (max-width:420px){

  .hero h1{
    font-size:30px;
  }

  .hero-icon img{
    width:170px;
  }

  .stat-card h3{
    font-size:28px;
  }
}
/* ===== MENU ALIGNMENT FIX ===== */

@media (max-width:768px){

  .nav{
    justify-content:space-between; 
    margin-top: -100px;
    
  }
  

  #navMenu{
    margin-left:0 !important;
    width:100%;
    background-color: #00000045;;
    
  }

  #navMenu a{
    padding-left:25px;
    color: rgb(255, 255, 255);
  }
}
/* ===== MOBILE MENU OPEN FIX ===== */

@media (max-width:768px){

  .nav nav{
    transform:translateX(0); /* allow open */
  }

  .nav nav.open{
    max-height:400px;
    padding:20px 0;
  }
}
/* .logo-hanger{
  margin-top: -1000px;
} */
/* =================================
   TABLET ONLY NAV BAR FIX
   (768px – 1024px)
================================= */

@media (min-width:768px) and (max-width:1024px){

  .nav{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:16px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;

  }
  .nav a {
    margin-right: 50px;
  
   
  }

  /* Logo */
  .logo-hanger{
    margin:0;
    transform:scale(0.9);
    margin-top: -100px;
  }

  /* Hide hamburger in tablet */
  .menu-toggle{
    display:none;
  }

  /* Menu layout */
  #navMenu{
    display:flex !important;
    flex-direction:row;
    gap:22px;
    margin:0;
    position:static;
    background:transparent;
    max-height:none;
  }

  #navMenu a{
    font-size:15px;
    color:#ffffff;
    padding:0;
    white-space:nowrap;
  }
}
