:root {
    --primary: #8A1538;
    --secondary: #FBC02D;
    --dark: #4b0a1e;
    --light-bg: #fdfdfd;
    --text-dark: #333;
    --font : 'Cairo', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font)
}

body {
    background-color: white;
    color: var(--text-dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;

}

/* Navbar */
.navbar {
    width: 100%;
    background: var(--primary);
    padding: 15px 0;
    color: white;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    background: 
    linear-gradient(135deg, var(--primary), rgba(0,0,0,0.7)),
    url("../img/hero-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 80px 0px;
    color: white;
    overflow: hidden;
    height: 85vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--secondary);
}

.hero-text p {
    margin: 20px 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-yellow { background: var(--secondary); color: var(--primary); }
.btn-outline { border: 1px solid white; color: white; }

.hero-images {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-images img {
    width: 300px;
    border-radius: 20px;
}

.phone-1 { transform: rotate(-10deg) translateY(20px); }
.phone-2 { transform: rotate(10deg); margin-right: -40px; }

/* Features */
.features {
    padding: 80px 0;
    text-align: center;
}

.section-title h2 { font-size: 2.5rem; color: var(--primary); }
.section-title p { color: #777; margin-bottom: 50px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: 0.3s;
    cursor: pointer;
}

.feature-card:hover {
     box-shadow: 0 10px 30px rgba(0,0,0,0.5); 

}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff5f7;
    color: var(--primary);
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 24px;
}
/* categories */
.categories{
padding:80px 0;
background:#f8f8f8;
}

.categories-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:20px;
margin-top:40px;
}

.category-card{
background:white;
padding:30px;
text-align:center;
border-radius:10px;
transition:.3s;
cursor:pointer;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.category-card i{
font-size:35px;
color:#f5b400;
margin-bottom:10px;
}

.category-card:hover{
transform:translateY(-5px);
}


/* steps */

.steps{
padding:80px 0;
}

.steps-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.step{
text-align:center;
}

.step-number{
width:60px;
height:60px;
background:#f5b400;
color:white;
font-size:25px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:15px;
}

/* CTA Section */
.cta {
    background: var(--primary);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.store-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.store-btn {
    background: var(--secondary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-btn.white { background: white; color: #000; }

footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-images { margin-top: 50px; }
    .hero-text h1 { font-size: 2.5rem; }
}