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

.logo {
  display: flex;
  align-items: center;
}

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

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

.logo-gif {
  height: 80px;
}

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;
  height: 100vh;
  display: flex;
  align-items: center;

  /* 🔥 BACKGROUND IMAGE */
  background: url("images/Blog.front.PNG") no-repeat center center/cover;

  padding: 0 80px;
  margin-top: -70px;
}

/* Optional overlay (makes text readable) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

/* TEXT stays SAME position */
.hero-content {
  position: relative; /* important */
  max-width: 500px;
}

.hero-content h1 {
  font-size: 25px;
  color: #c7bebcbf;
  transform: translateY(-190px) translateX(-67px);
}

.hero-content p {
  font-size: 18px;
  color: #eeecec;
}


/* BLOG SECTION */
.blog-section {
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* CARD */
.blog-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgb(192 192 173 / 98%);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}




.blog-cardd {
  color: black;
  text-decoration: none;
}





/* IMAGE */
.blog-card img {
  width: 45%;
  border-radius: 15px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  width: 55%;
}

.blog-content h2 {
  margin: 10px 0;
  font-size: 26px;
}

.blog-content p {
  color: #555;
  line-height: 1.9;
  font-size: large;
  font-weight: normal;
  font-style: oblique;
}

/* ACTIONS */
.blog-actions {
  margin-top: 15px;
  display: flex;
  gap: 20px;
}

.blog-actions a {
  text-decoration: none;
  font-weight: bold;
  color: black;
}

.blog-actions span {
  font-size: 20px;
  color: black;
}

/* REVERSE (image right) */
.blog-card.reverse {
  flex-direction: row-reverse;
}





.share-box {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.share-text {
  color: rgb(11, 53, 111);
  font-weight: bold;
}

/* ICON CONTAINER */
.share-icons {
  position: absolute;
  top: 30px;
  left: 0;
  display: flex;
  gap: 10px;

  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

/* ICON STYLE */
.share-icons a {
  width: 35px;
  height: 35px;
  border: 1px dashed #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  background: white;
  font-size: 14px;
}

/* HOVER EFFECT */
.share-box:hover .share-icons {
  opacity: 1;
  transform: translateY(0);
}

/* ICON HOVER */
.share-icons a:hover {
  background: black;
  color: white;
}
























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

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

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

  /* SLIDE MENU */
  .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;
}

  .quote {
    margin-top: 20px;
  }

  .swiper {
    width: 100;
  }


  /* HERO MOBILE FIX */
.hero {
  height: 30vh; /* better than full height on mobile */
  padding: 40px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-position: center;
  background-size: cover;
}

/* TEXT */
.hero-content {
  max-width: 100%;
  padding: 0 10px;
}

/* HEADING */
.hero-content h1 {
  font-size: 28px;
  line-height: 1.3;
}

/* PARAGRAPH */
.hero-content p {
  font-size: 14px;
  line-height: 1.5;
}

 .blog-section {
    padding: 40px 20px;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-card.reverse {
    flex-direction: column;
  }

  .blog-card img {
    width: 100%;
  }

  .blog-content {
    width: 100%;
  }







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

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