* {
  box-sizing: border-box;
  padding: 0%;
  margin: 0%;
}

body {
    background-color: #000000;
    font-family: "alk rex", sans-serif;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

@font-face {
    font-family: "bpg le";
    src: url(fonts/bpg-le-studio-04-webfont.ttf) format(truetype);
}

@font-face {
    font-family: "alk rex";
    src: url(fonts/alk-rex-bold-79368871481.otf) format(truetype);
}

.container {
  max-width: 1200px;
  margin: 0 auto;      
  padding: 15px 20px;  
}

header {
    background-color: #9B111E;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: 3s;
    width: 100%; 
}

.fixed-header.opaque {
  opacity: 0.7;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
width: 60px;
}

.logo a, nav a {
    text-decoration: none;
    color: #fff;
}

nav a:hover {
    color: #000000;
}

nav {
    font-family: "alk rex", sans-serif;
    display: flex;
    gap: 20px;
    font-weight: 700;
}

.hidden-burger-menu {
    display: none;
}

.red-color {
  margin-top: 55px;
  border-bottom: 1px solid #9B111E
  
}
.mainpic {
  display: none;
}

.disclaimer {
  max-width: 600px;          /* optional width limit */
  margin: 20px auto;        
  padding: 15px 20px;
  border: 2px solid red;     /* red border */
  border-radius: 10px;
  text-align: center;        /* center text */
  color: red;
  background: #fff0f0;       /* light red background for contrast */
  font-weight: bold;
  font-size: 20px;
}

/* .first {
  color: #9B111E;
} */
.first {
  background: linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 .products-page {
  margin-top: 120px;
  color: white;
}

.products-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  letter-spacing: 2px;
}
.products-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 50px 0 100px;
}

.product-item {
  display: flex;
  gap: 20px;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  align-items: flex-start;
  transition: 0.3s;
}

.product-item:hover {
  transform: translateY(-5px);
}
/* IMAGE (same as your card style) */
.product-image {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* TEXT */
.product-info {
  flex: 1;
}

.product-info h3 {
  margin-bottom: 5px;
}

.product-info p {
  color: #aaa;
}

.price {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

/* BUTTON */
.buy-btn {
  display: inline-block;
  background: #ff0033;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
}


/* Blog */

.blog-section {
  padding: 80px 20px;
  background: #000;
}

.header-line {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-bottom: 40px;
  padding: 5px;
  background-color: #9B111E;
}

.header-line h2 {
  color: #fff;
  font-size:35px;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.blog-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.blog-item.reverse {
  flex-direction: row-reverse;
}

.blog-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  display: block;
}

.blog-content {
  max-width: 500px;
}

.blog-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #fff;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.read-more {
  display: inline-block;
  padding: 12px 28px;
  background: #9B111E;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s;
}

.read-more:hover {
  background: #e63946;
}


/* Section background optional */
.partners-section {
  background-color: #000;
  padding: 60px 20px;
}

/* Reuse header-line style like blog/products title */
.partners-section .header-line {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 5px;
  background-color: #9B111E;
}

.partners-section .header-line h2 {
  color: #fff;
  font-size: 35px;
}

/* Wrapper for logos */
.partners-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.partners-wrapper img {
  width: 200px;
}

/* Individual partner logo card */
.partner-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #111; /* optional dark background */
  border-radius: 8px;
  transition: transform 0.3s, background 0.3s;
}

.partner-card img {
  width: 200px;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

/* Hover effect */
.partner-card:hover {
  transform: scale(1.05);
  background-color: #9B111E;
}

/* Footer */

.site-footer {
  background: #9B111E;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: "alk rex", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}
.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-top: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col h4 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
} 
.footer-col p {
  font-size: 14px;
  margin-bottom: 10px;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
}
.social-links img {
  width: 40px;
}
.social-links img:hover {
  background-color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}



.burger {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: none;
  z-index: 1100;
}

.burger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 9px;
}

.burger span:nth-child(3) {
  bottom: 0;
}


.burger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.stats-section {
  background-color: #000;
  padding: 60px 20px;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.stat-card {
  background-color: #9B111E;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  flex: 1 1 200px; 
  transition: transform 0.3s, background 0.3s;
  cursor: default;
}

.stat-card h3 {
  font-size: 36px;
  margin-bottom: 10px;
  font-family: "alk rex", sans-serif;
}

.stat-card:hover {
  transform: translateY(-5px);
  background-color: #e63946;
}


/* PRODUCTS SWIPER */

.products-section {
  padding: 80px 0;
  background: #000;
}

.product-swiper {
  position: relative;
  overflow: hidden;
}

.product-wrapper {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
  overflow-x: auto;      
  scroll-behavior: smooth; 
  cursor: grab;           
  user-select: none;
}

.product-wrapper:active {
  cursor: grabbing;
}


.product-wrapper::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 100%;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin: 15px 0 5px;
}

.product-card p {
  font-size: 14px;
  color: #aaa;
}

.price {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.stock {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

.in-stock .stock {
  background: green;
}

.out-of-stock .stock {
  background: #9B111E;
}


.product-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 5px 12px;
  cursor: pointer;
  z-index: 10;
}

.product-btn.prev { left: 10px; }
.product-btn.next { right: 10px; }

.buy-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #9B111E;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s;
}

.buy-btn:hover {
  background-color: #e63946;
}

.out-of-stock .buy-btn {
  display: none; 
}


.product-swiper {
  position: relative;
}

.arrow-prev,
.arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(155, 17, 30, 0.8);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.arrow-prev { left: 5px; }
.arrow-next { right: 5px; }

.contact-page {
  margin-top: 120px;
  margin-bottom: 50px;
  color: #fff;

}

.contact-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

/* GRID LAYOUT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT SIDE */
.contact-info {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #333;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
}

.info-item span {
  font-size: 20px;
}

/* RIGHT SIDE */
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.social-btn {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-btn i {
  font-size: 20px;
}

/* WHATSAPP */
.whatsapp {
  background: #25D366;
}

/* INSTAGRAM */
.instagram {
  background: #9B111E;
}

/* HOVER */
.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.contact-info:hover {
  border-color: #9B111E;
}


/* MAIN SECTION */

.main-section {
  display: flex;
  margin-top: 120px;
}
.main-content {
  display: flex;
  align-items: center;
  gap: 200px;
}
.main-content img {
  width: 500px;
}
.main-content h1 {
color: #fff;
font-size: 50px;
}

/* ABOUT PAGE */

.about-page {
  margin-top: 120px;
  margin-bottom: 50px;
  color: #fff;
}

.about-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT */
.about-info {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #333;
}

.about-info h2 {
  margin-bottom: 15px;
  color: #9B111E;
}

.about-info p {
  margin-bottom: 15px;
  color: #ccc;
  line-height: 1.6;
}
.about-info:hover {
  border-color: #9B111E;
}

/* RIGHT */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.feature-box {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #333;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
}

.feature-box:hover {
  border-color: #9B111E;
  transform: translateY(-3px);
}

/* TERMS PAGE */

.terms-page {
  margin-top: 120px;
  margin-bottom: 50px;
  color: #fff;
}

.terms-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.terms-box {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #333;
  max-width: 800px;
  margin: 0 auto;
}

.terms-box h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #9B111E;
}

.terms-box p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.terms-box:hover {
  border-color: #9B111E;
}
.bar {
  width: 100%;          /* takes full width of card */
  max-width: 200px;     /* optional limit */
  height: 6px;
  background: #222;
  border-radius: 10px;
  overflow: hidden;
    }

    .fill {
      height: 100%;
      background: linear-gradient(90deg, yellow, orange, red);
    }

    /* levels */
    .l1 { width: 20%; }
    .l2 { width: 40%; }
    .l3 { width: 60%; }
    .l4 { width: 80%; }
    .l5 { width: 100%;}

    .blogpage-card {
  display: flex;
  gap: 20px;
  background: #111;
  padding: 15px;
  border-radius: 10px;
  align-items: flex-start;
  margin-top: 120px;
}

/* image left */
.blogpage-card img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* text right */
.blogpage-content h2 {
  margin: 0 0 10px;
  font-size: 25px;
  color: #9B111E;
}

.blogpage-content p {
  margin: 0;
  color: #ccc;
  font-size: 20px;
}