body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

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

/* 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);
  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;
}

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);
}

/* herooooooooooooo section nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn */

.case-hero {
  position: relative;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 80px;
  overflow: hidden;

  /* 🔥 background image */
  background: #0f0f0f;
}

.case-hero h1 {
  color: #6dfc9b;
   transform: translateX(-190px);
}

/* dark overlay */
.case-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* content */
.case-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 800px;
  font-weight: 700;
  transform: translateX(-30px);
}

.case-content a {
    font-size: large;
    font-weight: 700;
    transform: translateX(-200px);
}

/* back link */
.back-link {
  position:absolute;
  top: 10px;
  left: 204px;
  color: #6dfc9b;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 30px;
}

/* heading */
.case-content h2 {
  font-size: 70px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}

/* brand */
.brand {
  margin-top: 20px;
  font-size: 20px;
  color: #ccc;
}

/* Creativeeeeeeeeeeeeeeeeeeeeeeeeeee Sectionnnnnnnnnnnnnnnnnn */

.phone-section {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background: #373535ab;
}

.phone {
  width: 280px;
  height: 580px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: black;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hidden {
  opacity: 0;
  transform: translateY(100px) rotate(-10deg);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.show {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* image inside phone */
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT */
}

/* Optional notch (top black cut) */
.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: black;
  border-radius: 20px;
  z-index: 2;
}

.notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);

  width: 80px;
  height: 20px;
  background: black;
  border-radius: 20px;

  z-index: 2;
}

/* Abouttttttttttttt Projectttttttttttttttttt */

.about-project {
  padding: 20px 50px;
  background: #fff;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

/* LEFT TITLE */
.about-left h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111;
}

/* RIGHT TEXT */
.about-right {
  max-width: 600px;
}

.about-right p {
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: #555;
}

/* socialllllllllllllllllllllllllll mediaaaaaaaaaaaaaaaaaaaaaaaaaa */

/* SECTION */
.reels-section {
  padding: 30px 50px;
  background: #373535ab;    /*linear-gradient(45deg, #1f1d1d, #121212) */
}

/* HEADER */
.reels-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid white;
}

.reels-header h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ebe4e4dd;
}

/* REELS CONTAINER */
.reels-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PHONE FRAME */
.reels-section .phone {
  width: 280px;
  height: 580px;
  border-radius: 40px;
  overflow: hidden;
  background: black;

  border: 6px solid #111;   /* phone frame */
  position: relative;

  box-shadow: 0 15px 40px rgba(0,0,0,0.3);

  opacity: 0;
  transform: translateY(100px) rotate(-10deg);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone.show {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* VIDEO */
.phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER EFFECT */
.phone:hover {
  transform: scale(1.05);
}

.notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);

  width: 80px;
  height: 20px;
  background: black;
  border-radius: 20px;

  z-index: 2;
}








































.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: none;
}

@media (max-width: 768px) {

  header {
    padding: 10px 14px;
    display: block;
    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;
}


.case-content {
  transform: none !important;
}

.case-content a {
  transform: none !important;
}

/* 🔥 PERFECT MOBILE HERO FIX */

.case-hero {
  margin-top: 70px;
  padding: 80px 20px 50px;
  height: auto;                 /* remove fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* remove weird shifting */
.case-content {
  transform: none !important;
  max-width: 100%;
  text-align: center;           /* center looks premium */
}

/* back button fix */
.back-link {
  position: static !important;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* FIX BIGGEST ISSUE (heading breaking badly) */
.case-content h2 {
  font-size: 36px !important;
  line-height: 1.2;
  letter-spacing: 1px;
  word-break: break-word;       /* prevents cut */
}

/* brand text */
.brand {
  font-size: 16px;
  margin-top: 15px;
  opacity: 0.8;
}




.phone-section {
  flex-direction: column;
  padding: 30px 15px;
}

.phone {
  width: 90%;
  height: auto;
  aspect-ratio: 9/18;
}


.about-project {
  padding-top: 10px !important;
  padding-bottom: 20px;
}

.about-container {
  flex-direction: column;
  gap: 20px;
}

.about-right p {
  font-size: 16px;
}

.about-left {
  text-align: center;
}

.about-left h2 {
  position: relative;
  border-bottom: 2px solid rgb(153, 144, 140);
}

.about-left h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 60px;
  height: 3px;

}




.reels-container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reels-section .phone {
  width: 90%;
  height: auto;
}








.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);
}

body {
  overflow-x: hidden;
}

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

body {
  cursor: auto !important;
}

/* 🔥 REDUCE SPACE BETWEEN HEADING & TEXT (MOBILE ONLY) */

.about-container {
  gap: 12px !important; /* reduce big gap */
}

.about-left {
  margin-bottom: 0 !important;
}

.about-left h2 {
  margin-bottom: 8px !important; /* tighter spacing */
}

.about-right {
  margin-top: 0 !important;
}

.about-right p {
  margin-top: 0 !important;
  line-height: 1.4; /* optional: tighter text */
}

.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;
}