*{margin:0;padding:0;box-sizing:border-box;font-family:Arial, Helvetica, sans-serif}
body{min-height:200vh;background:#f5f7fb}

/* NAVBAR */
.navbar{
  position:sticky;
  top:0;
  width:100%;
  background:#ffffff;
  color:#273238;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 30px;
  z-index:999;
}

.logo{font-size:22px;font-weight:bold;letter-spacing:.5px}
.logo span{color:#38bdf8}
.logo img{
    width: 150px;
}
.nav-links{
  display:flex;
  gap:25px;
  align-items:center;
}

.nav-links a{
  text-decoration:none;
  color:#273238;
  font-size:15px;
  position:relative;
  transition:.3s;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;bottom:-6px;
  width:0;height:2px;
  background:#273238;
  transition:.3s;
}

.nav-links a:hover{color:#fff}
.nav-links a:hover::after{width:100%}

/* DROPDOWN */
.dropdown{position:relative}
.dropdown-menu{
  position:absolute;
  top:40px;left:0;
  background:#111827;
  border-radius:8px;
  padding:10px 0;
  min-width:180px;
  display:none;
  flex-direction:column;
  box-shadow:0 10px 25px rgba(0,0,0,.3);
}
.dropdown-menu a{padding:10px 18px}
.dropdown.open .dropdown-menu{display:flex}

/* BUTTON */
.btn{
  background:#F5B00F;
  color:#ffffff;
  padding:9px 16px;
  border-radius:8px;
  font-weight:bold;
}

/* HAMBURGER */
.hamburger{display:none;flex-direction:column;cursor:pointer;gap:5px}
.hamburger span{width:25px;height:3px;background:#273238;border-radius:3px;transition:.3s}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(6px,-6px)}

/* MOBILE */
@media(max-width:900px){
  .hamburger{display:flex}
  .nav-links{
    position:fixed;
    top:0;right:-100%;
    height:100vh;width:260px;
    background:#F5B00F;
    flex-direction:column;
    align-items:flex-start;
    padding:90px 30px;
    transition:.4s ease;
  }
  .nav-links.active{right:0}
  .dropdown-menu{position:static;box-shadow:none;margin-top:10px}
}

/* PHONE MOCKUP */
.phone{
  width:260px;
  height:350px;
  background:#263238;
  border-radius:40px;
  padding:12px;
  box-shadow:0 30px 60px rgba(0,0,0,.25);
  position:relative;
  z-index:2;
}

.phone::before{
  content:"";
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:20px;
  background:#000;
  border-radius:20px;
}

.app-screen{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:30px;
}

/* store buttons */
.playstore,.appstore{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}

.playstore{
  background:#ffb400;
  color:#263238;
}

.appstore{
  border:2px solid #263238;
  color:#263238;
}

.playstore img,.appstore img{
  width:22px;
}

/* floating badges */
.card1{top:10%;left:-40px}
.card2{bottom:15%;left:-50px}
.card3{top:40%;right:-50px}
/* ===== MART HERO ===== */

.mart-hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px 8%;
  background:linear-gradient(135deg,#fff9e8,#ffffff);
  overflow:hidden;
}

/* LEFT */
.mart-left{max-width:550px}

.tag{
  background:#263238;
  color:#fff;
  padding:8px 14px;
  border-radius:30px;
  font-size:13px;
}

.mart-left h1{
  font-size:52px;
  margin:20px 0;
  color:#263238;
}

.mart-left h1 span{
  color:#ffb400;
}

.mart-left p{
  color:#555;
  margin-bottom:30px;
  font-size:17px;
}

/* buttons */
.hero-actions{
  display:flex;
  gap:15px;
  margin-bottom:25px;
}

.shop-btn{
  background:#ffb400;
  color:#263238;
  padding:14px 26px;
  border-radius:10px;
  font-weight:bold;
  text-decoration:none;
  transition:.3s;
}

.shop-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(255,180,0,.35);
}

.category-btn{
  border:2px solid #263238;
  padding:14px 26px;
  border-radius:10px;
  text-decoration:none;
  color:#263238;
  font-weight:bold;
}

.delivery-info{
  font-weight:bold;
  color:#263238;
}

.mart-right{
  position:relative;
  width:450px;
  height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* main image */
.hero-img{
  width:320px;
  z-index:2;
  animation:floatMain 5s ease-in-out infinite;
}

/* glow circle behind image */
.mart-right::before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  background:radial-gradient(circle,#ffb40055,#ffb40000 70%);
  border-radius:50%;
  z-index:1;
}

@keyframes floatMain{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

/* floating cards above image */
.floating-card{
  position:absolute;
  background:#fff;
  padding:18px 24px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
  font-weight:bold;
  z-index:3;
  animation:float 4s ease-in-out infinite;
}


.floating-card{
  position:absolute;
  background:#fff;
  padding:18px 24px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
  font-weight:bold;
  animation:float 4s ease-in-out infinite;
}

.card1{top:10%;left:10%}
.card2{top:60%;left:0;animation-delay:.5s}
.card3{top:20%;right:0;animation-delay:1s}
.card4{bottom:10%;right:20%;animation-delay:1.5s}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-18px)}
}

/* responsive */
@media(max-width:900px){
  .mart-hero{
    flex-direction:column;
    text-align:center;
    gap:50px;
  }

  .mart-left h1{font-size:34px}

  .mart-right{
    width:100%;
    height:260px;
  }
}


/* ===== ABOUT SECTION ===== */

.about-mart{
  padding:100px 8%;
  background:#ffffff;
  text-align:center;
}

.about-top h2{
  font-size:42px;
  color:#263238;
}

.about-top h2 span{
  color:#ffb400;
}

.about-top p{
  color:#666;
  margin:15px 0 60px;
}

/* grid */
.about-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-bottom:80px;
}

.about-card{
  background:#fff;
  padding:35px 25px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.35s;
}

.about-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.icon{
  font-size:40px;
  margin-bottom:15px;
}

.about-card h3{
  color:#263238;
  margin-bottom:10px;
}

.about-card p{
  color:#666;
  font-size:14px;
}

/* TRUST SECTION */

.trust-section{
  padding:80px 8%;
  background:linear-gradient(135deg,#fff7e0,#ffffff);
}

.trust-wrapper{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.trust-card{
  background:#fff;
  border-radius:18px;
  padding:35px 20px;
  text-align:center;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
  transition:.35s;
}

.trust-card:hover{
  transform:translateY(-8px) scale(1.02);
}

.trust-card h3{
  font-size:34px;
  color:#263238;
}

.trust-card p{
  color:#555;
  font-weight:bold;
}

.trust-card span{
  font-size:12px;
  color:#777;
}

/* highlight rating card */
.highlight{
  background:#263238;
  color:#fff;
}

.highlight h3{color:#ffb400}
.highlight p,.highlight span{color:#eee}

/* responsive */
@media(max-width:900px){
  .trust-wrapper{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .trust-wrapper{
    grid-template-columns:1fr;
  }
}


/* responsive */
@media(max-width:900px){
  .about-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .about-stats{
    flex-direction:column;
    gap:25px;
  }
}

@media(max-width:500px){
  .about-grid{
    grid-template-columns:1fr;
  }
}

/* ABOUT APP SECTION */

.about-app{
  padding:100px 8%;
  background:#ffffff;
}

.about-app-container{
  display:flex;
  align-items:center;
  gap:70px;
}

/* IMAGE SIDE */
.about-app-image{
  position:relative;
  flex:1;
  display:flex;
  justify-content:center;
}

.about-app-image img{
  width:320px;
  z-index:2;
  position:relative;
}

/* background shape */
.image-bg{
  position:absolute;
  width:350px;
  height:350px;
  background:#fff3cd;
  border-radius:40% 60% 70% 30% / 40% 40% 60% 60%;
  z-index:1;
}

/* floating badge */
.badge{
  position:absolute;
  bottom:40px;
  right:10px;
  background:#263238;
  color:#fff;
  padding:10px 18px;
  border-radius:30px;
  font-size:13px;
  z-index:3;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* TEXT SIDE */
.about-app-content{
  flex:1;
}

.about-app-content h2{
  font-size:40px;
  margin-bottom:20px;
  color:#263238;
}

.about-app-content h2 span{
  color:#ffb400;
}

.about-app-content p{
  color:#555;
  margin-bottom:18px;
  line-height:1.6;
}

.about-features{
  list-style:none;
  margin:25px 0;
}

.about-features li{
  margin-bottom:10px;
  font-weight:bold;
  color:#263238;
}

.about-btn{
  display:inline-block;
  background:#ffb400;
  color:#263238;
  padding:14px 26px;
  border-radius:10px;
  font-weight:bold;
  text-decoration:none;
  transition:.3s;
}

.about-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(255,180,0,.35);
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-app-container{
    flex-direction:column;
    text-align:center;
  }

  .badge{
    right:auto;
    bottom:-10px;
  }
}
/* WHY CHOOSE US */

.why-mart{
  padding:110px 8%;
  background:#f9fafb;
}

.why-heading{
  text-align:center;
  margin-bottom:70px;
}

.why-heading h2{
  font-size:42px;
  color:#263238;
}

.why-heading span{color:#ffb400}

.why-heading p{
  color:#666;
  margin-top:10px;
}

/* timeline */
.why-wrapper{
  position:relative;
  max-width:900px;
  margin:auto;
}

.why-wrapper::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:4px;
  height:100%;
  background:#ffb400;
  transform:translateX(-50%);
}

/* item */
.why-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:60px 0;
  position:relative;
}

.why-item:nth-child(even){
  flex-direction:row-reverse;
}

.why-number{
  width:70px;
  height:70px;
  background:#263238;
  color:#ffb400;
  font-size:22px;
  font-weight:bold;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.why-content{
  width:40%;
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
  transition:.3s;
}

.why-content:hover{
  transform:translateY(-8px);
}

.why-content h3{
  color:#263238;
  margin-bottom:10px;
}

.why-content p{
  color:#555;
  font-size:14px;
}

/* responsive */
@media(max-width:900px){

  .why-wrapper::before{left:20px}

  .why-item{
    flex-direction:column !important;
    align-items:flex-start;
    padding-left:50px;
  }

  .why-number{
    position:absolute;
    left:-5px;
  }

  .why-content{
    width:100%;
    margin-top:20px;
  }
}
/* DOWNLOAD SECTION */

.download-app{
  padding:120px 8%;
  background:linear-gradient(135deg,#263238,#1b2428);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.download-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* LEFT */
.download-left{max-width:520px}

.download-left h2{
  font-size:44px;
}

.download-left h2 span{color:#ffb400}

.download-left p{
  color:#cfd8dc;
  margin:20px 0 30px;
}

/* points */
.download-points{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:35px;
}

.download-points div{
  background:#ffffff10;
  padding:10px 18px;
  border-radius:30px;
}

/* store buttons */
.store-buttons{
  display:flex;
  gap:15px;
  margin-bottom:25px;
}

.store{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  background:#00000040;
  backdrop-filter:blur(8px);
  transition:.3s;
}

.store:hover{transform:translateY(-4px)}

.store img{width:28px}

/* QR */
.qr-box{
  display:flex;
  align-items:center;
  gap:15px;
  margin-top:15px;
}

.qr-box img{
  width:70px;
  background:#fff;
  padding:5px;
  border-radius:10px;
}

/* RIGHT */
.download-right{
  position:relative;
  width:420px;
  height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.phone-big{
  width:260px;
  height:520px;
  background:#000;
  border-radius:40px;
  padding:12px;
  z-index:2;
  box-shadow:0 40px 80px rgba(0,0,0,.5);
}

.phone-big img{
  width:100%;
  height:100%;
  border-radius:30px;
  object-fit:cover;
}

/* glow rings */
.ring{
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  border:2px solid #ffb40055;
  animation:pulse 3s infinite;
}

.ring2{
  width:520px;
  height:520px;
  animation-delay:1.5s;
}

@keyframes pulse{
  0%{transform:scale(.8);opacity:.7}
  100%{transform:scale(1.2);opacity:0}
}

/* responsive */
@media(max-width:900px){
  .download-container{
    flex-direction:column;
    text-align:center;
  }

  .download-right{
    height:420px;
  }
}
/* FOOTER */

.mart-footer{
  background:#1b2428;
  color:#cfd8dc;
  padding:80px 8% 30px;
}

.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:40px;
  margin-bottom:40px;
}

.footer-col h4{
  color:#fff;
  margin-bottom:18px;
}

.footer-col a{
  display:block;
  color:#b0bec5;
  text-decoration:none;
  margin:8px 0;
  transition:.3s;
}

.footer-col a:hover{
  color:#ffb400;
}

/* brand */
.brand p{
  margin:15px 0 20px;
  max-width:320px;
}

/* app badges */
.app-badges img{
  width:50px;
  margin-right:10px;
}

/* social */
.social{
  display:flex;
  gap:12px;
  margin-top:10px;
}

.social a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#263238;
  border-radius:50%;
}

.social a:hover{
  background:#ffb400;
  color:#000;
}

/* bottom */
.footer-bottom{
  border-top:1px solid #2f3b40;
  padding-top:20px;
  text-align:center;
  font-size:14px;
  color:#90a4ae;
}

/* responsive */
@media(max-width:900px){
  .footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:500px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .social{justify-content:center}
}

/* APP PREVIEW SECTION */

.app-preview{
  padding:120px 8%;
  background:#f9fafb;
  overflow:hidden;
}

.preview-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* text */
.preview-content{max-width:520px}

.preview-content h2{
  font-size:42px;
  color:#263238;
}

.preview-content h2 span{color:#ffb400}

.preview-content p{
  color:#555;
  margin:20px 0;
}

.preview-features{
  list-style:none;
  margin:25px 0;
}

.preview-features li{
  margin-bottom:12px;
  font-weight:bold;
  color:#263238;
}

.preview-btn{
  display:inline-block;
  background:#ffb400;
  color:#263238;
  padding:14px 26px;
  border-radius:10px;
  font-weight:bold;
  text-decoration:none;
  transition:.3s;
}

.preview-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 30px rgba(255,180,0,.35);
}

/* phones */
.preview-phones{
  position:relative;
  width:450px;
  height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* glow background */
.circle-bg{
  position:absolute;
  width:380px;
  height:380px;
  background:radial-gradient(circle,#ffb40033,transparent 70%);
  border-radius:50%;
}

/* images */
.phone{
  width:230px;
  border-radius:30px;
  box-shadow:0 30px 60px rgba(0,0,0,.25);
  position:absolute;
  transition:.4s;
}

/* overlapping effect */
.screen1{
  transform:rotate(-8deg) translateX(-60px);
  z-index:2;
}

.screen2{
  transform:rotate(8deg) translateX(60px);
  z-index:3;
}

/* hover animation */
.preview-phones:hover .screen1{
  transform:rotate(-12deg) translateX(-80px) translateY(-10px);
}

.preview-phones:hover .screen2{
  transform:rotate(12deg) translateX(80px) translateY(-10px);
}

/* responsive */
@media(max-width:900px){
  .preview-container{
    flex-direction:column;
    text-align:center;
  }

  .preview-phones{
    height:420px;
    width:100%;
  }

  .phone{
    width:180px;
  }
}
