
    :root{
      --bg:#15233D;
      --bg-2:#0f141b;
      --card:#15233D;
      --muted:#93a0b4;
      --text:#e8f0ff;
      --accent:#8B1E24;
      --accent-2:#5ad67d;
      --ring: rgba(46,196,182,.45);
      --shadow: 0 10px 30px rgba(0,0,0,.35);
    }
    *{box-sizing:border-box}
    html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--text);}
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    /* Topbar */
    .topbar{display:flex;gap:16px;align-items:center;justify-content:center;padding:8px 16px;color:var(--muted);font-size:12px;border-bottom:1px solid rgba(255,255,255,.06)}
    .topbar i{vertical-align:middle;margin-right:6px;color:var(--accent)}

    /* Navbar */
    .nav{position:sticky;top:0;z-index:50;;backdrop-filter:saturate(140%) blur(8px);border-bottom:1px solid rgba(255,255,255,.06)}
    .nav-wrap{max-width:100%;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:14px 20px}
    .brand{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.3px}
    .brand i{font-size:22px;color:var(--accent)}
    .menu{display:flex;gap:22px;align-items:center}
    .menu a{opacity:.9}
    .menu a:hover{color:antiquewhite}
    .cta{    display: inline-flex
;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #8B1E24;
    color: antiquewhite;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgb(196 46 46 / 45%);
}

.cta :hover
{
color: antiquewhite;
    
}
    .hamburger{display:none;font-size:26px}

    /* Hero */
    .hero{position:relative;min-height:90vh;display:grid;place-items:center;overflow:hidden}
   .hero h1{font-size:42px;line-height:1.1;margin:0 0 14px}
    .hero p{color:#c7d3e0;margin:0 0 24px}
    .btn{
            display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #8B1E24;
    color: antiquewhite;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgb(196 46 46 / 45%);
}
    .stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
    .stat{background:rgba(255,255,255,.06);padding:16px;border-radius:14px;border:1px solid rgba(255,255,255,.08)}
    .stat h3{margin:0;font-size:24px}
    .stat span{color:var(--muted);font-size:12px}

    /* Section base */
    section{padding:64px 20px}
    .container{max-width:100%;margin:0 auto}
    .section-title{font-size:26px;margin:0 0 24px;font-weight:800;text-align:center}
    .section-sub{color:var(--muted);text-align:center;margin-top:-12px;margin-bottom:32px}

    /* We Deal In */
    .cards{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
    .card{background:var(--card);border:1px solid rgba(255,255,255,.06);border-radius:16px;overflow:hidden;box-shadow:var(--shadow)}
    .card img{height:303px;width:94%;object-fit:cover}
    .card h4{margin:10px 12px 14px}

    /* Products strip */
    .strip{position:relative}
    .scroll{display:flex;gap:16px;overflow:auto;scroll-snap-type:x mandatory;padding-bottom:6px}
    .product{min-width:260px;background:var(--card);border:1px solid rgba(255,255,255,.06);border-radius:16px;box-shadow:var(--shadow);scroll-snap-align:start}
    .product .thumb{height:160px;background:#0c1118;border-bottom:1px solid rgba(255,255,255,.06);place-items:center}
    .product h5{margin:12px 14px 8px}
    .chip{margin:0 14px 14px;display:inline-flex;align-items:center;gap:8px;border:1px dashed rgba(255,255,255,.25);padding:8px 10px;border-radius:999px;color:#b8c5d8}
    .strip .navbtn{position:absolute;top:40%;transform:translateY(-50%);border:none;background:rgba(255,255,255,.06);backdrop-filter:blur(6px);padding:10px;border-radius:12px;cursor:pointer}
    .strip .prev{left:-6px}
    .strip .next{right:-6px}

    /* About */
    .about{display:grid;grid-template-columns:1fr 1fr;gap:30px}
    .about p{color:#b9c6d8}
    .about .imgwrap{border-radius:18px;overflow:hidden;}

    /* Gallery */
    .gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
    .gallery img{border-radius:14px;height:200px;width:100%;object-fit:cover;border:1px solid rgba(255,255,255,.06)}

    /* Testimonials */
    .testi{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    .quote{background:var(--card);border:1px solid rgba(255,255,255,.06);border-radius:16px;padding:18px;box-shadow:var(--shadow)}
    .quote p{margin:8px 0 0;color:#c2cfde}

    /* Contact */
    .contact{display:grid;grid-template-columns:1.2fr .8fr;gap:24px}
    .contact .card{padding:0}
    .map{height:320px;border:0;width:100%;border-radius:16px}
    .list{display:grid;gap:14px}
    .row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
    .input, textarea{width:100%;padding:12px 14px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:#0c121a;color:var(--text);    margin: 5px;}
    .submit{margin-top:10px}

    /* Footer */
    footer{padding:28px 20px;border-top:1px solid rgba(255,255,255,.06);color:#9fb0c6}
    .foot{max-width:100%;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:16px}
    .copyright{margin-top:14px;font-size:12px;text-align:center;color:#90a0b8}
     .hero-inner{position:relative;text-align:left;max-width:100%;padding:80px 20px;display:grid;grid-template-columns:1.2fr .8fr;gap:30px} 

    /* Utilities */
    .muted{color:var(--muted)}

    /* Responsive */
    @media (max-width: 1000px){
      .hero-inner{grid-template-columns:1fr}
      .about{grid-template-columns:1fr}
      .contact{grid-template-columns:1fr}
      .gallery{grid-template-columns:1fr 1fr}
      .testi{grid-template-columns:1fr}
      .cards{grid-template-columns:1fr 1fr}
      .foot{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 640px){
      .menu{display:none}
      .hamburger{display:block}
      .cards{grid-template-columns:1fr}
      .gallery{grid-template-columns:1fr}
      .foot{grid-template-columns:1fr}
      .hero h1{font-size:32px}
    }
    /* Mobile menu */
    .mobile{display:none;position:fixed;inset:0;background:rgba(5,10,16,.95);backdrop-filter:blur(6px);padding:80px 24px;z-index:60}
    .mobile a{display:block;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.06)}
    .mobile.show{display:block}


    .blog-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.blog-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-img {
    transform: scale(1.05);
}
.blog-title {
    transition: color 0.3s ease;
}
.blog-title:hover {
    color: #0d6efd; /* Bootstrap primary color */
}



/* Section */
  #blog-section {
    
    color: #f5f5f5;
    padding: 60px 20px;
    font-family: "Arial", sans-serif;
  }

  /* Header */
  .blog-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .blog-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .blog-header p {
    color: #999;
    font-size: 1rem;
  }

  /* Blog Grid */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  /* Blog Card */
  .blog-card {
    background: #1a1a1a;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  }
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  }

  /* Blog Image */
  .blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .blog-card:hover .blog-img {
    transform: scale(1.05);
  }

  /* Blog Body */
  .blog-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .blog-date {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
  }

  .blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .blog-title a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
  }
  .blog-title a:hover {
    color: #ff4b5c;
  }

  .blog-excerpt {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
  }

  /* Blog Button */
  .blog-btn {
    margin-top: 15px;
    display: inline-block;
    background: #8B1E24;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255,75,92,0.4);
  }
  .blog-btn:hover {
    background: linear-gradient(135deg, #b31217, #ff4b5c);
    box-shadow: 0 6px 18px rgba(255,75,92,0.6);
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
  }


  .reviewmain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 5%;
  background: #f8f4f0;
  flex-wrap: wrap;
}

/* Left section */
.reviewsleft {
  flex: 1;
  min-width: 280px;
}

.reviewsleft h2 {
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 10px;
}

.reviewsleft .subtitle {
  font-size: 1.1rem;
  color: #555;
}

/* Right section */
.reviewsright {
  flex: 1.5;
  min-width: 320px;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.review {
  flex: 0 0 100%; /* always full width */
  padding: 30px 20px;
  text-align: center;
  color: #333;
  font-size: 1.1rem;
  box-sizing: border-box;
}

.review p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-style: italic;
}

.review h4 {
  margin: 0;
  font-weight: bold;
  color: #8B4513;
}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #8B4513;
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  z-index: 5;
}

.prev:hover, .next:hover {
  opacity: 1;
}

.prev { left: 10px; }
.next { right: 10px; }

/* RESPONSIVE BEHAVIOR */
@media (max-width: 768px) {
  .reviewmain {
    flex-direction: column; /* stack */
    text-align: center;
    gap: 30px;
    padding: 40px 20px;
  }
  .reviewsleft {
    order: 1; /* always top */
  }
  .reviewsright {
    order: 2; /* always below */
    width: 100%;
  }
  .reviewsleft h2 {
    font-size: 1.6rem;
  }
  .reviewsleft .subtitle {
    font-size: 1rem;
  }
  .review {
    font-size: 1rem;
    padding: 20px 15px;
  }
}



.pp-container {
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 5%;
    transition:background 0.8s ease-in-out;
    position:relative;
    flex-wrap:wrap;
  }

  .pp-content {
    max-width:400px;
    color:black;
    transition:opacity 0.6s ease, transform 0.6s ease;
    z-index:2;
  }
  .pp-content h1 { font-size:2rem; margin-bottom:20px; }
  .pp-content button {
    padding:12px 20px;
    border:none;
    background:black;
    color:white;
    font-weight:bold;
    border-radius:6px;
    cursor:pointer;
  }

  .pp-image-box {
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .pp-image-box img {
    width:450px;
    max-width:100%;
    height:auto;
    filter:drop-shadow(0px 20px 20px rgba(0,0,0,0.3));
    transition:opacity 0.6s ease, transform 0.6s ease;
  }

  /* Left Menu (container ke andar fix) */
  .pp-left-menu {
    position:absolute;
    top:50%;
    left:10px;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:3;
  }
  .pp-menu-btn {
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    background:transparent;
    border:1px solid black;
    padding:8px;
    border-radius:20px;
    cursor:pointer;
    font-weight:bold;
    transition:all 0.3s ease;
    font-size:14px;
  }
  .pp-menu-btn.active { background:black; color:white; }

  /* 📱 Responsive Design */
  @media (max-width: 768px) {
    .pp-container {
      flex-direction:column;
      justify-content:center;
      text-align:center;
      padding:20px;
      height: 388px;
    }
    .pp-left-menu {
      flex-direction:row;
      position:static;
      transform:none;
      justify-content:center;
      margin-bottom:20px;
    }
    .pp-menu-btn {
      writing-mode:horizontal-tb;
      transform:none;
      padding:8px 12px;
      font-size:13px;
    }
    .pp-content {
      max-width:100%;
      margin-bottom:20px;
    }
    .pp-content h1 { font-size:1.5rem; }
    .pp-image-box img {
             width: 99%;
        max-width: 108px;
    }
  }

  @media (max-width: 480px) {
    .pp-content h1 { font-size:1.2rem; }
    .pp-content button { font-size:13px; padding:10px 16px; }
    .pp-menu-btn { font-size:12px; padding:6px 10px; }
  }