/*
Theme Name: New Bankaro
Author: Sumit
Version: 1.0
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
 background-color: #0f0f0f;
  color: #fff;
  overflow-x: hidden;
}


.header {
  background: linear-gradient(90deg, #2b1b12, #5a3a26);
  padding: 18px 48px;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f5d7a1;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a,
.nav span {
  font-size: 15px;
  color: #f2e6d8;
  text-decoration: none;
}

.signup-btn {
  background: linear-gradient(135deg, #f5d7a1, #c49a6c);
  border: none;
  padding: 10px 26px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}


.hero-banner {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(90deg, #b47a4a, #d8b084);
  display: flex;
  align-items: center;
}


.hero-inner {
  width: 100%;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}


.hero-text h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.2;
  color: #ffffff;
  max-width: 520px;
}

.hero-btn {
  margin-top: 32px;
  padding: 16px 42px;
  border-radius: 40px;
  border: none;
  background: #e7bf86;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}


.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  max-width: 720px;
  height: auto;
}


.image-box {
  position: relative;
  width: 100%;
  max-width: 900px; /* image size ke hisab se */
  margin: auto;
}

.image-box img {
  width: 1000px;
  padding: 100px 0px;
}


.text-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.text-layer h1 {
  font-size: 36px;
  font-weight: 500;
   margin-left: 50px;
   margin-top: 40px;
}

.text-layer p {
  font-size: 18px;
  margin-top: 12px;
  margin-left: 70px;
  opacity: 0.9;
}

.products-section {
  background: #0f0f0f;
  padding: 110px 60px 120px;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 70px;
  position: relative;
}

.products-grid {
  max-width: 100%px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.product-card {
  background: radial-gradient(circle at bottom, #1f1f1f, #0b0b0b);
  border-radius: 28px;
  padding: 34px 26px 38px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  max-height: 210px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 30px;
}

.product-card h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 500;
}

.product-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #cfcfcf;
}


body{
  background: #0b0b0b;
  color: white;
}


.hero1{
  min-height: 100vh;
  width: 100%;
  padding: 70px 15px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.hero-text1{
  max-width: 900px;
}

.hero-text1 h1{
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-text1 p{
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}


.hero-image1{
  width: 100%;
  max-width: 1300px;
  margin-top: 40px;
  height: 520px; /* screenshot jaisa look */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image1 img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* full fit like banner */
}

/* responsive */
@media (max-width: 768px){
  .hero-image{
    height: 360px;
  }
}


  