
*{
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;

  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif
}

body{
  color:#000000;
  background:#ffffff
}


.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px
}

header{
  position:fixed;
  width:100%;
  background:#ffffff;
  border-bottom:1px solid #eee;
  z-index:1000
}

header{
  animation: slideDown .6s ease forwards;
}
@keyframes slideDown{
  from{
    transform:translateY(-20px);
    opacity:0;
  }
  to{
    transform:translateY(0);
    opacity:1;
  }
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:70px
}

.logo{
  font-size:20px;
  font-weight:700;
  color:#0A4DAA
}

.logo{
  transition:transform .25s ease;
}

.logo:hover{
  transform:scale(1.03);
}

nav a{
  margin-left:25px;
  text-decoration:none;
  color:#000000;
  font-weight:500
}


nav a:hover{
  color:#F4C430
}

nav a{
  position:relative;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#F4C430;
  transition:width .3s ease;
}

nav a:hover::after{
  width:100%;
}

.hero{
  padding:140px 0 100px;
  background:#ffffff
}

.hero h1{
  font-size:42px;
  color:#000000;
  margin-bottom:15px
}


.hero p{
  max-width:600px;
  margin-bottom:30px
}

.hero h1,
.hero p,
.hero .btn{
  animation: fadeUp .7s ease forwards;
  opacity:0;
}

.hero p{
  animation-delay:.15s;
}

.hero .btn{
  animation-delay:.3s;
}

@keyframes fadeUp{
  from{
    transform:translateY(20px);
    opacity:0;
  }
  to{
    transform:translateY(0);
    opacity:1;
  }
}

.btn{
  background:#F4C430;
  color:#000000;
  padding:14px 30px;
  text-decoration:none;
  font-weight:600
}


.btn:hover{
  background:#0A4DAA;
  color:#ffffff
}

.btn{
  transition:transform .15s ease, box-shadow .15s ease;
}

.btn:active{
  transform:scale(.96);
}

.section{
  padding:90px 0
}
.section{
  animation: sectionFade .8s ease forwards;
  opacity:0;
}

@keyframes sectionFade{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.section h2{
  color:#000000;
  margin-bottom:20px
}


.light{
  background:#f5f7fa
}

.brand-box{
  padding:30px;
  border-left:6px solid #F4C430;
  background:#ffffff;
  max-width:400px
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px
}

.card{
  background:#ffffff;
  padding:25px;
  border-left:5px solid #F4C430;
  box-shadow:0 2px 10px rgba(0,0,0,.08)
}

.card,
.distributor-box{
  position:relative;
  overflow:hidden;
}



footer{
  background:#F4C430;
  color:#000000;
  text-align:center;
  padding:20px
}

.logo img{
  height:50px;
  width:auto;
  display:block
}

.distributor-box{
  background:#ffffff;
  padding:30px;
  max-width:600px;
  border-left:6px solid #F4C430
}

.distributor-box img{
  max-width:150px;
  margin-bottom:10px;
  display:block
}

.distributor-box p{
  margin:0
}

.cursor-dot{
  width:17px;
  height:17px;
  background:#F4C430;
  border-radius:50%;
  position:fixed;
  top:0;
  left:0;
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:9999;
  transition: transform .08s linear;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo img:last-child{
  height:40px;
  width:auto;
}


@media (max-width:768px){
  .cursor-dot{display:none}
}

.card,
.team-card,
.distributor-box{
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.team-card:hover,
.distributor-box:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.card,
.distributor-box{
  position:relative;
  overflow:hidden;
}

.card::after,
.distributor-box::after{
    left:var(--x);
    top:var(--y);

  content:"";
  position:absolute;
  width:220px;
  height:220px;
  background:radial-gradient(
    circle,
    rgba(244,196,48,.35),
    transparent 60%
  );
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,-50%);
  transition:opacity .25s ease;
}

.card:hover::after,
.distributor-box:hover::after{
  opacity:1;
}

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#000;
}

/* ===== FORCE HAMBURGER VISIBILITY (MOBILE) ===== */
@media (max-width:768px){

  .menu-toggle{
    display:flex !important;
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;
  }

  .menu-toggle span{
    width:26px;
    height:3px;
    background:#000;
    display:block;
  }

  /* keep nav hidden initially */
  .nav-links{
    display:none;
  }

  /* dropdown when active */
  .nav-links.active{
    display:flex;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    gap:20px;
    padding:25px;
    border-bottom:1px solid #eee;
    z-index:9998;
  }

  /* shrink Yati International logo */
  .logo img:last-child{
    height:16px;
  }

  .logo img:first-child{
    height:34px;
  }

}

.menu-toggle span{
  transition:transform .3s ease, opacity .3s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

html{
  scroll-behavior:smooth;
}
.menu-toggle.active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

