:root {
    --accent: #00f2ff;
    --purple: #7000ff;
    --bg: #050505;
    --card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --muted: #ccc;
}

html[data-theme='light'] {
    --bg: #f5f5f5;
    --card: #ffffff;
    --border: #e0e0e0;
    --text: #333;
    --muted: #555;
}

* { margin:0; padding:0; box-sizing:border-box; font-family: 'Inter', sans-serif; scroll-behavior: smooth; }

body { background: var(--bg); color: var(--text); overflow-x: hidden; }

/* Dynamic Background Glow */
.bg-glow {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a3a 0%, #050505 100%);
    z-index: -1;
}
html[data-theme='light'] .bg-glow {
    background: radial-gradient(circle at 50% 50%, #e0e0ff 0%, #f5f5f5 100%);
}

/* Navbar */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 8%; position: fixed; width: 100%; z-index: 100;
    transition: 0.5s; backdrop-filter: blur(10px);
}
.logo { font-size: 1.8rem; font-weight: 900; }
.logo span { color: var(--accent); }
.logo img {
    width: 120px;
    height: 40px;
    object-fit: contain;
}
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { background: white; color: black; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; }
html[data-theme='light'] .nav-cta { background: #333; color: white; }

/* Theme Toggle */
.theme-toggle {
    cursor: pointer;
    font-size: 1.5rem;
    margin-left: 20px;
    color: var(--muted);
    transition: color 0.3s;
}
.theme-toggle:hover { color: var(--accent); }

.mobile-menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.6rem;
    cursor: pointer;
    margin-left: 16px;
}

.mobile-menu-toggle:hover { color: var(--accent); }

.mobile-menu-toggle:hover { color: var(--accent); }

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
    overflow: hidden;
}
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 120%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.45);
    z-index: 2;
}
.hero-container { max-width: 1100px; width: 100%; position: relative; z-index: 3; }
.badge-hero { display: inline-block; background: rgba(255,255,255,0.08); color: #fff; padding: 10px 18px; border-radius: 999px; letter-spacing: 1px; margin-bottom: 25px; font-size: 0.95rem; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }
.trust-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); color: #ccc; padding: 14px 22px; border-radius: 999px; font-weight: 600; }
.hero h1 { font-size: 5rem; line-height: 1.1; margin-bottom: 20px; color: white;}
html[data-theme='light'] .hero h1 { color: #333; }
.gradient-text { background: linear-gradient(90deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
html[data-theme='light'] .gradient-text { background: linear-gradient(90deg, #333, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.3rem; color: #888; max-width: 600px; margin: 0 auto 40px; }
html[data-theme='light'] .hero p { color: #777; }

.btn-main {
    background: var(--accent);
    color: #000;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4);
}

.btn-main i {
    transition: transform 0.3s ease;
}

.btn-main:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
html[data-theme='light'] .btn-outline { color: #333; }

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

/* Glass Cards */
section { padding: 120px 10%; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.glass-card { 
    background: var(--card); border: 1px solid var(--border); 
    padding: 50px; border-radius: 30px; backdrop-filter: blur(20px);
    transition: 0.4s ease;
}
.glass-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.06); border-color: var(--accent); }
html[data-theme='light'] .glass-card:hover { background: #f9f9f9; }

/* Process Steps */
.process {
    padding: 120px 10%;
}

.process-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.process-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.header-left {
    text-align: left;
}

.header-left h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.timeline { margin-top: 50px; }
.step { display: flex; align-items: flex-start; gap: 30px; margin-bottom: 60px; border-left: 2px solid var(--border); padding-left: 30px; }
.step-num { font-size: 3rem; font-weight: 900; opacity: 0.2; min-width: 80px; margin-top: -10px; }

/* Process Right - Videos */
.process-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(0, 242, 255, 0.05);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
}

.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 5;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.3);
}

.play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(0, 242, 255, 0.5);
}

.video-card-content {
    padding: 20px;
}

.video-card-content h4 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
}

html[data-theme='light'] .video-card-content h4 {
    color: #333;
}

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
}

#modalVideo {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.close-video-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-video-modal:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Trust Bar */
.trust-bar { display: flex; justify-content: center; gap: 50px; padding: 50px; opacity: 0.5; font-size: 2rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
html[data-theme='light'] .trust-bar { opacity: 0.7; }
.trust-bar span { font-size: 0.8rem; letter-spacing: 2px; align-self: center; }

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 80px 10%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50px;
    margin: 0 10%;
}
html[data-theme='light'] .stats { background: #fff; }
.stat-item h2 { font-size: 4rem; color: var(--accent); }
.stat-item p { color: #888; text-transform: uppercase; letter-spacing: 2px; }
html[data-theme='light'] .stat-item p { color: #777; }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--card);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    transition: 0.3s;
    color: white;
}
html[data-theme='light'] .faq-question { color: #333; }
.faq-question:hover { background: rgba(255,255,255,0.05); }
html[data-theme='light'] .faq-question:hover { background: #f0f0f0; }
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: #aaa;
}
html[data-theme='light'] .faq-answer { color: #666; }
.faq-item.active .faq-answer { padding: 20px; max-height: 200px; }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form select, .contact-form textarea {
    background: #111;
    border: 1px solid var(--border);
    padding: 15px;
    color: white;
    border-radius: 10px;
    outline: none;
}
html[data-theme='light'] .contact-form input, html[data-theme='light'] .contact-form select, html[data-theme='light'] .contact-form textarea {
    background: #fff;
    color: #333;
}
.contact-form input:focus { border-color: var(--accent); }

.contact-illustration {
    width: 80%;
    margin: 40px auto;
    display: block;
    opacity: 0.8;
}

#msg{
color: #61b752;
margin-top: -40px;
display: block;

}

/* Animation for the Background Glow */
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}
.bg-glow {
    animation: pulseGlow 10s infinite ease-in-out;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-overlay a {
    color: var(--accent);
    text-decoration: none;
    margin-top: 15px;
    border: 1px solid var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
}

.project-overlay a:hover {
    background: var(--accent);
    color: black;
}

.tag {
    background: var(--accent);
    color: black;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials {
    padding: 120px 10%;
    text-align: center;
}

.glass-container {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 80px;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.6;
    color: white;
}
html[data-theme='light'] .testimonial-text { color: #333; }

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url(https://images.unsplash.com/photo-1557862921-37829c786956?auto=format&fit=crop&w=100&q=80) center/cover;
    margin-right: 20px;
    border: 2px solid var(--accent);
}

.client-info span {
    color: #888;
}
html[data-theme='light'] .client-info span { color: #777; }

/* Comparison Table */
.comparison table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
}
html[data-theme='light'] .comparison table { background: #fff; }

.comparison th, .comparison td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: white;
}
html[data-theme='light'] .comparison th, html[data-theme='light'] .comparison td { color: #333; }

.comparison th {
    background: rgba(255, 255, 255, 0.05);
}
html[data-theme='light'] .comparison th { background: #f5f5f5; }

.comparison .highlight {
    color: var(--accent);
    font-weight: bold;
}

/* --- BIG PROFILE SECTION --- */
.profile-section {
    padding: 120px 10%;
    background: linear-gradient(to bottom, rgba(5,5,5,1), rgba(20,20,40,0.4));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
html[data-theme='light'] .profile-section { background: linear-gradient(to bottom, #f5f5f5, #e0e0ff); }

.profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Image Wrapper with Neon Glow */
.profile-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-glow-wrapper {
    position: relative;
    border-radius: 30px;
    padding: 10px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
    transition: transform 0.5s ease;
}

.image-glow-wrapper:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 0 80px rgba(112, 0, 255, 0.4);
}

.image-glow-wrapper img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    display: block;
    background: var(--bg); /* Backup in case image fails */
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: float 4s ease-in-out infinite;
}
html[data-theme='light'] .floating-badge { background: #fff; color: #333; }

.floating-badge i { color: var(--accent); margin-right: 8px; }
.floating-badge.top-right { top: 30px; right: -30px; }
.floating-badge.bottom-left { bottom: 30px; left: -30px; animation-delay: 2s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Right Side Content */
.profile-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 15px 0 30px;
    color: white;
}
html[data-theme='light'] .profile-content h2 { color: #333; }

.bio-text {
    font-size: 1.2rem;
    color: #bbb;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 40px;
    font-style: italic;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.05), transparent);
}
html[data-theme='light'] .bio-text { color: #555; background: linear-gradient(90deg, rgba(0, 242, 255, 0.2), transparent); }

/* Skill Tags */
.expertise-area h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}
html[data-theme='light'] .expertise-area h3 { color: #333; }

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.skill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}
html[data-theme='light'] .skill { background: #fff; color: #333; }

.skill i { color: var(--accent); font-size: 1.2rem; }
.skill:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-3px);
}
html[data-theme='light'] .skill:hover { background: #f0f0f0; }

/* Profile Buttons */
.profile-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--border);
}
html[data-theme='light'] .btn-social { background: #fff; color: #333; }

.btn-social:hover {
    background: var(--accent);
    color: black;
    transform: rotate(10deg) scale(1.1);
}

/* --- COMPREHENSIVE PRICING MATRIX --- */
.pricing-matrix {
    padding: 100px 5%;
}

.pricing-subtitle {
    max-width: 700px;
    margin: 20px auto 50px;
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.6;
}
html[data-theme='light'] .pricing-subtitle { color: #666; }

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.matrix-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.matrix-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
html[data-theme='light'] .matrix-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }

.featured-matrix {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.05) 0%, rgba(0,0,0,0) 100%);
}
html[data-theme='light'] .featured-matrix { background: linear-gradient(180deg, rgba(0, 242, 255, 0.1) 0%, rgba(255,255,255,1) 100%); }

.pop-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: black;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.card-header h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}
html[data-theme='light'] .card-header h3 { color: #333; }

.price-block {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.1rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.1;
    margin: 5px 0;
}

.tax-info {
    font-size: 0.85rem;
    color: #888;
}
html[data-theme='light'] .tax-info { color: #777; }

/* Scrollable Feature List */
.feature-scroll {
    flex-grow: 1;
    max-height: 280px; /* Forces all cards to be the same height */
    overflow-y: auto;
    margin-bottom: 25px;
    padding-right: 10px;
}

/* Custom Scrollbar for the features */
.feature-scroll::-webkit-scrollbar { width: 5px; }
.feature-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.feature-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

.feature-scroll ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-scroll ul li {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
html[data-theme='light'] .feature-scroll ul li { color: #555; }

.feature-scroll ul li i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 1rem;
}

.card-footer {
    text-align: center;
    margin-top: auto;
}

.renewal {
    font-size: 0.85rem;
    color: var(--purple);
    margin-bottom: 15px;
    font-weight: bold;
}
html[data-theme='light'] .renewal { color: #555; }

.matrix-card .btn-main, .matrix-card .btn-outline {
    display: block;
    width: 100%;
    text-decoration: none;
    text-align: center;
}

/* --- TECH STACK MARQUEE --- */
.tech-stack {
    padding: 80px 0;
    background: var(--bg);
    overflow: hidden; /* Hides the scrollbar */
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.scroller {
    max-width: 1200px;
    margin: 40px auto 0;
    /* This creates the fade-out effect on the left and right edges */
    -webkit-mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
    mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 5rem; /* Space between icons */
    width: max-content;
    /* 25s controls the speed. Change it to make it faster or slower */
    animation: scrollMarquee 25s forwards linear infinite;
}

/* Pause the animation if the user hovers over it */
.scroller[data-animated="true"]:hover .scroller__inner {
    animation-play-state: paused;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #555;
    transition: 0.3s ease;
    cursor: default;
}

.tech-item i {
    font-size: 4rem;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.tech-item span {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0; /* Hidden by default */
    transform: translateY(10px);
    transition: 0.3s ease;
}

/* --- Hover Effects with Official Brand Colors --- */
.tech-item:hover { color: white; }
html[data-theme='light'] .tech-item:hover { color: #333; }
.tech-item:hover span { opacity: 1; transform: translateY(0); }
.tech-item:hover i { transform: translateY(-10px); }

/* Apply official brand colors on hover */
.tech-item:hover .fa-react { color: #61DAFB; text-shadow: 0 0 20px rgba(97, 218, 251, 0.5); }
.tech-item:hover .fa-node-js { color: #339933; text-shadow: 0 0 20px rgba(51, 153, 51, 0.5); }
.tech-item:hover .fa-aws { color: #FF9900; text-shadow: 0 0 20px rgba(255, 153, 0, 0.5); }
.tech-item:hover .fa-python { color: #3776AB; text-shadow: 0 0 20px rgba(55, 118, 171, 0.5); }
.tech-item:hover .fa-wordpress { color: #21759B; text-shadow: 0 0 20px rgba(33, 117, 155, 0.5); }
.tech-item:hover .fa-shopify { color: #95BF47; text-shadow: 0 0 20px rgba(149, 191, 71, 0.5); }
.tech-item:hover .fa-figma { color: #F24E1E; text-shadow: 0 0 20px rgba(242, 78, 30, 0.5); }
.tech-item:hover .fa-php { color: #777BB4; text-shadow: 0 0 20px rgba(119, 123, 180, 0.5); }

/* The Infinite Scroll Animation Keyframe */
@keyframes scrollMarquee {
    to {
        /* Translates exactly half the width of the duplicated content */
        transform: translate(calc(-50% - 2.5rem));
    }
}

/* Responsive Fix for Mobile */
@media (max-width: 992px) {
    .profile-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bio-text { border-left: none; border-top: 4px solid var(--accent); padding: 20px 0 0 0; }
    .floating-badge.top-right { right: 10px; }
    .floating-badge.bottom-left { left: 10px; }
    .skill-tags, .profile-actions { justify-content: center; }
}

/* --- PREMIUM FOOTER --- */
.agency-footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 80px 10% 20px;
}
html[data-theme='light'] .agency-footer { background: #f0f0f0; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
}
html[data-theme='light'] .footer-col h4 { color: #333; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}
html[data-theme='light'] .footer-col ul li a { color: #555; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }

.brand-col p { color: #888; margin: 20px 0; font-size: 0.95rem; line-height: 1.6; }
html[data-theme='light'] .brand-col p { color: #555; }
.social-links { display: flex; gap: 15px; }
.social-links a { color: white; background: rgba(255,255,255,0.05); width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border-radius: 50%; transition: 0.3s; }
html[data-theme='light'] .social-links a { background: #fff; color: #333; }
.social-links a:hover { background: var(--accent); color: black; transform: translateY(-3px); }

.footer-email { color: var(--accent); font-size: 1.2rem; text-decoration: none; font-weight: bold; display: block; margin-bottom: 10px; }
.footer-phone { color: white; font-size: 1.1rem; }
html[data-theme='light'] .footer-phone { color: #333; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}
html[data-theme='light'] .footer-bottom { color: #888; }

/* --- MODAL (POPUP) STYLING --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-content {
    background: #111;
    border: 1px solid var(--accent);
    width: 90%; max-width: 800px; max-height: 80vh;
    border-radius: 20px;
    position: relative;
    display: flex; flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(50px);
    transition: transform 0.4s ease;
}
html[data-theme='light'] .modal-content { background: #fff; }

.modal-overlay.active .modal-content { transform: translateY(0); }

.close-modal {
    position: absolute; top: 20px; right: 25px;
    font-size: 2rem; color: #888; cursor: pointer; transition: 0.3s;
}
.close-modal:hover { color: var(--accent); }

.modal-header { padding: 40px 40px 20px; border-bottom: 1px solid var(--border); }
.modal-header h2 { color: white; font-size: 2rem; margin-bottom: 5px; }
html[data-theme='light'] .modal-header h2 { color: #333; }
.modal-header p { color: var(--accent); font-size: 0.9rem; }

/* Scrollable Text Area */
.modal-body {
    padding: 30px 40px 40px;
    overflow-y: auto;
    color: #ccc; line-height: 1.7; font-size: 0.95rem;
}
html[data-theme='light'] .modal-body { color: #555; }
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

.modal-body h3 { color: white; margin: 25px 0 10px; font-size: 1.2rem; }
html[data-theme='light'] .modal-body h3 { color: #333; }
.modal-body ul { padding-left: 20px; margin-top: 15px; }
.modal-body ul li { margin-bottom: 10px; }
.modal-body strong { color: var(--accent); }

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .modal-content { max-height: 90vh; }
}

/* --- PARTNERS & PAYMENTS --- */
.partners-section {
    padding: 100px 10%;
    background: radial-gradient(circle at bottom, #0a0a1a 0%, #050505 100%);
    text-align: center;
}
html[data-theme='light'] .partners-section { background: radial-gradient(circle at bottom, #e0e0ff 0%, #f5f5f5 100%); }

.partner-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partner-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.4s ease;
    filter: grayscale(100%); /* Keeps logos professional */
    opacity: 0.6;
}
html[data-theme='light'] .partner-card { background: #fff; filter: grayscale(50%); opacity: 0.8; }

.partner-card:hover {
    filter: grayscale(0%); /* Color pops on hover */
    opacity: 1;
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    transform: translateY(-5px);
}
html[data-theme='light'] .partner-card:hover { background: #f9f9f9; }

.partner-card img {
    height: 35px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.partner-card span {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.security-note {
    margin-top: 50px;
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px dashed var(--accent);
}

.security-note i { margin-right: 10px; }

/* Mobile Adjustment */
@media (max-width: 768px) {
    .partner-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    nav {
        padding: 18px 5%;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 5%;
        background: rgba(5, 5, 5, 0.95);
        border-radius: 24px;
        flex-direction: column;
        align-items: flex-end;
        gap: 18px;
        padding: 24px;
        width: min(340px, calc(100% - 36px));
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
        z-index: 99;
    }

    html[data-theme='light'] .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        max-height: 600px;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        text-align: right;
    }

    .nav-cta {
        padding: 10px 18px;
    }

    .hero {
        height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 { font-size: 3.2rem; }
    .hero p { font-size: 1rem; max-width: 100%; }
    .btn-main, .btn-outline { width: 100%; justify-content: center; }
    .trust-bar { flex-wrap: wrap; padding: 20px 5%; gap: 14px; }
    .trust-bar i { font-size: 1.2rem; }
    .profile-container { grid-template-columns: 1fr; text-align: center; }
    .bio-text { border-left: none; border-top: 4px solid var(--accent); padding: 20px 0 0 0; }
    .floating-badge.top-right { right: 10px; }
    .floating-badge.bottom-left { left: 10px; }
    .skill-tags, .profile-actions { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 5%; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .stats { flex-direction: column; gap: 30px; padding: 40px 5%; }
    .timeline .step { flex-direction: column; align-items: flex-start; border-left: none; padding-left: 0; padding-top: 20px; }
    .comparison table { display: block; overflow-x: auto; width: 100%; }
    .comparison th, .comparison td { white-space: nowrap; }
    .partner-feature-container { grid-template-columns: 1fr; text-align: center; }
    .partnership-benefits { justify-items: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .modal-content { width: 95%; max-width: 700px; }
    img, video, iframe { max-width: 100%; height: auto; }
}

/* --- STRATEGIC PARTNER FEATURE --- */
.partner-feature {
    padding: 100px 10%;
    background: linear-gradient(135deg, #050505 0%, #101010 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}
html[data-theme='light'] .partner-feature { background: #f5f5f5; border-color: rgba(255, 215, 0, 0.3); }

.partner-feature-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tag-gold {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-text {
    background: linear-gradient(to right, #ffd700, #ffae00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-text h2 {
    font-size: 3rem;
    margin: 20px 0;
    line-height: 1.2;
    color: white;
}
html[data-theme='light'] .partner-text h2 { color: #333; }

.partner-text p {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}
html[data-theme='light'] .partner-text p { color: #555; }

.partnership-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}
html[data-theme='light'] .benefit { color: #333; }

.benefit i {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Partner Logo Box Styling */
.partner-logo-box {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    transition: 0.4s ease;
}
html[data-theme='light'] .partner-logo-box { background: #fff; border-color: rgba(255, 215, 0, 0.4); }

.partner-logo-box:hover {
    background: rgba(255, 215, 0, 0.05);
    border-style: solid;
    transform: scale(1.05);
}
html[data-theme='light'] .partner-logo-box:hover { background: #fcfcfc; }

.placeholder-logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: white;
}
html[data-theme='light'] .placeholder-logo { color: #333; }

.placeholder-logo span {
    color: #ffd700;
}

.partner-logo-box p {
    margin-top: 15px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
}
html[data-theme='light'] .partner-logo-box p { color: #888; }

/* Mobile Fixes */
@media (max-width: 992px) {
    .partner-feature-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .partnership-benefits { justify-items: center; }
}

/* --- TOP PROMO BAR --- */
.promo-bar {
    background: linear-gradient(90deg, #00f2ff, #7000ff);
    color: #000;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1001;
    text-transform: uppercase;
}

.promo-code {
    background: #000;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
    border: 1px dashed #fff;
}

.promo-separator {
    margin: 0 15px;
    opacity: 0.5;
}

/* --- PRICING SECTION OFFER CARD --- */
.offer-zone-card {
    grid-column: 1 / -1; /* Makes it span across all columns in the grid */
    background: rgba(255, 215, 0, 0.05);
    border: 2px dashed #ffd700;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ffd700;
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.offer-details h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.offer-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.offer-item {
    text-align: center;
    flex: 1;
}

.offer-label {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.offer-value {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.offer-item p {
    color: #ccc;
    margin-top: 10px;
}

.offer-item strong {
    color: #ffd700;
}

.offer-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 215, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-bar { font-size: 0.75rem; padding: 12px 5px; }
    .promo-separator { display: none; }
    .offer-row { flex-direction: column; }
    .offer-divider { width: 80%; height: 1px; }
}
