:root {

  /* background color */
  --bg-primary-color: #E91E63;
  --bg-secondary-color: #e8e4f2;
  --bg-tertiory: #F3A51E;



  /* font color */
  --text-primary-color: black;
  --text-secondary-color: #E91E63;
  --text-tertiory-color: #e8e4f2;


  /* font fammily */
  --font-familly-primary: "Arya", sans-serif;
  --font-familly-secondary: "Poppins", sans-serif;


}


@media (max-width:997px) {
  .hero-section {
    height: auto !important;
  }

  .hero-heading {
    font-size: 34px !important;
  }

  .margin{
    margin-top: 30px !important;
  }

  .subscription-banner .form-control{
    width: 100% !important;
  }

  .social-icons{
    display: flex !important;
    justify-content: left !important;
  }
  
}

.hero-section{
  background-color:#E91E63;
  height: 610px;
  padding-top: 50px;
  padding-bottom: 30px;
}

.hero-heading {
  font-family: var(--font-familly-primary);
  font-size: 60px;
  color: var(--text-tertiory-color);
}

.sub-heading {
  font-family: var(--font-familly-primary);
  color: var(--text-secondary-color);
  color: white;
}

.hero-para {
  font-family: var(--font-familly-secondary);
  text-align: justify;
  line-height: 30px;
}


/* From Uiverse.io by gharsh11032000 */
.blog-card-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--bg-primary-color);
  font-family: var(--font-familly-primary);
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.blog-card-btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--bg-primary-color);

  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.blog-card-btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;

}

.blog-card-btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 50px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

.blog-card-btn:hover span {
  color: white;
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}



/* From Uiverse.io by SujitAdroja */
.hero-btn {
  color: var(--text-tertiory-color);
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--text-tertiory-color);
  padding: 10px 60px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  font-family: var(--font-familly-primary
  
  
  
  
  );
}

.hero-btn:hover {
  color: white;
}

.hero-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: var(--bg-primary-color);
  z-index: -1;
  transition: all 1s;
}

.hero-btn:hover::before {
  width: 160%;
}




.category-preview {
  /* padding: 2rem; */
  /* background: #f8f9fa; */
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.category-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  text-decoration: none;
  color: #333;

  transition: 0.2s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-5px);
}

.icon {

  font-size: 2rem;
}

.category-card:hover .icon {
  transform: scale(0.9);
  transition: 2s;
}


.category-card-title {
  margin-top: 1rem;
  font-weight: bold;
  font-family: var(--font-familly-primary);
}

.blob-img{
  position: relative;
}

.blob-img .blob-1{
  position: absolute;
    top: -41px;
    right: -106px;
    rotate: 90deg;
}



.heading-2 {
  text-align: center;
  font-family: var(--font-familly-primary);
  font-size: 40px;
  color: var(--text-secondary-color);
  font-weight: 800;
  margin-bottom: 30px;
}

.card-blog {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 15px;

}

.margin{
  margin-top: 125px;
}


.card-img img {

  border-radius: 10px;
  height: 200px;
  width: 100%;

}

.card-blog h5 {

  font-family: var(--font-familly-primary);
  font-weight: 700;
  margin-top: 20px;
}

.card-blog p {
  font-family: var(--font-familly-secondary);
  margin-top: 20px;

}


.gift-idea-section-bg {
  background-color: var(--bg-primary-color);
}


.download-heading {
  text-align: center;
  font-family: var(--font-familly-primary);
  font-size: 40px;
  color: var(--bg-secondary-color);
  font-weight: 800;
  margin-bottom: 30px;
}


.gift-card {
  min-width: 200px;
  background: white;
  border-radius: 12px;

  padding: 15px;
}

.gift-card img {
  width: 100%;
  border-radius: 8px;
  height: 300px;
}

.gift-card h4 {
  margin-top: 20px;

}

.download-section h2{
   text-align: center;
  font-family: var(--font-familly-primary);
  font-size: 40px;
  color: var(--text-secondary-color);
  font-weight: 800;
  margin-bottom: 30px;
}


.download-card{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 410px;
}

.download-card img{
  height: 290px;
}

.download-card-content h5{
  font-family: var(--font-familly-primary);
}

.download-btn{
  background-color: var(--bg-primary-color);
  font-family: var(--font-familly-secondary);
  padding: 7px 10px;
  border: none;
  color: var(--text-tertiory-color);
  font-weight: 600;
  margin-top: 5px;
}

.share-btn{
background-color: var(--bg-primary-color);
  font-family: var(--font-familly-secondary);
  padding: 7px 10px;
  border: none;
  color: var(--text-tertiory-color);
  font-weight: 600;
  margin-top: 5px;
}


.subscription-banner {
  /* background-color: var(--bg-primary-color); */
  padding: 2rem;

  text-align: center;



}

.subscription-banner h2 {
  text-align: center;
  font-family: var(--font-familly-primary);
  font-size: 40px;
  color: var(--text-secondary-color);
  font-weight: 800;
  margin-bottom: 30px;

}

.subscription-banner .form-control {
  border-radius: 8px 0 0 8px;
  height: 50px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 50%;
}

.subscription-banner .subscribe-btn {
  border-radius: 0 8px 8px 0;
  background-color: var(--bg-primary-color);
  border: none;
  color: var(--text-tertiory-color);
  font-weight: 700;
}

.subscription-banner h5 {
  color: var(--text-secondary-color);
  font-family: var(--font-familly-primary);
  margin-top: 20px;
  

}

.form-control::placeholder{
  font-family: var(--font-familly-secondary);
  width: 100%;

}




.hr-section {
  height: 1px;
  background-color: white;
  opacity: 1;
  border: none;
}




.swiper{
    height: 430px !important;
}

.swiper-pagination-bullet-active{
  background-color: white !important;
}

.error-page{
  display: flex;
  justify-content: center;
  text-align: center;
}
