body{
  margin: 0;
  padding: 0;
}

/* dot */
html {
    scroll-behavior: smooth;
}

body{
cursor: none;
background:#f5f5f5;
color:#333;
margin: 0;
padding: 0;
}

/* dot */
.cursor-dot{
width:6px;
height:6px;
background:black;
border-radius:50%;
position:fixed;
top:50%;
left:50%;
pointer-events:none;
z-index:9999;
transform:translate(-50%,-50%);
}

/* ring */
.cursor-ring{
width:35px;
height:35px;
border:2px solid rgba(0,0,0,0.5);
border-radius:50%;
position:fixed;
top:50%;
left:50%;
pointer-events:none;
z-index:9998;
transform:translate(-50%,-50%);
}


/* HEADER */

header{
  border-bottom: 2px solid rgb(153, 144, 140);
  display: flex;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);

  box-sizing: border-box; /* keep this */
  z-index: 1000;
}

.nav-container {
  margin-left: 809px;
}

header.scrolled {
  background: transparent;
  box-shadow: none;
}

.logo {
    height: 50px;
    overflow: visible;
    position: relative;
}

.logo-gif {
  height: 80px;
  position: absolute;
  top: 50;
  left:-30px;
  bottom: -40px;
  transform: translateY(-30px);
  z-index: 10;
}

nav a {
margin:0 15px;
text-decoration:none;
font-weight: bold;
font-size: larger;
color:#333;
display: inline-block;
transition: transform 0.3s ease, color 0.3s ease;
}

nav a:hover {
    color:#13566c6f;
    transform: scale(1.08);
}

.quote {
background: linear-gradient(rgba(17, 17, 16, 0.179)),
url(images/jigjag.jpeg);
color:white;
border:none;
font-weight: bold;
padding:10px 20px;
border-radius:5px;
cursor:pointer;

transition: all 0.3 ease;
}

.quote:hover {
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(64, 59, 59, 0.718);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding: 93px 80px;
  position: relative;
  margin-top: 0px;
  overflow: hidden; /* important */
  z-index: 1;
}

/* 🎥 Video styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills nicely */
  z-index: -2;
  pointer-events: none;
}

/* 🌑 Dark overlay (very important for readability) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.0.6);
  z-index: -1;
  pointer-events: none;
}

/* content */
.hero-content {
  max-width: 600px;
  text-align: right;
  position: relative;
}

.hero h1 {
  font-size: 80px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.hero h1 span {
  background: linear-gradient(90deg, #6dfc9b, #3fe0a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #ccc;
  margin-top: -30px;
}

.work-section {
  padding: 80px;
  background: #fff;
}

.work-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.work-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
}

/* image */
.work-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* overlay text */
.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 40px;

  background: rgba(0,0,0,0,7);
}

.work-overlay h2 {
    text-transform: uppercase;
  color: white;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  font-style: normal;

  max-width: 80%;
}

/* footer */
.work-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 16px;
  color: #202322;
  background: white;

  border-top: 1px solid black;
}

.work-card span {
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 8px;
}

/* hover effect 🔥 */
.work-card:hover img {
  transform: scale(1.1);
}

.work-card:hover .work-overlay {
  background: rgba(0,0,0,0.5);
}

.footer-bottom {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 15px 50px;
  background: rgba(17, 17, 16, 0.978);

  display: flex;
  justify-content: space-between;
  align-items: center;

  /* border-top: 1px solid rgba(240, 248, 255, 0.277); */
  box-sizing: border-box;
}

/* left text */
.footer-bottom .left-text {
    color:#e8e5e6;
  margin-left: 50px;   /* same spacing as header */
}

/* right links */
.footer-bottom .right-text {
  margin-right: 50px;  /* same spacing as header */
  display: flex;
  gap: 15px;
}

.footer-link {
    color: white ;
    text-decoration:none ;
}

.footer-bottom .right-text a {
  color: #e8e5e6;
  text-decoration: none;
}

.footer-bottom .right-text a:hover {
  color: #b6cac2f4;
  transform: scale(1.08);
}

.menu-toggle {
  display: none;
}

.overlay {
  display: flex;
}

@media (max-width: 768px) {

  header {
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgb(153, 144, 140);
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* margin: 0 !important;
    padding: 0 !important; */
  }

  .logo-gif {
    position: static !important;   /* 🔥 VERY IMPORTANT */
    transform: none  !important;  /* remove shifting */
    left: 0 !important;
    top: 0 !important;
    display: block;
    margin-left: 0 !important;
    height: 60px;
  }

  .menu-toggle {
    display: block;
    position: absolute;   /* 🔥 IMPORTANT */
    right: 15px;          /* 👉 pushes to right end */
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    z-index: 2001;
    cursor: pointer;
  }

.nav-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: white;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 20px;
  transition: 0.4s ease;
  z-index: 1000;
}

.nav-container nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-container.active {
  right: 0;
}

.nav-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-container nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-container nav a {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}



  .overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);

  opacity: 0;
  pointer-events: none;
  transition: 0.3 ease;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}





.footer-bottom {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 15px;
}

.footer-bottom .left-text {
  margin: 0 !important;
  position: static !important;
  font-size: 12px;
}

.footer-bottom .right-text {
  position: static !important;
  transform: none !important;
  display: flex;
  gap: 10px;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* HERO MOBILE FIX */
.hero {
  padding: 100px 20px 40px !important;
  justify-content: center !important;
  text-align: center !important;
}

/* center content */
.hero-content {
  max-width: 100%;
  text-align: center !important;
}

/* fix big heading */
.hero h1 {
  font-size: 36px !important;
  line-height: 1.2;
  word-break: break-word;
}

/* fix green text (EXCELLENCE) */
.hero h1 span {
  display: block;
  font-size: 34px !important;
}

/* fix paragraph */
.hero p {
  font-size: 14px;
  margin-top: 10px;
  padding: 0 10px;
}

.work-section {
  padding: 20px !important;
}

.work-container {
  grid-template-columns: 1fr !important;  /* 🔥 1 card per row */
  gap: 20px;
}

.work-card img {
  height: 250px; /* better fit for mobile */
}

.work-overlay h2 {
  font-size: 18px;
}

.work-footer {
  font-size: 14px;
  padding: 8px 5px;
}

body {
  overflow-x: hidden;
}

.cursor-dot,
.cursor-ring {
  display: none !important;
}

body {
  cursor: auto !important;
}

.whatsapp-btn {
    bottom: 15px;
    right: 15px;
    padding: 20px;
    border-radius: 50%;
    /* background: #25D366; clean background */
  }

  .whatsapp-icon {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    display: block;
  }

}


/* DESKTOP FIX */
.nav-container {
  display: flex;
  align-items: center;
}

.nav-container nav {
  display: flex;
  align-items: center;
}

.nav-container a {
  display: inline-block;
}

.nav-container .quote {
  margin-left: 0; /* reset */
}



/* WhatsApp Button - Desktop + Mobile */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* Icon */
.whatsapp-icon {
  width: 80px;
  height: 80px;
}