/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.5;
    font-size: 17px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
#performance {
    padding-bottom: 2rem !important;
}
#how-it-works {
    padding-bottom: 2rem !important;
}
.image-section {
    background-color: #e7f3fe;
    padding-top: 2rem !important;
    padding-bottom: 3rem !important;
}
.image-section span {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 1rem;
}
.section {
    padding: 5rem 0;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
}

.bg-light {
    background-color: #f4f4f4;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    background-color: #ff9300;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff9300;
}

/* Header & Navbar */
.header {
    background-color: #021c40;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo img {
    width: 200px;
}

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

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.hamburger {
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}
.performance-text span {
    display: block;
    font-size: 13px;
}
/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('uploads/images/light-cables.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* How It Works Section */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.how-it-works-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

/* Performance Section */
.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table th {
    background-color: #f4f4f4;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-author {
    margin-top: 1rem;
}

.testimonial-author h5 {
    margin: 0;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

/* Desktop - Hide hamburger */
@media(min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

/* Responsive */
@media(max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    .hero-title {
        font-size: 2.7rem;
        line-height: 1.6;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #021c40;
        width: 97%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

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

    .nav-item {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: block;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .performance-content {
        grid-template-columns: 1fr;
    }
    .performance-table {
        overflow-x: auto;
    }
    .section {
        padding: 4rem 0;
    }
    .nav-link[style*="background-color:#ff9300"] {
        display: inline-block !important;
        width: auto !important;
        max-width: fit-content !important;
        margin: 0 auto !important;
        border-radius: 5px !important;
    }
    span.text-start.ps-sm-3.ms-md-3.ps-xxl-3 {
        padding-left: 10px;
    }
    .ms-2 {
       margin-left: .9rem !important;
    }
}

/* Pricing Page */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-plan {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-plan.recommended {
    border: 2px solid #27ae60;
}

.pricing-plan h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-plan .price {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-plan li {
    margin-bottom: 0.5rem;
}

.license-agreement {
    max-width: 800px;
    margin: 0 auto;
}

/* Purchase Page */
.purchase-container {
    display: flex;
    justify-content: center;
}

.purchase-details {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.license-info {
    text-align: center;
    margin-bottom: 2rem;
}

.license-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.license-info .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #27ae60;
}

.purchase-form .form-group {
    margin-bottom: 1.5rem;
}

.purchase-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.purchase-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.purchase-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
}
