/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f8fafc;
  color:#0f172a;
  overflow-x:hidden;
}

/* CONTAINER */

.container{
  width:min(1200px,90%);
  margin:auto;
}

/* SCROLL PROGRESS */

.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  width:0%;
  height:4px;
  background:linear-gradient(90deg,#2563eb,#22c55e);
  z-index:99999;
}

/* BACKGROUND */

.gradient-ball{
  position:fixed;
  width:500px;
  height:500px;
  border-radius:50%;
  filter:blur(120px);
  opacity:.15;
  z-index:-1;
  animation:float 8s ease-in-out infinite;
}

.ball-1{
  background:#2563eb;
  top:-200px;
  left:-150px;
}

.ball-2{
  background:#22c55e;
  bottom:-200px;
  right:-150px;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  backdrop-filter:blur(16px);
  background:rgba(255,255,255,.85);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}

.logo-box{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo-box img{
  width:56px;
  transition:.4s;
}

.logo-box:hover img{
  transform:rotate(-6deg) scale(1.08);
}

.logo-box h2{
  font-family:'Poppins',sans-serif;
  font-size:24px;
  color:#0f172a;
}

.logo-box span{
  color:#2563eb;
}

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#334155;
  font-weight:600;
  position:relative;
}

.nav-links a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#2563eb;
  transition:.4s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a:hover{
  color:#2563eb;
}

/* MENU BUTTON */

.menu-btn{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-btn span{
  width:26px;
  height:3px;
  background:#0f172a;
  border-radius:20px;
}

/* MOBILE NAV */

.mobile-nav{
  position:fixed;
  top:78px;
  right:-100%;
  width:280px;
  height:100vh;
  background:white;
  box-shadow:-10px 0 30px rgba(0,0,0,.08);
  padding:40px 30px;
  display:flex;
  flex-direction:column;
  gap:25px;
  transition:.5s;
  z-index:999;
}

.mobile-nav.active{
  right:0;
}

.mobile-nav a{
  text-decoration:none;
  color:#0f172a;
  font-size:18px;
  font-weight:600;
}

/* HERO */

.hero{
  padding:180px 20px 90px;
  text-align:center;
}

.badge{
  display:inline-block;
  background:#eff6ff;
  color:#2563eb;
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:24px;
  animation:pulse 2s infinite;
}

.hero h1{
  font-family:'Poppins',sans-serif;
  font-size:64px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero h1 span{
  background:linear-gradient(90deg,#2563eb,#22c55e);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  max-width:750px;
  margin:auto;
  color:#64748b;
  font-size:19px;
  line-height:1.8;
}

.hero-btn{
  display:inline-block;
  margin-top:35px;
  background:linear-gradient(90deg,#2563eb,#1d4ed8);
  color:white;
  text-decoration:none;
  padding:16px 34px;
  border-radius:14px;
  font-weight:700;
  transition:.4s;
  box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.hero-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 35px rgba(37,99,235,.35);
}

/* POLICY */

.policy-section-area{
  padding:30px 20px 100px;
}

.policy-card{
  width:min(1000px,100%);
  margin:auto;
  background:white;
  border-radius:30px;
  padding:50px;
  box-shadow:0 20px 60px rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.06);
}

.policy-item{
  display:flex;
  gap:30px;
  padding:30px 0;
  border-bottom:1px solid #f1f5f9;
  transition:.4s;
}

.policy-item:last-child{
  border:none;
}

.policy-item:hover{
  transform:translateX(10px);
}

.policy-number{
  min-width:80px;
  height:80px;
  border-radius:20px;
  background:linear-gradient(135deg,#2563eb,#22c55e);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:28px;
  font-weight:800;
  box-shadow:0 10px 25px rgba(37,99,235,.2);
}

.policy-content h2{
  font-size:30px;
  margin-bottom:16px;
  font-family:'Poppins',sans-serif;
}

.policy-content p,
.policy-content li{
  color:#64748b;
  line-height:1.9;
}

.policy-content ul{
  margin-left:20px;
}

/* FOOTER */

footer{
  background:white;
  padding:80px 20px 30px;
  border-top:1px solid rgba(0,0,0,.06);
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
}

.footer-logo img{
  width:50px;
}

.footer-logo h2{
  font-family:'Poppins',sans-serif;
}

.footer-logo span{
  color:#2563eb;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-links a{
  color:#64748b;
  text-decoration:none;
  transition:.3s;
}

.footer-links a:hover{
  color:#2563eb;
  transform:translateX(5px);
}

.copyright{
  text-align:center;
  margin-top:50px;
  padding-top:20px;
  border-top:1px solid #e2e8f0;
  color:#94a3b8;
}

/* REVEAL */

.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:1s;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ANIMATION */

@keyframes float{
  0%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-20px);
  }
  100%{
    transform:translateY(0);
  }
}

@keyframes pulse{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.05);
  }
  100%{
    transform:scale(1);
  }
}

/* RESPONSIVE */

@media(max-width:900px){

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero h1{
    font-size:48px;
  }
}

@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .menu-btn{
    display:flex;
  }

  .policy-item{
    flex-direction:column;
  }

  .policy-number{
    width:80px;
  }

  .hero h1{
    font-size:40px;
  }

  .policy-card{
    padding:30px;
  }
}

@media(max-width:600px){

  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:140px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:16px;
  }

  .policy-content h2{
    font-size:24px;
  }
}