
*
{
    padding: 0;
    margin: 0;
     font-family:'Poppins',sans-serif;

}
body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f0e1;
}

/* Section styling */
.video-section{
    padding: 40px;
    text-align: center;
    background-color:#f5f0e1 ;
}

/* Title */
.video-title{
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 500;
     text-align:center;
    font-weight:500;
    color: #2c3314;
    margin-bottom:8px;
}

/* Container for videos */
.video-container{
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Video style */
.video-container video{
    width: 320px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

/* Hover effect */
.video-container video:hover{
    transform: scale(1.05);
}
@media (max-width: 768px){

.video-container{
    flex-direction: column;
    align-items: center;
}

.video-container video{
    width: 90%;
    height: auto;
}

}
header{
    background-color:#606b4d;
}
.menu-bar{
    background-color: #606b4d;
    text-align: center;
}
.menu-bar ul{
    display: inline-flex;
    list-style: none;
    color: #161614;
    font-weight: bold;
}
.menu-bar ul li{
    width: 120px;
    margin: 8px;
    padding: 15px;
}
.menu-bar ul li a{
    text-decoration: none;
    color: #fff;
    font-weight: bolder;
    opacity: 0;
    animation: fadeIn 1s forwards;
    z-index: 1000;
}

.menu-bar ul li a:nth-child(1){animation-delay: .3s;}
.menu-bar ul li a:nth-child(2){animation-delay: .3s;}
.menu-bar ul li a:nth-child(3){animation-delay: .3s;}

.active, .menu-bar ul li:hover{
    background: #15180b;
    border-radius: 3px;
    color: #fff;
}
.sub-menu-1{
    display: none;
}
 .menu-bar ul li:hover .sub-menu-1{
    display: block;
    position: absolute;
    background:#606b4d;
    margin-top: 15px;
    margin-left: -15px;
    z-index: 2000;
 }
 .menu-bar ul li:hover .sub-menu-1 ul{
    display: block;
    margin: 10px;

 }
 .menu-bar ul li:hover .sub-menu-1 ul li{
    width: 150px;
    padding: 10px;
    background: transparent;
    border-radius: 0;
    text-align: left;
 }
 .menu-bar ul li:hover .sub-menu-1 ul li:last-child{
    border-bottom: none;
 }
 .menu-bar ul li:hover .sub-menu-1 ul li a:hover{
    color: #111;
 }
 .fa-solid{
    float: right;
    color: #fff;
 }
 .sub-menu-2{
    display: none;
 }
 .hover-me:hover .sub-menu-2{
    position: absolute;
    display: block;
    margin-top: -40px;
    margin-left: 160px;
    background:#606b4d;
 }
 .logo{
    padding-left: 300px;
    padding-top: 200px;
    border-radius: 40%;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s forwards;
 }
 .text{
    padding-left: 300PX;
    margin-top: 10px;
 }
 .text h1{
    font-size: 80px;
    color: #333333;
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1s forwards;
    animation-delay: 1s;
 }
 .text h2{
    font-size: 36px;
    color: #a37a4e;
    opacity: 0;
     transform: scale(0.8);
    animation: zoomIn 1s forwards;
    animation-delay: 1s;
 }
 .text p{
    font-size: 20px;
    color: #333333;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
    animation-delay: 1.5s;
 }

 .btn{
    opacity: 0;
    transform: scale(0.7);
    animation: popIn 0.8s forwards;
    animation-delay: 2s;
 }
 .btn:hover{
    transform: scale(1.1);
    transition: .3s;
 }
 .menu-icon img{
    width: 20px;
    padding: 20px 10px;
    display: none;
    cursor: pointer;
 }

 body{
    animation: fadeInPage .5s ease;
 }

 .page-transition{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 9999;
 }
 .page-transition.active{
    opacity: 1;
 }
 .col-4 video{
    width: 100%;
    max-width: 1080;
    border-radius: 10px;
 }
 .col-3 video{
    width: 100%;
    max-width: 1080;
    border-radius: 10px;
 }


 @media only screen and (max-width:800px){
    .text{
        padding: 40px 15px;
        margin-top: -40px;
    }
    .logo{
        margin: auto;
        padding: 40px 15px;
    }
    .menu-bar ul{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 5px;
        flex-direction: row; 
    }
    .menu-bar ul li{
        align-items: center;
        flex-direction: column;
        position: relative;
        top: 5px;
        right: 10px;
        width: 70px;
        border-radius: 4px;
        padding: 2px;
    }

    .sub-menu-1{
    display: none;
    }

    .hover-me:hover .sub-menu-2{
    position: relative;
    display: block;
    margin-left: 0;
    left: 50%;
    transform: translateX(-50%);
    background:#606b4d;
 }


    .menu-bar ul li.show{
        display: flex;
    }
    .navbar{
        flex-direction: row;
    }
     .col-4 video{
        width: 100%;
     }
     .col-3 video{
        width: 100%;
     }

      .menu-bar ul li a{
        text-decoration: none;
        color: #fff;
        font-size: 12px;
        padding: 4px 2px;
      }
 }
 @keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
 }

@keyframes fadeDown {
    to {
        opacity: 1; transform: translateY(0);
    }
}
@keyframes fadeUp {
    to {
        opacity: 1; transform:translateY(0);
    }
}
@keyframes fadeIn{
    to {
        opacity: 1;
    }
}
@keyframes zoomIn {
    to {
        opacity: 1; transform: scale(1);
    }
}
@keyframes popIn {
    to {
        opacity: 1; transform: scale(1);
    }
}


 .abaut{
    margin: auto;
    
 }
 .slider {
  justify-items: center;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 300px;
  margin: 40px auto;
  overflow: hidden;
}

.slides img {
  width: 94%;
  display: none;
  border-radius: 10px;
  transition: opacity 0.6s ease-in-out;
}

.slides img.active {
  display: block;
}

.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.col-2{
    flex-basis: 50%;
    min-width: 300px;
}
.col-2 img{
    max-width: 70%;
    padding: 50px 0;
    border-radius: 30px;
}
.col-2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}
.btn{
    display: inline-block;
    background: #756e0e;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background .5s;
}
.btn:hover{
background: #563434;
}
header{
    background: radial-gradient(#fff,#ffd6d6);
}
.header .row{
    margin-top: 70px;
}
.categories{
    margin: 70px 0;
}
.col-3{
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}
.col-3 img{
    width: 100%;
}
.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.col-4{
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform .5s;
}
.col-4 img{
    width: 100%;
}
.title{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}
.title::after{
    content: '';
    background:#756e0e ;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
h3{
     text-align:center;
    font-weight:500;
    font-size:22px;
    color: #2c3314;
    margin-bottom:8px;
}

.pr{
    text-align:center;
    font-size:18px;
    color:  #2c3314;
    margin-bottom:25px;
}


h4{
    color: #555;
    font-weight: normal
}
.col-4 p{
    font-size: 14px;
}
.rating{
    color:#756e0e ;
}
.col-4:hover{
    transform: translateY(-5px);
}
.offer{
     background: radial-gradient(#fff,#ffd6d6);
     margin-top: 80px;
     padding: 30px 0;
}
.col-2 .offer-img{
    padding: 50px;
}
small{
    color: #555;
}
.testimonial{
    padding-top: 100px;
}
.testimonial .col-3{
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform .5s;
}
.testimonial .col-3 img{
    width: 50px;
    margin-top: 20px;
    border-radius: 50%;

}
.testimonial .col-3:hover{
    transform: translateY(-10px);
}
.fa-solid{
    font-size: 14px;
    color:#756e0e ;
}
.col-3 p{
    font-size: 14px;
    margin: 12px 0;
    color: #777;
}
.testimonial .col-3 h3{
    font-weight: 600;
    color: #555;
    font-size: 16px;
}
.footer{
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}
.footer p{
    color: #8a8a8a;
}
.footer h3{
    color: #fff;
    margin-bottom: 20px;
}
.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
    min-width: 250px;
    margin-bottom: 20px;
}
.footer-col-1{
    flex-basis: 30%;
}
.footer-col-2{
    flex: 1;
    text-align: center;
}
.footer-col-2 img{
    width: 180px;
    margin-bottom: 20px;
}
.footer-col-3, .footer-col-4{
    flex-basis: 12%;
    text-align: center;
}
ul{
    list-style-type: none;
}
.app-logo{
    margin-top: 20px;
}
.app-logo img{
    width: 140px;
}
.footer hr{
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}
.copyright{
    text-align: center;
}
.footer{
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}
.footer p{
    color: #8a8a8a;
}
.footer h3{
    color: #fff;
    margin-bottom: 20px;
}
.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
    min-width: 250px;
    margin-bottom: 20px;
}
.footer-col-1{
    flex-basis: 30%;
}
.footer-col-2{
    flex: 1;
    text-align: center;
}
.footer-col-2 img{
    width: 180px;
    margin-bottom: 20px;
}
.footer-col-3, .footer-col-4{
    flex-basis: 12%;
    text-align: center;
}
ul{
    list-style-type: none;
}
.app-logo{
    margin-top: 20px;
}
.app-logo img{
    width: 140px;
}
.footer hr{
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}
.copyright{
    text-align: center;
}


/* Buttons */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.nav:hover {
  background: rgba(0,0,0,0.8);
}

@media (max-width: 600px) {
  .nav {
    padding: 8px 12px;
    font-size: 18px;
  }
}

.contact-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-left-tittle h2{
    font-weight: 600;
    color: #2c3314;
    font-size: 40px;
    margin-bottom: 5px;
}
.contact-left-tittle hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #756e0e;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contacts-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #2c3314;
    border-radius: 50px;
}
.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}
.contacts-inputs:focus{
    border: 2px solid  #756e0e;
}
.contacts-inputs::placeholder{
    color: #2c3314;
}
.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 15px;
    color:#756e0e;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
}
.contact-right img{
    width: 300px;
    border-radius: 10px;
}

@media (max-width:800px){
    .contacts-inputs{
        width: 80vw;
    }
    .contact-right{
        display: none;
    }
}



.buy-btn {
  display: flex;
  background: #635bff;
  color: #fff;
  top: 50px;
  left: 80px;
  text-align: right;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

.buy-btn:active {
  transform: scale(0.98);
}