/* ================= CASE STUDIES HERO ================= */
.case-header-hero {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;

    /* LIGHT THEME */
    background: #d5e7f9;
}

/* REMOVE DARK OVERLAY FEEL */
.case-header-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(37,99,235,0.15), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(20,184,166,0.12), transparent 40%);
    z-index: 1;
}

/* CONTENT */
.case-header-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

/* ================= BREADCRUMB ================= */
.case-header-breadcrumb {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #64748b;
}

.case-header-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.case-header-breadcrumb .active {
    color: #0f172a;
}

/* ================= DEFAULT (VISIBLE) ================= */
.case-header-title,
.case-header-text,
.case-header-btns {
    opacity: 1;
    transform: translateY(0);
}

/* ================= ANIMATION INIT ================= */
.case-header-hero.animate-init .case-header-title,
.case-header-hero.animate-init .case-header-text,
.case-header-hero.animate-init .case-header-btns {
    opacity: 0;
    transform: translateY(40px);
}

/* ================= ACTIVE ================= */
.case-header-hero.active .case-header-title,
.case-header-hero.active .case-header-text,
.case-header-hero.active .case-header-btns {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s ease;
}

.case-header-hero.active .case-header-text {
    transition-delay: 0.2s;
}

.case-header-hero.active .case-header-btns {
    transition-delay: 0.4s;
}

/* ================= HEADING ================= */
.case-header-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #0f172a;
}


/* ================= TEXT ================= */
.case-header-text {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
}

/* ================= BUTTON GROUP ================= */
.case-header-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* PRIMARY BUTTON */
.case-btn-primary {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;

    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

.case-btn-primary:hover {
    transform: translateY(-3px);
}

/* SECONDARY BUTTON */
.case-btn-secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.case-btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(37,99,235,0.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .case-header-title {
        font-size: 40px;
    }

    .case-header-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .case-header-title {
        font-size: 30px;
    }

    .case-header-btns {
        flex-direction: column;
    }

    .case-btn-primary,
    .case-btn-secondary {
        width: 100%;
    }
}

/* ================= CASE PREMIUM ================= */
.case-premium-section {
    padding: 100px 0;
    background: #f8fafc; /* match site */
}

/* HEADER */
.case-premium-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
}

.case-premium-header h2 span {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-premium-header p {
    color: #64748b;
}

/* BADGE */
.case-premium-badge {
    display: inline-block;
    background: #e0ecff;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* CARD */
.case-premium-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: left;

    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);

    transition: 0.4s ease;
    position: relative;
    height: 100%;
}

/* LOGO BOX */
.case-logo-box {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.case-logo-box img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
}

/* TITLE */
.case-premium-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

/* TEXT */
.case-premium-card p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 15px;
}

/* TAGS */
.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.case-tags span {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;

    background: #e0ecff;
    color: #2563eb;
}

/* BUTTON */
.case-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;

    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

/* HOVER */
.case-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #2563eb;
}

/* SHOW BUTTON */
.case-premium-card:hover .case-btn {
    opacity: 1;
    transform: translateY(0);
}

/* GRADIENT BORDER */
.case-premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;

    background: linear-gradient(135deg, #2563eb, #14B8A6);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.3s;
}

.case-premium-card:hover::before {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .case-premium-header h2 {
        font-size: 28px;
    }
}
/* ================= ABOUT PROJECTS ================= */
.about-projects-section {
    padding: 100px 0;
    background: #f8fafc; /* match site */
}

/* MAIN BOX */
.about-projects-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* SOFT GLOW */
.about-projects-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.15), transparent);
    top: -100px;
    right: -100px;
}

/* HEADER */
.about-projects-header {
    text-align: center;
    margin-bottom: 40px;
}

/* BADGE */
.about-badge {
    display: inline-block;
    background: #e0ecff;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TITLE */
.about-projects-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.about-projects-header h2 span {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.about-projects-header p {
    color: #64748b;
}

/* GRID */
.about-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ITEM */
.about-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;

    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* ICON */
.about-item .icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;
    font-size: 20px;

    box-shadow: 0 10px 20px rgba(37,99,235,0.15);
}

/* TEXT */
.about-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0f172a;
}

.about-item p {
    font-size: 14px;
    color: #475569;
}

/* HOVER */
.about-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #2563eb;
}

/* NOTE */
.about-projects-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    border-radius: 14px;

    background: #e0ecff;
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-projects-grid {
        grid-template-columns: 1fr;
    }

    .about-projects-box {
        padding: 30px;
    }

    .about-projects-header h2 {
        font-size: 28px;
    }
}
/* ================= EXPECT SECTION ================= */
.expect-section {
    padding: 100px 0;
    background: #f8fafc; /* match site */
}

/* HEADER */
.expect-header {
    text-align: center;
}

.expect-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
}

.expect-header h2 span {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expect-header p {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

/* BADGE */
.expect-badge {
    display: inline-block;
    background: #e0ecff;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* CARD */
.expect-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;

    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);

    transition: 0.3s ease;
    height: 100%;
}

/* ICON */
.expect-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    font-size: 22px;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    box-shadow: 0 10px 20px rgba(37,99,235,0.15);
}

/* TITLE */
.expect-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

/* TEXT */
.expect-card p {
    font-size: 14px;
    color: #475569;
}

/* HOVER */
.expect-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #2563eb;
}

/* NOTE BOX */
.expect-note {
    margin-top: 50px;
    padding: 20px;
    border-radius: 14px;

    background: #e0ecff;
    color: #2563eb;

    text-align: center;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .expect-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .expect-header h2 {
        font-size: 24px;
    }
}