/* Global Styles */
:root {
    --primary-color: #FF7F00; /* Orange accent color */
    --secondary-color: #FFA64D;
    --text-color: #333;
    --light-color: #fff;
    --background-color: #fff;
    --border-color: #eee;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    direction: ltr;
    text-align: left;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 20px; /* Increased margin for better spacing */
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Header Styles */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0; /* Increased padding for taller header */
}

.logo h2 {
    color: var(--primary-color);
    font-size: 28px; /* Larger logo text */
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow for depth */
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 40px; /* Increased margin between nav items */
    margin-right: 0;
}

.nav-menu li:last-child {
    margin-left: 20px;
    margin-right: 20px;
}

.nav-menu a {
    font-size: 18px; /* Slightly larger font size for nav items */
    font-weight: 500;
    margin-right: 0;
    margin-left: 20px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--background-color);
}

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

.hero-content {
    flex: 1;
    padding-left: 50px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Adds consistent spacing between buttons */
}

/* About Section */
.about {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--text-color);
    position: relative;
}

.about h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

.about-text {
    flex: 1;
    padding-right: 50px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
}

.about-text ul {
    margin-bottom: 20px;
}

.about-text li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 25px;
}

.about-text li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    right: 0;
}

.concept-image {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.concept-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.concept-image img:hover {
    transform: scale(1.02);
}

/* Screenshots Slider Section */
.screenshots {
    background-color: #f9f9f9;
    text-align: center;
    padding: 80px 0;
}

.screenshots h2 {
    margin-bottom: 20px;
    font-size: 36px;
}

.screenshots p {
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.slider-container {
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    transition: all 0.5s ease;
}

.slide {
    min-width: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.prev-btn, .next-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(180deg); /* Rotate the chevrons to point the correct way in LTR */
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Feedback Points */
.feedback-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.feedback-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
}

.feedback-point i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
    background-color: rgba(255, 127, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-point p {
    font-size: 16px;
    color: #666;
}

/* Feedback Section */
.feedback {
    text-align: center;
    background-color: var(--light-color);
}

.feedback h2 {
    margin-bottom: 20px;
    font-size: 36px;
}

.feedback p {
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #333;
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo, .footer-contact {
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    margin-left: 0;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    margin-left: 0;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-left: 0;
        margin-bottom: 50px;
        text-align: center;
    }

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

    .about-content {
        flex-direction: column;
    }

    .about-text {
        padding-left: 0;
        margin-bottom: 50px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    nav {
        padding: 20px 0; /* Slightly less padding on mobile */
    }
    
    .menu-toggle {
        display: block;
        font-size: 28px; /* Larger menu toggle icon */
    }

    .nav-menu {
        position: fixed;
        top: 90px; /* Adjusted to match the taller header */
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all 0.5s ease;
        box-shadow: 0 0 10px var(--shadow-color);
        z-index: 100; /* Ensure menu appears above other content */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0 0 30px 0; /* More vertical spacing between mobile menu items */
    }
    
    .nav-menu a {
        font-size: 20px; /* Larger text in mobile menu */
    }

    .hero h1 {
        font-size: 36px;
    }

    section {
        padding: 60px 0;
    }

    .feature-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 30px;
    }

    .btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .btn-secondary {
        margin-right: 0;
    }
}
