/* assignment-help - page styles, scoped to body.page-assignment-help */

body.page-assignment-help {
    --primary-color: #4361ee;
    --primary-dark: #3a0ca3;
    --secondary-color: #f72585;
    --accent-color: #4cc9f0;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}
body.page-assignment-help * {
    box-sizing: border-box;
}
body.page-assignment-help {
    scroll-behavior: smooth;
}
body.page-assignment-help {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: #444;
    background: #ffffff;
    overflow-x: hidden;
}
.page-assignment-help img {
    max-width: 100%;
}
.page-assignment-help h1,
.page-assignment-help h2,
.page-assignment-help h3,
.page-assignment-help h4,
.page-assignment-help h5,
.page-assignment-help h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}
.page-assignment-help .assignment-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(76, 201, 240, 0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(247, 37, 133, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8faff 0%,
            #ffffff 55%,
            #f9f5ff 100%
        );
}
.page-assignment-help .assignment-hero::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.06);
    top: -180px;
    right: -150px;
}
.page-assignment-help .assignment-hero-content {
    position: relative;
    z-index: 2;
}
.page-assignment-help .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    border-radius: 50px;
    background: rgba(67, 97, 238, 0.09);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.page-assignment-help .hero-label i {
    font-size: 0.85rem;
}
.page-assignment-help .assignment-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.08;
    color: #161616;
    margin-bottom: 24px;
}
.page-assignment-help .assignment-hero h1 span {
    color: var(--primary-color);
}
.page-assignment-help .hero-text {
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5d6270;
    margin-bottom: 30px;
}
.page-assignment-help .hero-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 20px;
    margin-bottom: 34px;
}
.page-assignment-help .hero-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #30343d;
    font-size: 0.92rem;
    font-weight: 500;
}
.page-assignment-help .hero-check-icon {
    width: 25px;
    height: 25px;
    min-width: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    font-size: 0.72rem;
}
.page-assignment-help .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 35px;
}
.page-assignment-help .hero-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 25px;
    border-radius: 50px;
    color: #ffffff;
    background:
        linear-gradient(
            45deg,
            var(--secondary-color),
            #ff5c8a
        );
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(247, 37, 133, 0.25);
    transition: all 0.3s ease;
}
.page-assignment-help .hero-primary-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(247, 37, 133, 0.35);
}
.page-assignment-help .hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border-radius: 50px;
    color: var(--primary-color);
    background: #ffffff;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.page-assignment-help .hero-secondary-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}
.page-assignment-help .hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.page-assignment-help .trust-item {
    display: flex;
    flex-direction: column;
}
.page-assignment-help .trust-item strong {
    font-size: 1.1rem;
    color: #222;
}
.page-assignment-help .trust-item span {
    color: #777;
    font-size: 0.75rem;
}
.page-assignment-help .trust-divider {
    width: 1px;
    height: 35px;
    background: #dfe2e8;
}
.page-assignment-help .hero-visual {
    position: relative;
    padding: 20px;
}
.page-assignment-help .hero-image-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    padding: 10px;
    box-shadow:
        0 30px 70px rgba(36, 48, 85, 0.18),
        0 10px 30px rgba(67, 97, 238, 0.12);
    transform: rotate(1deg);
    transition: transform 0.4s ease;
}
.page-assignment-help .hero-image-box:hover {
    transform: rotate(0deg) translateY(-5px);
}
.page-assignment-help .hero-image-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}
.page-assignment-help .hero-glow {
    position: absolute;
    width: 230px;
    height: 230px;
    background: rgba(247, 37, 133, 0.16);
    filter: blur(55px);
    border-radius: 50%;
    bottom: -40px;
    left: -50px;
    z-index: 0;
}
.page-assignment-help .floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 17px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    animation: floatingCard 4s ease-in-out infinite;
}
.page-assignment-help .floating-card-one {
    top: 45px;
    left: -20px;
}
.page-assignment-help .floating-card-two {
    right: -20px;
    bottom: 45px;
    animation-delay: 1s;
}
.page-assignment-help .floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.page-assignment-help .floating-icon.blue {
    background: var(--primary-color);
}
.page-assignment-help .floating-icon.pink {
    background: var(--secondary-color);
}
.page-assignment-help .floating-card strong {
    display: block;
    color: #20232a;
    font-size: 0.78rem;
}
.page-assignment-help .floating-card small {
    display: block;
    color: #777;
    font-size: 0.68rem;
    margin-top: 2px;
}
@keyframes floatingCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}
.page-assignment-help .section-padding {
    padding: 100px 0;
}
.page-assignment-help .section-label {
    /* Preserves the original page's line-box metrics now that this stylesheet
       loads alongside the shared chrome. Without it this inline-block sits on
       the line strut's baseline and pushes the section header down 4px. */
    vertical-align: top;
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
}
.page-assignment-help .section-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: #151515;
    margin-bottom: 15px;
}
.page-assignment-help .section-title span {
    color: var(--primary-color);
}
.page-assignment-help .section-description {
    max-width: 680px;
    margin: 0 auto;
    color: #6b707b;
    line-height: 1.8;
}
.page-assignment-help .features-section {
    background: #ffffff;
}
.page-assignment-help .feature-card {
    height: 100%;
    position: relative;
    padding: 30px;
    border: 1px solid #edf0f5;
    border-radius: 22px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.35s ease;
}
.page-assignment-help .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--primary-color),
            var(--secondary-color)
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.page-assignment-help .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(34, 43, 69, 0.10);
    border-color: transparent;
}
.page-assignment-help .feature-card:hover::before {
    transform: scaleX(1);
}
.page-assignment-help .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1.25rem;
}
.page-assignment-help .feature-icon.blue {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
}
.page-assignment-help .feature-icon.pink {
    background: rgba(247, 37, 133, 0.1);
    color: var(--secondary-color);
}
.page-assignment-help .feature-icon.cyan {
    background: rgba(76, 201, 240, 0.12);
    color: #159bc5;
}
.page-assignment-help .feature-card h3 {
    font-size: 1.15rem;
    color: #252833;
    margin-bottom: 12px;
}
.page-assignment-help .feature-card p {
    color: #6d727c;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}
.page-assignment-help .process-section {
    background:
        linear-gradient(
            135deg,
            #f7f9ff 0%,
            #ffffff 100%
        );
}
.page-assignment-help .process-card {
    height: 100%;
    position: relative;
    padding: 35px 28px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #edf0f6;
    text-align: center;
    transition: all 0.35s ease;
}
.page-assignment-help .process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(67, 97, 238, 0.10);
}
.page-assignment-help .process-number {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #dce1ef;
}
.page-assignment-help .process-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            var(--primary-color),
            #6d7ff5
        );
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 12px 25px rgba(67, 97, 238, 0.25);
}
.page-assignment-help .process-card h3 {
    font-size: 1.15rem;
    color: #252833;
    margin-bottom: 12px;
}
.page-assignment-help .process-card p {
    color: #6d727c;
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 0;
}
.page-assignment-help .why-section {
    background: #ffffff;
}
.page-assignment-help .why-image-wrapper {
    position: relative;
}
.page-assignment-help .why-image-wrapper img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 25px 55px rgba(28, 37, 62, 0.14);
}
.page-assignment-help .why-badge {
    position: absolute;
    left: -20px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
}
.page-assignment-help .why-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 37, 133, 0.1);
    color: var(--secondary-color);
}
.page-assignment-help .why-badge strong {
    display: block;
    font-size: 0.82rem;
    color: #222;
}
.page-assignment-help .why-badge span {
    display: block;
    color: #777;
    font-size: 0.68rem;
    margin-top: 2px;
}
.page-assignment-help .why-content .section-description {
    margin: 0;
    max-width: 600px;
}
.page-assignment-help .why-list {
    margin-top: 30px;
}
.page-assignment-help .why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}
.page-assignment-help .why-check {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
}
.page-assignment-help .why-item strong {
    display: block;
    color: #242832;
    margin-bottom: 5px;
}
.page-assignment-help .why-item p {
    color: #6d727c;
    font-size: 0.86rem;
    line-height: 1.65;
    margin: 0;
}
.page-assignment-help .assignment-visual {
    position:relative;
    overflow:visible !important;
    background:linear-gradient(145deg,#0c1024,#171d3d);
    padding:14px;
    border-radius:32px;
    box-shadow:
        0 35px 80px rgba(25,35,80,.25),
        0 0 45px rgba(67,97,238,.12);
    transform-style:preserve-3d;
    animation:visualFloat 5s ease-in-out infinite;
}
.page-assignment-help .assignment-image-wrap {
    position:relative;
    overflow:hidden;
    height:480px;
    border-radius:24px;
    background:#111;
    transform:translateZ(25px);
}
.page-assignment-help .assignment-image-wrap::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,.16) 50%,
        transparent 70%
    );
    transform:translateX(-120%);
    animation:imageShine 4s ease-in-out infinite;
}
.page-assignment-help .assignment-image-wrap img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform:scale(1.04);
    animation:imageZoom 7s ease-in-out infinite alternate;
}
.page-assignment-help .visual-orb {
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    filter:blur(1px);
    z-index:3;
}
.page-assignment-help .orb-1 {
    width:75px;
    height:75px;
    top:-25px;
    right:-20px;
    background:rgba(76,201,240,.55);
    box-shadow:0 0 45px rgba(76,201,240,.55);
    animation:orbMove 4s ease-in-out infinite;
}
.page-assignment-help .orb-2 {
    width:55px;
    height:55px;
    bottom:-18px;
    left:-20px;
    background:rgba(247,37,133,.5);
    box-shadow:0 0 40px rgba(247,37,133,.5);
    animation:orbMove 5s ease-in-out infinite reverse;
}
.page-assignment-help .visual-line {
    position:absolute;
    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;
    pointer-events:none;
}
.page-assignment-help .line-1 {
    width:130px;
    height:130px;
    right:-65px;
    top:80px;
    animation:rotateLine 12s linear infinite;
}
.page-assignment-help .line-2 {
    width:95px;
    height:95px;
    left:-48px;
    bottom:80px;
    animation:rotateLine 9s linear infinite reverse;
}
@keyframes visualFloat {
    0%,100%{
        transform:rotateY(-2deg) rotateX(1deg) translateY(0);
    }
    50%{
        transform:rotateY(2deg) rotateX(-1deg) translateY(-8px);
    }
}
@keyframes imageZoom {
    from{transform:scale(1.04);}
    to{transform:scale(1.10);}
}
@keyframes imageShine {
    0%,35%{transform:translateX(-120%);}
    65%,100%{transform:translateX(120%);}
}
@keyframes orbMove {
    0%,100%{transform:translate(0,0);}
    50%{transform:translate(8px,-14px);}
}
@keyframes rotateLine {
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}@media(max-width:767px) {
.page-assignment-help .assignment-image-wrap {
        height:350px;
    }
.page-assignment-help .assignment-visual {
        border-radius:24px;
        padding:10px;
    }
}
