:root {
    --primary: #00f2fe;
    --accent: #4facfe;
    --bg: #0b0f1a;
    --card-bg: rgba(23, 32, 53, 0.8);
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* HEADER */
.header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(11, 15, 26, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -1px;
}
.logo span {
    color: var(--primary);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
.nav-links li:not(:last-child) a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}
.nav-links li:not(:last-child) a:hover {
    color: var(--primary);
}

/* HERO */
.hero {
    padding: 180px 0 100px;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero-text {
    flex: 1.2;
}
.badge {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 600;
}
.hero-text h1 {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -2px;
}
.hero-text h1 span {
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 45px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: #000;
    padding: 18px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.4s;
    text-align: center;
}
.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
}

.hero-image {
    flex: 0.8;
    position: relative;
}
.hero-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* ABOUT & STATS */
.about {
    padding: 120px 0;
}
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}
.about-text {
    flex: 1;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}
.feature-list {
    list-style: none;
    margin-top: 30px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}
.feature-list i {
    color: var(--primary);
}

.experience-card {
    flex: 0.8;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border);
}
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
}
.stat-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.price-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.price-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    background: rgba(0, 242, 254, 0.03);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.price-header .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
}
.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}
.price-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-features i {
    color: var(--primary);
    font-size: 0.8rem;
}
.btn-secondary {
    border: 1px solid var(--border);
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* PORTFOLIO */
.portfolio {
    padding: 100px 0;
    background: #080c14;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.project-card {
    border-radius: 30px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: 0.5s;
}
.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}
.project-img {
    height: 250px;
    overflow: hidden;
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-content {
    padding: 25px;
}
.tag {
    background: rgba(0, 242, 254, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--primary);
    margin-right: 5px;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.testimonial-item {
    background: var(--glass);
    padding: 35px;
    border-radius: 25px;
    border: 1px solid var(--border);
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}
.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

/* FOOTER */
.footer {
    padding: 100px 0 50px;
    text-align: center;
}
.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid var(--border);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.social-links a {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid var(--border);
    text-decoration: none;
}
.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
}
.fancybox-content{
    background: var(--card-bg);
}
.work_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
   
}
.work_info {
    width: 49%;
}
.work_img {
width: 49%;
    max-height: 100%;
    overflow: hidden;
}
.img_scroll {
    height: 100%;
    overflow: auto;
    position: relative;
}
.work_img img {
    width: 100%;
    position: absolute;
}
.img_scroll::-webkit-scrollbar {
  width: 12px;
}
.img_scroll::-webkit-scrollbar-track {
  background: #e0e0e0;
}
.img_scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 6px;
  border: 3px solid #e0e0e0;
}
.work_info p:not(:last-child), .work_info h3:not(:last-child), .work_info li:not(:last-child) {
    margin-bottom: 10px;
}
.work_info ol, .work_info ul {
    padding-left: 30px;
    margin-bottom: 20px;
}
.work_info h3 {
    font-size: 20px;
}
#loadmore {
    display: block;
    width: fit-content;
    margin: 50px auto 0 auto;
}
@media (max-width: 992px) {
    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .price-card.popular {
        transform: none;
    }
    .work_wrapper {
        flex-direction: column;
    }
    .work_info, .work_img {
        width: 100%;
    }
    .work_img img {
        position: relative;
        margin-top: 40px;
    }
}
