@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  font-family: 'Outfit', sans-serif;
}

.feature-box {
  position: relative;
  background: #051130;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 1px 7px #0000007a;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-box:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px #4f5263b3, 0 0 20px #263c79c2;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.05));
  transform: rotate(25deg);
  animation: shine 6s linear infinite;
  z-index: 1;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

.feature-box h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.feature-box p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #d9d9d9;
  position: relative;
  z-index: 2;
}

.feature-box i {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.ogcard {
    background-image: linear-gradient(194deg, #051130 47%, #092B84 100%);
    background-color: transparent;
    border-top: 1px solid #092B84;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    padding: 15px 5px 0 5px;
    box-shadow: 0 1px 7px #0000007a;
}

.ogcard:hover{
    background-image: linear-gradient(222deg, #051130 19%, #092B84 75%);
    box-shadow: 0 1px 7px #1c1c1c7a;
}

.Btn {
  width: 130px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(15, 15, 15);
  border: none;
  color: white;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.103);
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.svgIcon {
  width: 16px;
}

.svgIcon path {
  fill: white;
}

.Btn::before {
  width: 130px;
  height: 130px;
  position: absolute;
  content: "";
  background-color: white;
  border-radius: 50%;
  left: -100%;
  top: 0;
  transition-duration: .3s;
  mix-blend-mode: difference;
}

.Btn:hover::before {
  transition-duration: .3s;
  transform: translate(100%,-50%);
  border-radius: 0;
}

.Btn:active {
  transform: translate(5px,5px);
  transition-duration: .3s;
}

a:hover {
    text-decoration: 0;
}

.ogtext {
    color: #ffffff;
}

.ogactive {
    background: #372728;
}

.ogimage {
    margin: auto 6px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    margin-bottom: 15px;
}

.ogbackground {
    background: #8B6F6B;
    box-shadow: 0 1px 7px #0000007a;
}

.ogm {
    padding: 0.9rem;
    border-radius: 0;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

.ogbutton {
    background-color: #B09385;
    height: 41px;
    width: 210px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', Sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}
.ogbutton:hover {
    background-color: #0F0909;
}

.btn:hover {
    background:#0066d3;
}

.ogcard .card-text ul {
    list-style: none;
    padding-left: 0;
}

.card-text {
    padding: 0 10px;
    margin: 0;
}

.ogprice {
    background: #051130;
    margin-inline: auto;
    padding: 0.3rem;
    border: 1px dashed #092777;
    border-radius: .3rem;
}

.product-card {
    opacity: 0;
    transform: rotateX(10deg) translateY(40px) scale(0.95);
    transition: all 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
}

.product-card.show {
    opacity: 1;
    transform: rotateX(0deg) translateY(0px) scale(1);
    max-height: 2000px;
    pointer-events: auto;
    visibility: visible;
}

.offer {
    font-family: "Inter Tight", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    text-shadow: -1px 12px 14px rgba(176, 147, 133, 0.32);
}

@media (max-width: 575px) {
.ogimage {
    margin: auto;   
}
}
