/* Arabic Font */
* {
    font-family: 'Cairo', sans-serif;
}

body {
    padding-top: 76px;
    direction: rtl;
    text-align: right;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.logo-container i {
    font-size: 1.5rem;
    color: #ffc107;
}

.logo-text {
    color: #fff;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('11.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 128, 128, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.logo-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-hero i {
    font-size: 4rem;
    color: #ffc107;
    animation: pulse 2s infinite;
}

.logo-hero span {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    position: relative;
    padding-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffc107);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Cards */
.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid #ff6b35;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 2rem;
    color: #fff;
}

.about-card h4 {
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-card p {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.product-image-container {
    height: 100%;
    min-height: 400px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product-details {
    padding: 40px;
}

.product-title {
    color: #ff6b35;
    font-weight: 700;
    font-size: 2rem;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 15px;
}

.product-info {
    margin-top: 30px;
}

.info-item {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #ff6b35;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.info-value {
    color: #495057;
    line-height: 1.8;
    display: block;
}

.info-value ul {
    list-style: none;
    padding-right: 0;
}

.info-value ul li {
    padding: 5px 0;
    padding-right: 25px;
    position: relative;
}

.info-value ul li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #28a745;
    font-weight: bold;
}

.badge {
    font-size: 0.9rem;
    padding: 8px 15px;
}

/* Contact Section */
.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
}

.contact-item:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    transform: translateY(-5px);
}

.contact-item:hover .contact-icon {
    background: #fff;
    color: #ff6b35;
}

.contact-item:hover h5,
.contact-item:hover p,
.contact-item:hover .contact-link {
    color: #fff !important;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.contact-icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-item h5 {
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-link {
    color: #495057;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.contact-link:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo i {
    font-size: 1.5rem;
    color: #ffc107;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-hero {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-hero span {
        font-size: 2.5rem;
    }
    
    .logo-hero i {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-details {
        padding: 25px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 25px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Button Styles */
.btn-light {
    background: #fff;
    color: #ff6b35;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-light:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

