@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Great+Vibes&family=Jomhuria&family=Lexend+Deca:wght@100..900&family=Playball&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Victor+Mono:ital,wght@0,100..700;1,100..700&display=swap');
:root{
    --theme-color: #ef5958;
    --text-color: #8d8d8d;
    --link-color: #31503c;
    
}
/* header */
.main-menu__main-menu-box{
    margin-right: 50px;
}
/* header */

.banner-area {
    background-image:url(../images/bg/Rupsanslider.jpg) ;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    height: 600px;
    width: 100%;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    display: flex;
    flex-direction: row !important;
  }
/* .banner-area::before , .banner-area:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--theme-color);
    z-index: 5;
    left: 0px;
     border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;  
    bottom: 0;
    top: -100%;

}
.banner-area::after{

animation: afterbanner 2s linear;
}
@keyframes afterbanner{
    0%{
        top:0%
    }
    20%{
        top:0%
    }
    100%{
        top: -100%;
    }
}

.banner-area::before{
    background-color: rgb(255, 217, 111);
animation: beforebanner 2.5s linear;

}
@keyframes beforebanner{
    0%{
        top:0%
    }
    20%{
        top:0%
    }
    30%{
        top:0%
    }
    100%{
        top: -100%;
    }
} */


.banner-text{
    margin-left: 50px;
}
.banner-head-text{
    color: white;
}

.banner-img{
    position: relative;
    width: 500px;
    height: 400px;
    margin-right: 100px;
    margin-top: 150px;
}
.banner-img::after{
    content: "";
    position: absolute;
    border: 3px solid white;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    z-index: 1;
    left: 60px;
    top: -20px;
    filter: drop-shadow(0px 0px 10px white);
}
.banner-img img{
    position: absolute;
    /* width: 400px; */
    /* z-index: 3; */

}

.banner-img img:nth-child(1){
    z-index: 3;
    width:250px;
    left: 120px;
    bottom: 130px;
    filter: drop-shadow(0px 5px 2px #0000008f);
    animation: fly 4s ease infinite;

}
@keyframes fly{
    0%{
        bottom: 130px;
    }
    50%{
        bottom: 140px;
    }
    100%{
        bottom: 130px;
    }
}
.banner-img img:nth-child(2){
    width: 500px;
    bottom: 20px;
    left: 20px;
    filter: drop-shadow(-10px 2px 20px #0b1a138f);
    z-index: 2;
}



/* feature */
.features {
    /* background: #fdfbf7; */
    margin: 0 auto;
    

  }
  .feature-box{
    display: flex;
    justify-content: center;
  }

  .feature-item:nth-child(1) .feature-icon{
    color: green;
  }
  .feature-item:nth-child(2) .feature-icon{
    color: #e63946;
  }
  .feature-item:nth-child(3) .feature-icon{
    color: skyblue;
  }
  .feature-item:nth-child(4) .feature-icon{
    color: #31503c;
  }
  .feature-item:nth-child(5) .feature-icon{
    color: goldenrod;
  }
  /* .feature-item:nth-child(6) .feature-icon{} */

  .feature-icon {
    font-size: 2rem;
    color: #004196; 
    transition: 0.3s;
  }
  .feature-icon:hover {
    color: #ff6b6b;
    transform: scale(1.2);
  }
  .features h6 {
    color: #000000;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }
/* feature */

  .products {
    /* background: #fdfbf7;  */
    /* light cream background */
    margin-bottom: 50px;
  }

  .product-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    /* margin-bottom: 20px; */
  }
  .product-card {
    
    transition: 0.3s ease;
    
  }
  .product-card:hover {
    transform: translateY(-8px);
    
  }
  .product-card img {    
    object-fit: cover;
    width: 100%;
  }


  .about-img img:nth-child(1){
    border-radius: 10px;
    transform: rotate(20deg) translateX(70px);
    z-index: -1;
    padding: 10px;
}
.about-img img:nth-child(2){
    border-radius: 10px;
    transform: rotate(-10deg) translateY(-20px);
    padding: 10px;


  }

  .about-btn{
    border-radius: 30px;
    background-color: var(--theme-color);
  }

.product-sec-details{
    width: 100%;
    /* background-color: rgb(12, 57, 155); */
    background-image: url(../images/bg/8.png);
    background-repeat: no-repeat;
    background-size: 100%;
    
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 50px;

}
.product-sec-details h2{
    color: whitesmoke;
    margin-top: 50px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.26);
}
.product-sec-details  p{
  color: var(--theme-color);
}
.product-sec-details img{
    width: 80%;
    margin: 0 auto;
    filter: drop-shadow(-10px 5px 20px black);
}


.main-menu__wrapper-inner{
    /* background-color: white !important; */
    border-radius: 20px;
    padding: 0px 20px;
    background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.212);
     
}

.main-menu__logo a{
font-size: 2.3rem;
font-weight: 700;
letter-spacing: 1px;
text-shadow: 2px 2px 2px rgb(3, 3, 48);
color: white;
font-family: var(--Freshflow-font-two);
}

.stricky-header .main-menu__logo a{
    color: black;
text-shadow: 2px 2px 2px rgba(3, 3, 48, 0);

}


/* Footer Styles */
.footer {
  background: #001738;
  color: #f1faee;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  color: #e63946;
}

.footer-about p {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-social a {
  color: #f1faee;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}
.footer-social a:hover {
  color: #e63946;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f1faee;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #f1faee;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: #e63946;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 14px;
}
.footer-contact i {
  margin-right: 8px;
  color: #e63946;
}

/* Newsletter */
.newsletter {
  margin-top: 15px;
  display: flex;
}
.newsletter input {
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 4px 0 0 4px;
  flex: 1;
}
.newsletter button {
  padding: 10px 15px;
  border: none;
  background: #e63946;
  color: #fff;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: 0.3s;
}
.newsletter button:hover {
  background: #a4161a;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 14px;
}





/* WHY CHOOSE US SECTION */
.why-choose-us {
  /* background: #f8f9fa; */
  padding: 70px 20px;
  text-align: center;
}

.why-choose-us .section-subtitle {
  color: #e63946;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.why-choose-us .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.why-choose-us .section-description {
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-size: 16px;
  color: #555;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  /* background: #fff; */
  background-image:url(../images/card.png);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.feature-card .icon {
  width: 60px;
  height: 60px;
  background: #e63946;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgb(8, 0, 43);
}

.feature-card p {
  font-size: 14px;
  color: #363636;
}


/* our product page */
.header-title{
  height: 200px;
  display: grid;
  place-items: center;
  background-image: url(../images/bg/8.png);
  background-size: cover;
  margin-bottom: 20px;
}
.header-title h2{
  margin-top: 80px;
  color: white;
}
/* our product page */




    