:root {
    --red: #ae2c12;
    --white: #FFFFFF;
    --blue: #163e64;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, #163e64, #0f2b45);
    font-family: 'Libre Franklin', 'Franklin Gothic Medium', sans-serif;
    color: var(--white);
    line-height: 1.6;
    max-width: 1200px;
    margin: auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 24px;
    font-weight: 500;
    transition: 0.3s;
    cursor: default;
}

.logo-number {
    display: block;
    font-size: 24px;
    margin-left: 85px;
    margin-top: -26px;
}

.logo-red {
    color: var(--red);
}


.logo:hover {
transform: scale(1.05);
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--white);
    font-family: 'ADLaM Display', sans-serif;
    font-size: 18px;
    padding: 8px 16px;
    border: 1px solid var(--white);
    transition: 0.3s;
}


.hero {
    position: relative;
    padding: 40px 80px 80px 80px;
}

.hero-text h1 {
    font-family: 'ADLaM Display', sans-serif;
    font-size: 54px;
    line-height: 1.1;
}

.white-text {
    color: var(--white);
}


.hero-image img {
    width: 520px;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.products {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 40px;
}

.product img {
width: 220px;
height: 220px;
object-fit: cover;
border-radius: 20px;
}

.product p {
margin-top: 10px;
font-family: 'ADLaM Display', sans-serif;
font-size: 18px;
transition: 0.3s;
color: #ae2c12;
}


@media (max-width: 768px) {

.navbar {
flex-direction: column;
gap: 15px;
}

.hero-text h1 {
font-size: 36px;
}

.hero-image img {
width: 90%;
}

}



.nav-links a:focus {
outline: 2px solid var(--red);
}


.nav-links li a {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-links li a:hover {
    background-color: var(--red);
    border-color: var(--red);
    transform: scale(1.05);
}


.nav-links a.active {
    background-color: #ae2c12;
    border-color: #ae2c12;
}
      



.hero-image img {
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}



.contact {
text-align: center;
padding: 80px 20px;
}

.contact h1{
font-family: 'ADLaM Display', sans-serif;
font-size: 48px;
margin-bottom: 40px;
}


.contact-info p{
font-size: 20px;
margin: 15px 0;
}



.product img {
transition: transform 0.3s ease;
}

.product img:hover {
transform: scale(1.05);
}


html {
scroll-behavior: smooth;
}


.hero {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
flex-wrap: wrap;
}

.product {
background-color: rgba(255, 255, 255, 0.05);
padding: 20px;
border-radius: 20px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta {
display:inline-block;
margin-top: 20px;
padding: 12px 25px;
background-color: var(--red);
color: white;
text-decoration: none;
font-family: 'ADLaM Display', sans-serif;
border-radius: 10px;
transition: 0.3s;
}


.product:hover {
transform: translateY(-8px);
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}


.red-text {
    color: var(--red);
    display: block;
    margin-top: 10px;
}


