/* ============================
   PORTFOLIO HERO
============================ */

.page-hero {
    position: relative;
    padding: 110px 0 80px;
    overflow: hidden;
    background: linear-gradient(90deg, #fa33a1 0%, #553add 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 3;
}

.page-hero-content {
    max-width: 720px;
}

.page-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffd6ef;
    margin-bottom: 14px;
}

.page-hero h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    margin-bottom: 18px;
}

.page-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
}

/* Floating CTA-style particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.page-hero .icons-one {
    position: absolute;
    left: 40px;
    top: 60px;
    width: 300px;
    height: 350px;
    background: url(../images/icons/icon-4.png) no-repeat;
    background-size: contain;
    animation: floatY 6s ease-in-out infinite;
    opacity: 0.25;
}

.page-hero .icons-two {
    position: absolute;
    right: 60px;
    bottom: 40px;
    width: 260px;
    height: 280px;
    background: url(../images/icons/icon-5.png) no-repeat;
    background-size: contain;
    animation: floatYReverse 7s ease-in-out infinite;
    opacity: 0.25;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

@keyframes floatYReverse {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(16px);
    }
}

/* ============================
   PORTFOLIO LIST
============================ */

.portfolio-project {
    padding: 90px 0;
}

.single-portfolio-list {
    margin-bottom: 90px;
}

.portfolio-image img {
    width: 100%;
    border-radius: 0; /* remove rounded card feel */
    box-shadow: none; /* remove shadow */
    background: transparent; /* ensure no background */
    display: block;
}

.portfolio-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}

.portfolio-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
    text-align: justify;
}

/* ============================
   WATCH VIDEO BUTTON
============================ */

.watch-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #fa33a1 0%, #553add 100%);
    box-shadow: 0 12px 30px rgba(85, 58, 221, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.watch-video-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(85, 58, 221, 0.55);
}

.watch-video-btn .play-icon {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.25);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   VIDEO MODAL
============================ */

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 85%;
    border: none;
}

.btn-close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 6px;
}

.btn-close-modal:hover {
    background: rgba(0, 0, 0, 0.9);
}

.modal-xl {
    max-width: 90%;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 992px) {
    .single-portfolio-list {
        margin-bottom: 70px;
    }

    .page-hero h1 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 90px 0 60px;
    }

    .page-hero h1 {
        font-size: 34px;
        line-height: 44px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .page-hero .icons-one,
    .page-hero .icons-two {
        display: none;
    }
}
/* Skeleton loader */
.skeleton {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    border-radius: 16px;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.skeleton-image {
    width: 100%;
    height: 320px;
}

.skeleton-text {
    height: 16px;
    margin: 10px 0;
}

.skeleton-title {
    height: 28px;
    width: 60%;
}
