*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f4f6f9;
color:#333;
}

/* Navbar */

/* NAVBAR WRAPPER */
nav.site-navbar {
  background: #ffffff;
  color: #0f172a;
  /* position: fixed; */
  inset: 0 0 auto 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(15,23,42,0.08);
  border-bottom: 1px solid rgba(148,163,184,0.2);
}

/* INNER CONTAINER */
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-weight: 900;
  font-size: 1.8rem;
  color: #111827;
  letter-spacing: 1px;
}

/* DESKTOP LINKS */
.site-nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-links a {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

/* Hover effect */
.site-nav-links a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* Active link */
.site-nav-links a.active {
  color: #2563eb;
  font-weight: 700;
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #0f172a;
}

/* MOBILE MENU */
.mobile-menu {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  position: absolute;
  left: 20px;
  right: 20px;
  top: 72px;
  box-shadow: 0 10px 25px rgba(15,23,42,0.18);
}

.mobile-menu.hidden {
  display: none;
}

/* MOBILE LINKS */
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-links a {
  color: #334155;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
}

.mobile-links a:hover {
  background: #f1f5f9;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .site-nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

}

/* Hero Section */

/* ===== HERO SECTION ===== */

.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 20px;
background: linear-gradient(135deg, #e8f2ff, #cfe1ff);}

/* hero container */

.hero-content{
  max-width:800px;
}

/* heading */

.hero h1{
  font-size:56px;
  font-weight:700;
  line-height:1.2;
  color:#111827;
  margin-bottom:20px;
}

/* badge */

.badge{
  background:#eef2ff;
  color:#6366f1;
  padding:8px 18px;
  border-radius:30px;
}

/* purple dot */

.dot{
  color:#6366f1;
}

/* subtitle */

.hero-subtitle{
  font-size:18px;
  color:#6b7280;
  margin-bottom:30px;
}

/* features */

.hero-features{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:35px;
}

.hero-features span{
  background:white;
  border:1px solid #e5e7eb;
  padding:8px 16px;
  border-radius:20px;
  font-size:14px;
}

/* CTA button */

.cta-btn{
  background:#6366f1;
  color:white;
  border:none;
  padding:14px 28px;
  font-size:16px;
  border-radius:30px;
  cursor:pointer;
  transition:0.3s;
}

.cta-btn:hover{
  background:#4f46e5;
}

/* features */

.features{
margin-top:25px;
display:flex;
justify-content:center;
gap:20px;
color:#cbd5e1;
}

.features span{
border:1px solid rgba(255,255,255,0.2);
padding:8px 15px;
border-radius:20px;
font-size:14px;
}

/* button */

.cta-btn{
margin-top:35px;
padding:14px 28px;
font-size:16px;
border:none;
border-radius:30px;
background:linear-gradient(90deg,#6c63ff,#9d4edd);
color:white;
cursor:pointer;
transition:0.3s;
}

.cta-btn:hover{
transform:scale(1.05);
}



/* Features */

.features-section{
padding:100px 8%;
background:linear-gradient(to bottom,#f9fafc,#eef2ff);
text-align:center;
}

.features-section h2{
font-size:38px;
margin-bottom:60px;
color:#111827;
}

.features-section span{
color:#6366f1;
border-bottom:4px solid #6366f1;
}

/* grid */

.features-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

/* card */

.feature-card{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 8px 30px rgba(0,0,0,0.06);
transition:all 0.35s ease;
position:relative;
overflow:hidden;
}

/* hover animation */

.feature-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* icon */

.icon{
font-size:28px;
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
background:#eef2ff;
border-radius:12px;
margin-bottom:18px;
}

/* text */

.feature-card h3{
margin-bottom:10px;
color:#111827;
}

.feature-card p{
color:#6b7280;
font-size:15px;
line-height:1.6;
}




.tools-section{
padding:100px 8%;
background:#ffffff;
text-align:center;
}

.tools-section h2{
font-size:36px;
margin-bottom:60px;
color:#111827;
}

/* grid */

.tools-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

/* card */

.tool-card{
background:#f9fafc;
padding:30px;
border-radius:14px;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
transition:all 0.3s ease;
}

.tool-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.tool-icon{
font-size:28px;
margin-bottom:15px;
}

.tool-card h3{
margin-bottom:10px;
color:#111827;
}

.tool-card p{
font-size:14px;
color:#6b7280;
line-height:1.6;
}



/* Footer */
/* Footer Style */
.footer {
  background: var(--bg);
  color: #000;
  padding: 50px 20px;
  margin-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--accent);
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--text);
}

.newsletter input {
  width: 100%;
  padding: 10px;
  border: none;
  margin-bottom: 10px;
  border-radius: 5px;
}

.newsletter button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text);
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

body,
html {
  height: 100%;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-centerY-centerX {
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body {
  background-color: #f7f7f7;
}

.page-wrapper {
  height: 100%;
  display: table;
}

.page-wrapper .page-inner {
  display: table-cell;
  vertical-align: middle;
}

.el-wrapper {
  width: 360px;
  padding: 15px;
  margin: 15px auto;
  background-color: #fff;
}

@media (max-width: 991px) {
  .el-wrapper {
    width: 345px;
  }
}

@media (max-width: 767px) {
  .el-wrapper {
    width: 290px;
    margin: 30px auto;
  }
}

.el-wrapper:hover .h-bg {
  left: 0px;
}

.el-wrapper:hover .price {
  left: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #818181;
}

.el-wrapper:hover .add-to-cart {
  left: 50%;
}

.el-wrapper:hover .img {
  webkit-filter: blur(7px);
  -o-filter: blur(7px);
  -ms-filter: blur(7px);
  filter: blur(7px);
  filter: progid:DXImageTransform.Microsoft.Blur(pixelradius='7', shadowopacity='0.0');
  opacity: 0.4;
}

.el-wrapper:hover .info-inner {
  bottom: 155px;
}

.el-wrapper:hover .a-size {
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  bottom: 50px;
  opacity: 1;
}

.el-wrapper .box-down {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.el-wrapper .box-up {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.el-wrapper .img {
  padding: 20px 0;
  -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
}

.h-bg {
  -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  width: 660px;
  height: 100%;
  background-color: #3f96cd;
  position: absolute;
  left: -659px;
}

.h-bg .h-bg-inner {
  width: 50%;
  height: 100%;
  background-color: #464646;
}

.info-inner {
  -webkit-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  position: absolute;
  width: 100%;
  bottom: 5px;
}

.info-inner .p-name,
.info-inner .p-company {
  display: block;
}

.info-inner .p-name {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  color: #252525;
}

.info-inner .p-company {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #8c8c8c;
}

.a-size {
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  position: absolute;
  width: 100%;
  bottom: -20px;
  font-family: 'PT Sans', sans-serif;
  color: #828282;
  opacity: 0;
}

.a-size .size {
  color: #252525;
}

.cart {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.cart .price {
  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #252525;
}

.cart .add-to-cart {
  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
  display: block;
  position: absolute;
  top: 50%;
  left: 110%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cart .add-to-cart .txt {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}
