/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #fff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .logo h1, .hero-content h2, .stat-number, .btn {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

body {
    overflow-x: hidden;
}

.section-container {
    height: auto;
    width: 100vw;
    backdrop-filter: blur(40px);
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: rgba(10, 14, 35, .5);
    border-top: 3px solid rgba(58, 70, 116, 0.247);
    /* backdrop-filter: blur(10px); */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    margin: 0 auto;
    border-radius: 2px;
}

/* Cosmic Background - more subdued */
.cosmic-background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0f1526, #080b17);
    overflow: hidden;
    z-index: 0;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.15;
    z-index: 0;
}

.nebula-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(80, 54, 180, 0.7) 0%, rgba(47, 0, 91, 0.3) 70%, transparent 100%);
    top: 20%;
    left: 15%;
    animation: nebula-float 50s infinite alternate;
}

.nebula-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33, 120, 243, 0.7) 0%, rgba(33, 65, 243, 0.3) 70%, transparent 100%);
    bottom: 10%;
    right: 20%;
    animation: nebula-float 40s infinite alternate-reverse;
}

.nebula-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(100, 87, 180, 0.5) 0%, rgba(80, 36, 180, 0.2) 70%, transparent 100%);
    top: 60%;
    left: 40%;
    animation: nebula-float 60s infinite alternate;
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: white;
    z-index: 2;
    opacity: 0;
}

@keyframes nebula-float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 30px);
    }
    100% {
        transform: translate(-50px, -30px);
    }
}

@keyframes shooting {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
        width: 2px;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(var(--end-x)) translateY(var(--end-y));
        opacity: 0;
        width: 150px;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

header.scrolled {
    background-color: rgba(10, 14, 35, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: #6f36c8;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
}

.hero-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    text-align: center;
    z-index: 5;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #6f36c8, #2196f3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: text-shimmer 8s infinite linear;
    background-size: 200% 100%;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.7;
}

@keyframes text-shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    opacity: 0.9;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text-column {
    flex: 1.5;
    min-width: 300px;
}

.about-stats-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #fff;
}

.about-text h3 i {
    margin-right: 15px;
    color: #6f36c8;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.05rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.text-link {
    color: rgb(128, 136, 255);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #2196f3;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6f36c8, #2196f3);
}

.team-section {
    margin-bottom: 60px;
}

.team-heading {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.team-member {
    width: 280px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
    border: 4px solid rgba(111, 54, 200, 0.5);
}

#michal-photo {
    background-image: linear-gradient(rgba(10, 14, 35, 0.3), rgba(10, 14, 35, 0.3)), 
                      url('https://source.unsplash.com/random/150x150/?man,professional');
}

#antek-photo {
    background-image: linear-gradient(rgba(10, 14, 35, 0.3), rgba(10, 14, 35, 0.3)), 
                      url('https://source.unsplash.com/random/150x150/?man,designer');
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-role {
    color: #6f36c8;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-desc {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-cta {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.about-cta .btn {
    padding: 15px 35px;
    font-size: 1rem;
}

/* Services Section */
.services {
   backdrop-filter: blur(10px); 
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.01);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #6f36c8;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    opacity: 0.7;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    border-top: 1px solid rgba(58, 70, 116, 0.247);
    position: relative;
}

.portfolio-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
}

.projects-list {
    position: relative;
    height: 85%;
    transition: transform 0.6s ease;
}

.project-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project-item.active {
    opacity: 1;
    visibility: visible;
}

.project-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

p {
    font-weight: 100;
}

.project-item h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.project-item p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 80%;
    opacity: 0.8;
}

.project-item .btn-small {
    padding: 12px 30px;
    font-size: 1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    height: 15%;
}

.slider-nav {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    transform: scale(1.2);
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slider-arrow:hover {
    background: rgba(111, 54, 200, 0.5);
}

/* Contact Section */
.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(58, 70, 116, 0.247);
}

.contact-tagline {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-content {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-info {
    max-width: 600px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.8rem;
    margin-right: 20px;
    color: #6f36c8;
    min-width: 40px;
    text-align: center;
}

.info-item p {
    font-size: 1.1rem;
}

.contact-message {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-message p {
    margin-bottom: 15px;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: rgba(10, 14, 35, 0.8);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Pricing Section */

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
    border: 2px solid rgba(111, 54, 200, 0.6);
    transform: scale(1.05);
    z-index: 1;
    background: rgba(111, 54, 200, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price .amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.price .period {
    font-size: 0.9rem;
    opacity: 0.7;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
}

.pricing-features i.fa-check {
    color: #4CAF50;
}

.pricing-features i.fa-times {
    color: #f44336;
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
    font-size: 0.9rem;
}

.pricing-note p {
    margin-bottom: 5px;
}

/* Background Logo */
.background-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 1200px;
    height: auto;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none; /* Ensures it doesn't interfere with clicks */
}

/* Media Queries */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    .project-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-item h3, .project-item p {
        margin-bottom: 15px;
        margin-right: 0;
        text-align: start;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: rgba(10, 14, 35, 0.95);
        padding-top: 80px;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0;
        padding: 15px 30px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    section {
        padding: 70px 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .portfolio-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .stat-item {
        width: 130px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .founders {
        gap: 30px;
    }
    
    .founder-card {
        width: 100%;
    }
    
    .pricing-grid {
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}
.portfolio {
    border-top: 1px solid rgba(58, 70, 116, 0.247);
    position: relative;
}

.portfolio-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
}

.projects-list {
    position: relative;
    height: 85%;
    transition: transform 0.6s ease;
}

.project-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project-item.active {
    opacity: 1;
    visibility: visible;
}

.project-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.project-item h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.project-item p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 80%;
    opacity: 0.8;
}

.project-item .btn-small {
    padding: 12px 30px;
    font-size: 1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    height: 15%;
}

.slider-nav {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    transform: scale(1.2);
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slider-arrow:hover {
    background: rgba(111, 54, 200, 0.5);
}

/* Contact Section */
.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(58, 70, 116, 0.247);
}

.contact-tagline {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-content {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-info {
    max-width: 600px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.8rem;
    margin-right: 20px;
    color: #6f36c8;
    min-width: 40px;
    text-align: center;
}

.info-item p {
    font-size: 1.1rem;
}

.contact-message {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-message p {
    margin-bottom: 15px;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: rgba(10, 14, 35, 0.8);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Pricing Section */

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
    border: 2px solid rgba(111, 54, 200, 0.6);
    transform: scale(1.05);
    z-index: 1;
    background: rgba(111, 54, 200, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price .amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #6f36c8, #2196f3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.price .period {
    font-size: 0.9rem;
    opacity: 0.7;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
}

.pricing-features i.fa-check {
    color: #4CAF50;
}

.pricing-features i.fa-times {
    color: #f44336;
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
    font-size: 0.9rem;
}

.pricing-note p {
    margin-bottom: 5px;
}

/* Background Logo */
.background-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 1200px;
    height: auto;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none; /* Ensures it doesn't interfere with clicks */
}

/* Media Queries */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    .project-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-item h3, .project-item p {
        margin-bottom: 15px;
        margin-right: 0;
        text-align: start;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: rgba(10, 14, 35, 0.95);
        padding-top: 80px;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0;
        padding: 15px 30px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    section {
        padding: 70px 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .portfolio-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .stat-item {
        width: 130px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .founders {
        gap: 30px;
    }
    
    .founder-card {
        width: 100%;
    }
    
    .pricing-grid {
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}
