@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

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

body {
  background: #e4dab0;
  font-family: 'Poppins', sans-serif;
}

/*---------global------*/
.container {
  max-width: 95%;
  margin: auto;
  padding-top: 10px;
}


a {
  text-decoration: none;
  transition: 0.5s;
}

img {
  width: 100%;
  height: 100%;
}

ul {
  list-style: none;
}

.flex {
  display: flex;
}

.flex1 {
  display: flex;
  justify-content: space-between;
}

i {
  cursor: pointer;
  transition: 0.5s;
}

/*---------global------*/
/*---------header------*/
.home {
  
  
 /*background-image: url("../image/republicday.jpeg"); */
  height: 80vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  

  
 
}

.home_content {
  display: flex;
  padding-top: 20px; 
  align-items: flex-start; 
  justify-content: space-between;
  gap: 50px; 
  padding: 20px; 
  min-height: 60vh; 
}

.left, .right {
  flex: 1; 
}



@keyframes moveUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); } 
  100% { transform: translateY(0); } 
}

.right img {
  width: calc(33.33% - 10px); /* 3 images per row */
  height: auto;
  object-fit: cover;
  animation: moveUpDown 2s infinite ease-in-out alternate; /* Auto move effect */
}

        @media (max-width: 768px) {
            .home_content {
                flex-direction: column;
                text-align: center;
            }
            .right {
                display: none;
            }
        }

.logo img {
  width: 250px;
}

.headerbg {
  height: 100vh;
  width: 100%;
  background: linear-gradient(to right, rgba(34, 31, 31, 1) 0%, rgba(34, 31, 31, 0.4) 100%)
}

header {
  height: 10vh;
  background: rgba(252, 2, 2, 0.2);
}

header .navbar {
  align-items: center;
  transition: 0.5s;
}

header nav ul {
  display: inline-block;
  font-size: 16px;
}

header nav ul li a {
  color: white;
  transition: all 300ms ease-in-out;
}

header nav ul li a:hover {
  color: #fffb00;
}

header nav ul li {
  margin-right: 20px;
  display: inline-block;
}

header .navbar span {
  text-align: center;
  margin-left: 20px;
  color: rgb(255, 0, 0);
  font-size: 25px;
  display: none;
}

.subscribe i:nth-child(1) {
  margin-top: 17px;
}

.subscribe i {
  font-size: 20px;
  margin-right: 20px;
}

#palybtn {
  background: #E50916;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
}

button {
  background: #E50916;
  border: none;
  outline: none;
  color: white;
  padding: 0px 30px;
  cursor: pointer;
}

.subscribe button {
  margin-left: 15px;
}

header.sticky .headerbg {
  position: relative;
}

header.sticky {
  z-index: 10;
  position: fixed;
  top: 0;
  width: 100%;
  background: #fa0404;
  transition: 0.5s;
  height: 10vh;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

header.sticky .subscribe {
  display: none;
}

@media only screen and (max-width:768px) {
  header nav ul {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: #ce1717;
    overflow: hidden;
    transition: max-height 0.5s;
    z-index: 100;
  }

  header nav ul li {
    display: block;
    margin: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  header .navbar span {
    color: white;
    display: block;
    cursor: pointer;
    
  }

  .home {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 70vh;
  }

  .subscribe {
    display: none;
  }
}

/*---------home_content------*/
.left {
  padding: 20px;
  max-width: 700px;
  margin: auto;
  text-align: left;
  color: white;
}

.left h1 {
  font-size: 72px;
  color: yellow;
  margin-bottom: 15px;
}

.left p {
  font-size: 16px;
 
  margin: 10px 0;
}

.left p b {
  color: yellow;
}

/* Button styles */
.left .button {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.left .btn {
  background-color: #1100ff;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.left .btn:hover {
  background-color: #0a00b3;
}

/* Responsive */
@media (max-width: 768px) {
  .left {
    padding: 15px;
    text-align: center;
  }

  .left .button {
    justify-content: center;
  }

  .left h1 {
    font-size: 46px;
  }

  .left p {
    font-size: 15px;
  }
}



.right {
  width: 50%;
}


.top {
  margin-top: 10%
}

.mtop {
  margin-top: 5%
}

h1 {
  font-size: 80px;
  letter-spacing: 2px;
  line-height: 90px;
  text-transform: uppercase;
}

.time {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 40px;
}

.time label {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  text-align: center;
  line-height: 40px;
}

.time i {
  font-size: 5px;
  line-height: 40px;
  margin-left: 20px;
  margin-right: 20px;
}

.home_content p {
  font-size: 20px;
  line-height: 35px;
}

.btn {
  padding: 20px 40px;
  margin-right: 20px;
}

.home_content #palybtn {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: white;
  color: #E50916;
}

.button {
  margin-top: 30px;
}

.button p {
  margin-top: 12px;
  margin-left: 20px;
  font-size: 18px;
}

/*---------header------*/

/*---------popular------*/
/* ===== Popular Section Styling ===== */
.popular {
  position: relative;
  color: white;
  padding: 40px 20px;
  overflow: hidden;
  background: linear-gradient(270deg, #221F1F, #3e1c3a, #1f3e3e, #221F1F);
  background-size: 600% 600%;
  animation: animatedBG 15s ease infinite;
}

@keyframes animatedBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.popular {
  position: relative;
  z-index: 1;
  background: transparent; /* remove solid bg */
}


.popular .heading {
  text-align: center;
  margin-bottom: 30px;
}

.popular .heading button {
  background-color: #e92323;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popular .heading button:hover {
  background-color: #b71c1c;
}

/* ===== Owl Carousel Items ===== */
.owl-carousel .item {
  padding: 15px;
}

.popular .box {
  background: #2c2c2c;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.popular .box:hover {
  transform: translateY(-6px);
}

.popular .imgBox {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.popular .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.popular .box:hover .imgBox img {
  transform: scale(1.1);
}

.popular .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popular .box:hover .content {
  opacity: 1;
}

.popular .content i {
  font-size: 40px;
  color: white;
}

.popular .text {
  padding: 15px;
  text-align: center;
}

.popular .text h3 {
  font-size: 16px;
  color: #e92323;
  margin-bottom: 8px;
}

.popular .time span {
  font-size: 14px;
  color: #aaa;
}

/* ===== Owl Carousel Nav and Dots ===== */
.owl-nav button {
  background: transparent;
  border: none;
  color: white;
  font-size: 36px;
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
}

.owl-nav .owl-prev {
  left: -15px;
}

.owl-nav .owl-next {
  right: -15px;
}

.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.4;
  border-radius: 50%;
  margin: 5px;
  display: inline-block;
}

.owl-dots .owl-dot.active span {
  opacity: 1;
}

/*---------popular------*/
/*---------new_realase------*/
.new_realase {
  color: white;
}

.heading h2 {
  margin-bottom: 20px;
}

.heading h2 span {
  border-left: 3px solid #E50916;
  margin-right: 30px;
  font-weight: bold;
}

.time h3 {
  font-size: 50px;
}

.new_realase .time img {
  width: 60px !important;
  height: 60px;
  margin-top: -10px;
  margin-right: 10px;
}

.new_realase .items {
  border-left: 3px solid #E50916;
  padding: 40px;
  height: 85vh;
}

.new_realase .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0;
  z-index: -1;
}

.new_realase .items {
  width: 100%;
  background: linear-gradient(to right, rgba(34, 31, 31, 1) 0%, rgba(34, 31, 31, 0.4) 100%)
}

.new_realase p {
  font-size: 18px;
  line-height: 35px;
}

/*---------new_realase------*/
/*---------footer------*/
footer {
  background: #e92323;
  color: white;
  padding: 40px 20px;
  font-size: bold;
}

footer a {
  color: white !important;
  text-decoration: none !important;
}

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

footer .box {
  flex: 1 1 250px;
  min-width: 200px;
}

footer h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: white;
}

footer p,
footer ul li {
  font-size: 14px;
 
  line-height: 1.6;
  margin-bottom: 10px;
}

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

footer ul li {
  transition: color 0.3s;
}

footer ul li:hover a {
  color: yellow !important;
}

.flex ul li a {
  display: block;
}

footer .box a i {
  font-size: 20px;
  margin-right: 10px;
}

footer .box a i:hover {
  color: yellow;
}

footer .legal {
  text-align: center;
  background: #f74f5b;
  padding: 10px;
  margin-top: 30px;
  font-size: 14px;
 
}

/* ========================= */
/* 📱 Mobile Responsiveness */
/* ========================= */
@media screen and (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  footer .box {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }

  footer .box a i {
    margin: 5px;
  }
}


/* ......................................................... */


/* cards */
.container-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.card img {
  width: 100%;
  height: 250px; /* Or increase to 280/300 if you want taller cards */
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px 12px 0 0;
}


.card h3 {
  font-size: 18px;
  margin: 16px 0 10px;
  color: #e92323;
}

.card button {
  background: #e92323;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.card button:hover {
  background-color: #b71c1c;
}

@media (max-width: 1024px) {
  .container-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container-card {
    grid-template-columns: 1fr;
  }

  .card {
    width: 90%;
    margin: 0 auto;
  }
}



/*============================================================================================ About======================================================================================= */

/* about.html page  */
.about-us {
  padding: 80px 15px;
  text-align: center;
  margin-top: 60px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-direction: row-reverse; /* Default: Image Left, Description Right */
}

.about-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.about-image:hover {
  transform: scale(1.05);
}

.about-text {
  width: 50%;
  padding: 20px;
  color: #333;
}

.about-text h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in-out;
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  animation: fadeIn 2s ease-in-out;
}

.intro-text {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}
/* Animations */
@keyframes fadeIn {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  
  .about-item {
      flex-direction: column;
      text-align: center;
  }

  .about-text {
      width: 100%;
      padding: 10px;
  }

  .about-container {
      padding: 20px;
  }

  .about-text h1 {
      font-size: 28px;
  }

  .about-text p {
      font-size: 16px;
  }

  .about-image {
      max-width: 100%;
      margin-top: 20px;
  }
}
/* about.html  End  */

/*======================================================================================= contact============================================================================================ */
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background:url('../image/home11.jpg') no-repeat center center/cover;
  padding: 20px;
}
.contact-container {
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact-form {
  flex: 1;
  padding: 40px;
}
.contact-form h2 {
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.form-group textarea {
  resize: none;
}
.btn {
  width: 100%;
  padding: 10px;
  background: blue;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background: darkblue;
}
.contact-image {
  flex: 1;
  background: url('../image/con-img.jpg') no-repeat center center/cover;
}
@media (max-width: 768px) {
  .contact-container {
      flex-direction: column;
  }
  .contact-image {
      height: 200px;
  }
}


/* ================================================Product======================================================================================= */


*{
   font-family: 'Nunito', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   transition: all .2s linear;
   text-transform: capitalize;
}

html{
   font-size: 55.5%;
   overflow-x: hidden;
}

body{
   background: #eee;
}

.container-product{
   max-width: 1200px;
   margin:0 auto;
   padding:3rem 2rem;
}

.container-product .title{
   font-size: 3.5rem;
   color:#ff0000;
   margin-bottom: 3rem;
   text-transform: uppercase;
   text-align: center;
}

.container-product .products-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   gap:2rem;
}

.container-product .products-container .product{
   text-align: center;
   padding:3rem 2rem;
   background: #fff;
   box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
   outline: .1rem solid #ccc;
   outline-offset: -1.5rem;
   cursor: pointer;
}

.container-product .products-container .product:hover{
   outline: .2rem solid #222;
   outline-offset: 0;
}

.container-product .products-container .product img{
   height: 25rem;
}

.container-product .products-container .product:hover img{
   transform: scale(.9);
}

.container-product .products-container .product h3{
   padding:.5rem 0;
   font-size: 2rem;
   color:#444;
}

.container-product .products-container .product:hover h3{
   color: #E50916;
}

.container-product .products-container .product .price{
   font-size: 2rem;
   color:#444;
}

.products-preview{
   position: fixed;
   top:0; left:0;
   min-height: 100vh;
   width: 100%;
   background: rgba(0,0,0,.8);
   display: none;
   align-items: center;
   justify-content: center;
}

.products-preview .preview{
   display: none;
   padding:2rem;
   text-align: center;
   background: #fff;
   position: relative;
   margin:2rem;
   width: 40rem;
}

.products-preview .preview.active{
   display: inline-block;
}

.products-preview .preview img{
   height: 30rem;
}

.products-preview .preview .fa-times{
   position: absolute;
   top:1rem; right:1.5rem;
   cursor: pointer;
   color:#ff0202;
   font-size: 4rem;
}

.products-preview .preview .fa-times:hover{
   transform: rotate(90deg);
}

.products-preview .preview h3{
   color:#444;
   padding:.5rem 0;
   font-size: 2.5rem;
}

.products-preview .preview .stars{
   padding:1rem 0;
   font-size: 1.7rem;
}

.products-preview .preview .stars i{
   color:#27ae60;
}

.products-preview .preview .stars span{
   color:#999;
}

.products-preview .preview p{
   line-height: 1.5;
   padding:1rem 0;
   font-size: 1.6rem;
   color:#777;
}

.products-preview .preview .price{
   padding:1rem 0;
   font-size: 2.5rem;
   color:#27ae60;
}

.products-preview .preview .buttons{
   display: flex;
   gap:1.5rem;
   flex-wrap: wrap;
   margin-top: 1rem;
}

.products-preview .preview .buttons a{
   flex:1 1 16rem;
   padding:1rem;
   font-size: 1.8rem;
   color:#444;
   border:.1rem solid #444;
}

.products-preview .preview .buttons a.cart{
   background:  #E50916;;
   color:#fff;
}

.products-preview .preview .buttons a.cart:hover{
   background:  #ffbb01;;
}

.products-preview .preview .buttons a.buy:hover{
   background: #E50916;;
   color:#fff;
}


@media (max-width:991px){

   html{
      font-size: 55%;
   }

}

@media (max-width:768px){

   .products-preview .preview img{
      height: 25rem;
   }

}

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

   html{
      font-size: 50%;
   }

} */

/* ===============================================================================Blog======================================================================================================== */
