:root {
    --red: #ff3d3d;
    --red-dark: #cf2d28;
    --dark: #1a1d21;
    --dark-lighter: #2b2e32;
    --white: rgb(245, 245, 245);
    --accent: #00d4ff;
    --gradient-primary: linear-gradient(135deg, #ff3d3d 0%, #ff6b35 50%, #cf2d28 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 61, 61, 0.3);
    --border-radius: 16px;
}

.hero-offer {
    padding-top: 140px;
    max-width: 1600px;
    margin: 0px auto ;

    min-height: 100vh;
    width: 80vw;
    color: var(--white);
  }


.hero-offer .grid{
    display: flex;
flex-wrap: wrap;
gap: 20px;
padding-top: 20px;
}

.hero-offer  .offertile{
    justify-content: space-between;
    flex:1;
    min-width: 30%;
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding:10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width:calc(33.333% - 20px);
    overflow: hidden
}

@media screen and (max-width:998px){
    .hero-offer  .offertile{
    min-width: 40%;
max-width:calc(50% - 20px)
}
}

@media screen and (max-width:672px){
    .hero-offer  .offertile{
    min-width: 80%;
max-width:100%
}
}

.offertile .offer-img{
    max-height: 300px;
    width: 80%;
    flex: 1;
    display:flex;
    justify-content: center;
    margin-bottom: 10px;
}

.hero-offer h2{
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-align: left;
    margin-bottom: 0px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;

}

.hero-offer  .offertile:hover img{
    scale: 1.1
}

.offertile  h3{
    width: 100%;
    text-align: left;
}

.offertile a{text-decoration: none;
color: var(--white);
font-weight: 600;
padding: 12px 20px;
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}

.offertile a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.15);
}

.offertile .offer-text{
    text-align: justify;
}

.offertile img{
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 20px;
    transition: .2s
}

.btn-wrap{
    display: flex;
    width: 100%;
    padding-top: 10px;
}