/* Modern Landing Page Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.primary {
    color: var(--primary-color);
}

.secondary_color {
    color: var(--secondary-color);
}

.bg_primary {
    background: var(--primary-color);
}

.dark {
    color: var(--text-dark)
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Noto Sans Arabic', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    width: 100%;
    height: auto;
}

/* Upper Navbar Styles */
.upper-navbar {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.upper-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: var(--accent-color);
}

/* Main Navbar Styles */
.main-navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav .logo img {
    width: 85px
}

/* Navbar scroll effect */
.main-navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
    overflow: hidden;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: width 0.4s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

.product-tabs {
    margin-top: 50px;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.product-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.brand-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-2px);
}

.brand-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.brand-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.product-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.product-cta:hover {
    background-color: #d97706;
    color: var(--white);
}

.product-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Page Header Styles */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header-bg {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Grid Section */
.products-grid-section {
    padding: 30px 0;
    background-color: var(--bg-light);
}

.products-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.products-filter h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background-color: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 25px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.sort-select {
    padding: 10px 15px;
    border: 2px solid var(--bg-light);
    border-radius: 5px;
    background-color: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    min-width: 200px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Product Card */
.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}

.discount-badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.new-badge {
    background-color: #10b981;
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background-color: var(--white);
    color: var(--text-dark);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-view-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Product Details Page Styles */
.product-details-section {
    padding: 30px 0;
    background-color: var(--bg-light);
}

.product-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding: 25px;
    border-radius: 15px;
}

.product-info .product-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-info .product-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.product-info .product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-info .product-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.product-info .current-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

.product-info .original-price {
    font-size: .9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-percentage {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.product-description {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.rem;
}

/* Product Actions */
.action-buttons .add-to-cart-btn {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.action-buttons .add-to-cart-btn:hover {
    background-color: var(--secondary-color);
}

/* Delivery Options */
.delivery-options {
    margin: 30px 0;
}

.delivery-options h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.delivery-option {
    margin-bottom: 15px;
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-option input[type="radio"]:checked+label {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
}

.option-info strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.option-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* About Page Styles */


.page-title-section {
    margin: 30px 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb Styles for About Page */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
    font-weight: 500;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.about-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.8));
}

.header-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.header-stats .stat-item {
    text-align: center;
    color: var(--white);
}

.header-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.header-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Counter Animation */
.counter {
    display: inline-block;
    transition: all 0.3s ease;
}

.counter.animated {
    color: var(--accent-color);
}

/* Loading Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(25px, 5vw, 30px);
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-content-section {
    padding: 30px 0;
    background-color: var(--white);
}

.about-main-content {
    max-width: 1200px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse>* {
    direction: ltr;
}

.content-text {
    padding: 20px 0;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.image-badge i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .header-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 60px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin: 0;
        max-width: none;
    }

    .info-highlights {
        flex-direction: column;
        gap: 15px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* Product Reviews Section */
.product-reviews-section {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 2px solid var(--border-color);
}

.reviews-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 15px;
}

.overall-rating {
    text-align: center;
}

.rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rating-stars {
    margin-bottom: 10px;
}

.rating-stars i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: 0 2px;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.star-label {
    min-width: 60px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.bar-container {
    flex: 1;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #d97706);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.percentage {
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Individual Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.review-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.review-item:hover {
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-rating i {
    color: var(--accent-color);
    font-size: 1rem;
    margin: 0 1px;
}

.review-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Load More Reviews */
.load-more-reviews {
    text-align: center;
    margin-bottom: 40px;
}

.load-more-btn {
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}


/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .rating-score {
        font-size: 2.5rem;
    }

    .review-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .reviewer-info {
        gap: 10px;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .review-item {
        padding: 20px;
    }

    .write-review-section {
        padding: 25px 20px;
    }

    .rating-input {
        justify-content: center;
    }

    .rating-input label {
        font-size: 1.3rem;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
}

.footer-section h4.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Company Info Section */
footer .footer-logo img {
    width: 130px
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-detail span {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-detail strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.contact-detail div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-detail p {
    color: #d1d5db;
    margin: 0;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #d1d5db;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Styles */
.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
    gap: 15px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navbar scroll effect */
.main-navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .upper-navbar .container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tab-buttons {
        gap: 8px;
    }

    .tab-btn {
        min-width: 100px;
        padding: 15px 20px;
    }

    .tab-btn i {
        font-size: 1.2rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    /* Products Slider Mobile Styles */
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: -20px;
    }

    .next-btn {
        right: -20px;
    }

    .products-slider .product-card {
        max-width: 350px;
    }

    .products-slider .product-image {
        height: 200px;
    }

    .products-slider .product-info {
        padding: 20px;
    }

    .products-slider .product-title {
        font-size: 1.2rem;
    }

    .products-slider .product-description {
        font-size: 0.9rem;
    }

    .products-slider .feature {
        padding: 3px 8px;
        font-size: 0.75rem;
    }

    .products-slider .sale-price {
        font-size: 1.2rem;
    }

    .view-all-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .slider-indicators {
        margin-top: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }

    .brand-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .brand-item {
        padding: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-detail {
        justify-content: center;
        text-align: left;
        max-width: 300px;
    }

    /* Products Page Mobile Styles */
    .page-title {
        font-size: 2.5rem;
    }

    .products-controls {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .filter-buttons {
        justify-content: center;
    }

    .sort-select {
        min-width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 20px;
    }

    /* Product Details Mobile Styles */
    .product-details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-images {
        position: static;
    }

    .main-image img {
        height: 300px;
    }

    .thumbnail-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-info .product-title {
        font-size: 1.8rem;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .additional-info {
        grid-template-columns: 1fr;
    }

    /* Order Now Mobile Styles */
    .order-now-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .order-summary {
        position: static;
        order: 2;
    }

    .order-form {
        padding: 30px 20px;
        order: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Services Page Mobile Styles */
    .services-controls {
        padding: 20px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image {
        height: 180px;
    }

    .service-info {
        padding: 20px;
    }

    .service-title {
        font-size: 1.2rem;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 20px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .contact-info {
        gap: 5px;
    }

    .contact-item {
        font-size: 12px;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .footer-bottom-links {
        gap: 10px;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }

}

/* Animation */
@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

/* Preloader Style */
section.preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

section.preloader svg path {
    stroke: #2563eb;
    fill: none;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease forwards infinite;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}