/* General Styles */
body {
    font-family: 'Cairo', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #1f1f1f;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.nav-brand .logo {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.nav-brand h1 {
    font-size: 20px;
    margin: 0;
    color: #0D47A1;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #0D47A1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #0D47A1;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Active Hamburger Animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(13, 71, 161, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #0D47A1, #1976D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #b0b0b0;
}

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary {
    background-color: #0D47A1;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}

.btn-primary:hover {
    background-color: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #0D47A1;
    color: #0D47A1;
}

.btn-secondary:hover {
    background-color: #0D47A1;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #0D47A1;
    bottom: -10px;
    left: 25%;
}

.section-subtitle {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 700px;
    margin: 20px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #2a2a2a;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #0D47A1;
}

.feature-icon {
    font-size: 48px;
    color: #0D47A1;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #121212;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 60px;
    color: #0D47A1;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -15px;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    color: #0D47A1;
}

.testimonial-author p {
    margin: 0;
    color: #b0b0b0;
    font-size: 14px;
}

/* Plugin Details Section */
.plugin-details {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.details-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.details-content article {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
}

.details-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0D47A1;
    display: flex;
    align-items: center;
}

.details-content h3 i {
    margin-right: 10px;
}

.details-content ul {
    list-style: none;
    padding: 0;
}

.details-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.details-content li::before {
    content: '▶';
    color: #0D47A1;
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 2px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #121212;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
}

.faq-question {
    color: #0D47A1;
    margin: 0 0 10px 0;
    font-size: 20px;
}

.faq-answer {
    margin: 0;
    color: #b0b0b0;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(13, 71, 161, 0.8);
    color: #ffffff;
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background-color: rgba(13, 71, 161, 1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #444;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #0D47A1;
}

/* Video Section */
.video-section {
    margin-top: 60px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #2a2a2a;
}

/* Trial Key Section */
.trial-key {
    padding: 80px 0;
    text-align: center;
    background-color: #121212;
}

.key-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

#license-key {
    padding: 15px;
    font-size: 18px;
    border: 1px solid #0D47A1;
    border-radius: 5px;
    margin: 0 10px 10px 0;
    background-color: #1f1f1f;
    color: #ffffff;
    min-width: 250px;
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-grid.single-plan {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #0D47A1;
}

.pricing-card.featured {
    border: 2px solid #0D47A1;
    position: relative;
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0D47A1;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 20px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0D47A1;
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
}

.currency {
    font-size: 24px;
    vertical-align: super;
}

.period {
    font-size: 16px;
    color: #b0b0b0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid #2a2a2a;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #0D47A1;
    margin-right: 10px;
}

/* Footer */
.footer {
    background-color: #1f1f1f;
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #0D47A1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #0D47A1;
    bottom: -10px;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

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

.footer-links a:hover {
    color: #0D47A1;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.designed-by {
    font-size: 14px;
}

.designed-by a {
    color: #0D47A1;
    text-decoration: none;
}

.designed-by a:hover {
    text-decoration: underline;
}

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

.social-links a {
    color: #b0b0b0;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: #0D47A1;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1f1f1f;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
        z-index: 99;
        padding: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #333;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: #0D47A1;
        color: #ffffff;
        padding-left: 25px;
    }

    .nav-link:hover::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #ffffff;
        transition: 0.4s;
    }

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

    .details-content {
        grid-template-columns: 1fr;
    }

    .project-card {
        flex-direction: column;
        text-align: center;
    }

    .key-container {
        flex-direction: column;
    }

    #license-key {
        margin: 0 0 10px 0;
        width: 100%;
    }

    .btn {
        margin: 5px 0;
        width: 100%;
        max-width: 300px;
    }
}