body {
            overflow-x: hidden;
            background-color: #fcfcfc;
        }
       

 .logo-text, .main-title, h1, h2 ,a , h4 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}
.p{
 font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NAVBAR TRANSPARENT TO SOLID */
 .navbar-brand img {
            height: 120px;
        }
/* NAVBAR DEFAULT (TRANSPARENT) */
.navbar {
    background: rgba(255, 255, 255, 0);   /* شفاف */
    backdrop-filter: blur(0px);
    box-shadow: none;
    border-bottom: 3px solid transparent;
    transition: 0.4s ease;     
    position: fixed;
    width: 100%;
    z-index: 999;

}

.navbar a {
    color: white !important;
    transition: 0.3s;
    font-size: 25px;
    font-weight: 700;
}

/* بعد السكروول */
.navbar.scrolled a {
    color: #5d3a1a !important; 
}
.navbar.scrolled img {
            height: 60px;
        }

/* NAVBAR بعد الـ SCROLL */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid #fcb242;
    
}

        .nav-link {
            font-size: 18px;
            margin-left: 60px;
            font-weight: 600;
           
        }
        .navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

/* ANIMATIONS */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
  
.products-hero {
    height: 55vh;
    background: url('../Images/S5.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-title {
    position: relative;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1.3s forwards;
}

/* ضبط اللوجو */
.logo-img {
    height: 120px;
    transition: 0.3s ease-in-out;
}

/*  */
.logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: white;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* لما الـ navbar يحصل له scroll */
.navbar.scrolled .logo-subtitle {
    color: #5d3a1a !important;   /* نفس لون منيو بعد السكروول */
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* لما اللوجو يصغر */
.navbar.scrolled .logo-img {
    height: 60px;
}



/* SECTIONS */
.product-section {
    padding: 80px 0;
    background: #f8f4ec;
}
.oil-bg {
    background: #efe6d7;
}
.section-heading {
    font-size: 45px;
    font-weight: 700;
    color: #5d3a1a;
   /* margin-bottom: 40px;*/
   text-align: center;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
    transition: 0.4s;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
.product-img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    object-fit: cover;
}
.product-card h4 {
    margin-top: 15px;
    color: #5d3a1a;
    font-weight: 700;
}
.product-card p {
    font-size: 15px;
    color: #7b6a57;
}

/* FOOTER */
footer {
    padding: 40px 0;
    background: linear-gradient(90deg,#5d3a1a,#7d5225);
    border-top: 3px solid #fcb242;
    text-align: center;
    color: white;
}
/* ZIGZAG PRODUCT LAYOUT */
.zigzag-item {
    margin-bottom: 80px;
}

.zigzag-img {
    width: 75%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

.text-box {
    padding: 40px;
}

.text-box h4 {
    font-size: 32px;
    color: #5d3a1a;
    margin-bottom: 15px;
}

.text-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #7b6a57;
}

/* يعكس الاتجاه (الصورة شمال والنص يمين) */
.zigzag-item.reverse {
    flex-direction: row-reverse;
}

/* Responsive للموبايل */
@media (max-width: 768px) {
    .zigzag-item,
    .zigzag-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .text-box {
        padding: 20px;
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .navbar a { font-size:20px !important; }
    .navbar-nav { padding:15px 0; }
    .nav-link { margin-left:0 !important; }
}
@media (max-width: 768px) {
    .hero-title { font-size:38px; }
    .section-heading { font-size:32px; }
}
@media (max-width: 480px) {
    .hero-title { font-size:30px; letter-spacing:1px; }
    .navbar a { font-size:17px !important; }
}
