/* =========================================================
   PF & ESIC CONSULTANT PAGE
   BLUE PROFESSIONAL THEME
========================================================= */

:root {

    --blue-dark: #062a5c;
    --blue-deep: #031f46;
    --blue: #1763c5;
    --blue-main: #2878df;
    --blue-light: #4f9cff;
    --blue-soft: #eaf3ff;

    --white: #ffffff;
    --bg-light: #f6f9fd;
    --bg-blue: #f0f6ff;

    --text-dark: #17365d;
    --text: #42566f;
    --text-light: #718096;

    --border: #dfe8f3;

    --shadow:
        0 15px 45px rgba(19, 63, 112, 0.10);

    --shadow-hover:
        0 22px 55px rgba(19, 63, 112, 0.17);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;

    color: var(--text);

    background: #ffffff;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    transition: 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding-left: 24px;
    padding-right: 24px;
}


/* =========================================================
   SECTION
========================================================= */

.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 80px 0;
}

.section-heading {
    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--blue-main);

    font-family: "Cinzel", serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.section-title {
    margin: 0 0 18px;

    color: var(--text-dark);

    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;
}

.section-subtitle {
    margin: 0;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.8;
}

.section-text {
    margin-bottom: 20px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   DIVIDER
========================================================= */

.blue-divider {
    width: 65px;

    height: 3px;

    margin: 0 0 28px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--blue-light)
        );
}

.blue-divider.center {
    margin: 0 auto 25px;
}


/* =========================================================
   TWO COLUMN
========================================================= */

.two-column {
    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    background: #ffffff;
}

.info-card {

    padding: 42px;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    position: relative;

    overflow: hidden;
}

.info-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue-dark),
            var(--blue-light)
        );
}

.info-card-icon {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 10px;

    background: var(--blue-soft);

    color: var(--blue-main);

    font-size: 25px;
}

.info-card h3 {

    margin: 0 0 15px;

    color: var(--text-dark);

    font-family: "Playfair Display", serif;

    font-size: 25px;
}

.info-card p {

    margin-bottom: 22px;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CHECK LIST
========================================================= */

.check-list {

    padding: 0;

    margin: 0;

    list-style: none;
}

.check-list li {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 9px 0;

    color: var(--text);

    font-size: 14px;
}

.check-list i {

    color: var(--blue-main);

    font-size: 13px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--bg-light);
}

.grid-3 {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.grid-4 {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


.service-card {

    position: relative;

    padding: 35px 30px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow:
        0 8px 28px rgba(16, 56, 99, 0.06);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--blue-light)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: 0.35s ease;
}

.service-card:hover {

    transform: translateY(-8px);

    border-color: #b8d5f7;

    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 10px;

    background: var(--blue-soft);

    color: var(--blue-main);

    font-size: 22px;

    transition: 0.3s ease;
}

.service-card:hover .service-card-icon {

    background: var(--blue-main);

    color: #ffffff;

    transform: translateY(-3px);
}

.service-card h3 {

    margin: 0 0 12px;

    color: var(--text-dark);

    font-family: "Playfair Display", serif;

    font-size: 21px;
}

.service-card p {

    margin: 0 0 20px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.8;
}

.service-card a {

    color: var(--blue-main);

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.4px;
}

.service-card a i {

    margin-left: 7px;

    transition: 0.3s ease;
}

.service-card:hover a i {

    transform: translateX(5px);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: #ffffff;
}

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.process-item {

    position: relative;

    padding: 35px 25px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #ffffff;

    text-align: center;

    transition: 0.35s ease;
}

.process-item:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.process-number {

    position: absolute;

    top: 16px;
    right: 18px;

    color: #dceafd;

    font-family: "Playfair Display", serif;

    font-size: 35px;

    font-weight: 700;
}

.process-icon {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--blue-soft);

    color: var(--blue-main);

    font-size: 22px;
}

.process-item h3 {

    margin: 0 0 12px;

    color: var(--text-dark);

    font-family: "Playfair Display", serif;

    font-size: 19px;
}

.process-item p {

    margin: 0;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   MONTHLY
========================================================= */

.monthly-section {
    background: var(--bg-blue);
}

.monthly-points {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 28px;
}

.monthly-points div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text-dark);

    font-size: 13px;
}

.monthly-points i {
    color: var(--blue-main);
}

.monthly-list {

    padding: 28px;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #062a5c,
            #0d4c9c
        );

    box-shadow: var(--shadow);
}

.monthly-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 16px 15px;

    border-bottom:
        1px solid rgba(255,255,255,0.10);

    color: rgba(255,255,255,0.90);

    font-size: 13px;
}

.monthly-row:last-child {
    border-bottom: none;
}

.monthly-row strong {

    color: #67a9ff;

    font-size: 12px;

    white-space: nowrap;
}


/* =========================================================
   CASE STUDY
========================================================= */

.case-study-section {
    background: #ffffff;
}

.case-study-card {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    overflow: hidden;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.case-image {

    min-height: 500px;
}

.case-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.case-content {

    padding: 48px;
}

.case-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    margin-bottom: 18px;

    border-radius: 30px;

    background: var(--blue-soft);

    color: var(--blue-main);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.5px;
}

.case-content h3 {

    margin: 0 0 25px;

    color: var(--text-dark);

    font-family: "Playfair Display", serif;

    font-size: 27px;
}

.case-block {

    padding-left: 17px;

    margin-bottom: 22px;

    border-left: 3px solid;
}

.case-block small {

    display: block;

    margin-bottom: 7px;

    color: var(--blue-main);

    font-family: "Cinzel", serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;
}

.case-block p {

    margin: 0;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.8;
}

.case-block.challenge {
    border-color: #e85d5d;
}

.case-block.challenge small {
    color: #d84b4b;
}

.case-block.approach {
    border-color: var(--blue-main);
}

.case-block.result {
    border-color: #35a66d;
}

.case-block.result small {
    color: #26905a;
}

.case-stats {

    display: flex;

    gap: 35px;

    flex-wrap: wrap;

    padding-top: 15px;
}

.case-stats div {

    display: flex;

    flex-direction: column;
}

.case-stats strong {

    color: var(--blue-main);

    font-family: "Playfair Display", serif;

    font-size: 29px;
}

.case-stats span {

    color: var(--text-light);

    font-size: 11px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--bg-light);
}

.faq-container {

    max-width: 860px;

    margin: 0 auto;
}

.faq-item {

    margin-bottom: 12px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 8px;

    background: #ffffff;

    transition: 0.3s ease;
}

.faq-item.open {

    border-color: #b8d4f5;

    box-shadow:
        0 8px 25px rgba(26, 77, 130, 0.08);
}

.faq-q {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 20px 23px;

    border: 0;

    background: transparent;

    color: var(--text-dark);

    text-align: left;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;
}

.faq-q .arrow {

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--blue-soft);

    color: var(--blue-main);

    font-size: 17px;

    transition: 0.3s ease;
}

.faq-item.open .arrow {

    transform: rotate(45deg);

    background: var(--blue-main);

    color: #ffffff;
}

.faq-a {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a-inner {

    padding: 0 23px 22px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    background: #ffffff;
}

.testimonial-card {

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 6px 25px rgba(20, 61, 105, 0.05);

    transition: 0.35s ease;
}

.testimonial-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: #b9d5f5;
}

.stars {

    margin-bottom: 18px;

    color: #2878df;

    letter-spacing: 3px;

    font-size: 15px;
}

.testimonial-card p {

    margin: 0 0 22px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.85;

    font-style: italic;
}

.testimonial-card strong {

    display: block;

    margin-bottom: 5px;

    color: var(--text-dark);

    font-size: 14px;
}

.testimonial-card span {

    color: var(--text-light);

    font-size: 11px;
}


/* =========================================================
   RELATED
========================================================= */

.related-section {
    background: var(--bg-light);
}

.related-card {

    display: block;

    padding: 28px 24px;

    text-decoration: none;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: #ffffff;

    transition: 0.35s ease;
}

.related-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: #b6d4f7;
}

.related-card > i {

    display: block;

    margin-bottom: 15px;

    color: var(--blue-main);

    font-size: 30px;
}

.related-card h4 {

    margin: 0 0 8px;

    color: var(--text-dark);

    font-family: "Playfair Display", serif;

    font-size: 17px;
}

.related-card p {

    margin: 0;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   CLIENTS
========================================================= */

.clients-section {

    padding: 65px 0;

    background:
        linear-gradient(
            135deg,
            #031f46,
            #0a4a9b
        );

    overflow: hidden;
}

.clients-label {

    margin-bottom: 30px;

    color: rgba(255,255,255,0.75);

    text-align: center;

    font-family: "Cinzel", serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.clients-track-wrap {

    width: 100%;

    overflow: hidden;

    margin-bottom: 20px;

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent,
            black 8%,
            black 92%,
            transparent
        );
}

.clients-track {

    display: flex;

    width: max-content;

    align-items: center;

    animation:
        clientsLeft 35s linear infinite;
}

.clients-track.reverse {

    animation:
        clientsRight 40s linear infinite;
}

.client-item {

    flex-shrink: 0;

    padding: 13px 25px;

    margin-right: 15px;

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 50px;

    background:
        rgba(255,255,255,0.06);

    color:
        rgba(255,255,255,0.82);

    font-size: 12px;

    white-space: nowrap;
}

@keyframes clientsLeft {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes clientsRight {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}


/* =========================================================
   CTA
========================================================= */

.final-cta {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #031f46 0%,
            #062a5c 45%,
            #0d5cb8 100%
        );
}

.final-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.10) 0,
            rgba(255,255,255,0.10) 1px,
            transparent 1px,
            transparent 45px
        );
}

.cta-content {

    position: relative;

    z-index: 2;

    text-align: center;
}

.cta-content .section-label {
    color: #70b1ff;
}

.cta-content h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(34px, 5vw, 56px);

    line-height: 1.15;
}

.cta-content h2 span {
    color: #65a9ff;
}

.cta-content p {

    max-width: 700px;

    margin: 0 auto 35px;

    color: rgba(255,255,255,0.78);

    font-size: 15px;

    line-height: 1.8;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {

    min-height: 56px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 28px;

    border-radius: 6px;

    text-decoration: none;

    font-family: "Cinzel", serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.7px;
}

.cta-primary {

    background: #2878df;

    color: #ffffff;
}

.cta-secondary {

    border: 1px solid rgba(255,255,255,0.3);

    background: rgba(255,255,255,0.06);

    color: #ffffff;
}

.cta-primary:hover,
.cta-secondary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.25);
}

.cta-bottom {

    margin-top: 30px;

    color: rgba(255,255,255,0.45);

    font-size: 11px;
}


/* =========================================================
   RESOURCES
========================================================= */

.resources-section {
    background: #ffffff;
}

.blog-card {

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 7px 25px rgba(20, 61, 105, 0.05);

    transition: 0.35s ease;
}

.blog-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.blog-card > img {

    width: 100%;

    height: 220px;

    object-fit: cover;
}

.blog-body {

    padding: 25px;
}

.blog-body > span {

    display: inline-block;

    margin-bottom: 10px;

    color: var(--blue-main);

    font-family: "Cinzel", serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;
}

.blog-body h3 {

    margin: 0 0 12px;

    color: var(--text-dark);

    font-family: "Playfair Display", serif;

    font-size: 20px;

    line-height: 1.4;
}

.blog-body p {

    margin: 0 0 18px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.8;
}

.blog-body a {

    color: var(--blue-main);

    text-decoration: none;

    font-family: "Cinzel", serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;
}

.blog-body a i {

    margin-left: 5px;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-wa {

    position: fixed;

    right: 24px;

    bottom: 95px;

    z-index: 999;
}

.floating-wa-btn {

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1eaa61;

    color: #ffffff;

    text-decoration: none;

    font-size: 28px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.20);

    transition: 0.3s ease;
}

.floating-wa-btn:hover {

    transform: scale(1.08);
}


/* =========================================================
   FLOATING CALL
========================================================= */

.floating-call {

    position: fixed;

    right: 24px;

    bottom: 25px;

    z-index: 999;
}

.floating-call-btn {

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--blue-main);

    color: #ffffff;

    text-decoration: none;

    font-size: 20px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.20);

    transition: 0.3s ease;
}

.floating-call-btn:hover {

    transform: scale(1.08);

    background: var(--blue-dark);
}


/* =========================================================
   BACK TOP
========================================================= */

.back-top {

    position: fixed;

    right: 90px;

    bottom: 25px;

    z-index: 998;

    width: 45px;
    height: 45px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: #ffffff;

    color: var(--blue-main);

    font-size: 20px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: 0.3s ease;

    box-shadow:
        0 7px 20px rgba(0,0,0,0.12);
}

.back-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   ANIMATION
========================================================= */

.fade-up {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.fade-up.visible {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .grid-4 {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .two-column {

        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .case-study-card {

        grid-template-columns:
            1fr;
    }

    .case-image {

        min-height: 350px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .container {

        padding-left: 18px;
        padding-right: 18px;
    }

    .section-pad {
        padding: 70px 0;
    }

    .section-pad-sm {
        padding: 65px 0;
    }

    .section-title {

        font-size: 31px;
    }

    .grid-3,
    .grid-4,
    .process-grid {

        grid-template-columns:
            1fr;
    }

    .monthly-points {

        grid-template-columns:
            1fr;
    }

    .info-card {

        padding: 30px 24px;
    }

    .monthly-list {

        padding: 18px;
    }

    .monthly-row {

        padding: 14px 10px;

        font-size: 12px;
    }

    .case-content {

        padding: 30px 23px;
    }

    .case-content h3 {

        font-size: 23px;
    }

    .case-stats {

        gap: 22px;
    }

    .case-stats strong {

        font-size: 25px;
    }

    .testimonial-card {

        padding: 25px 22px;
    }

    .blog-card > img {

        height: 200px;
    }

    .cta-buttons {

        flex-direction: column;

        width: 100%;
    }

    .cta-primary,
    .cta-secondary {

        width: 100%;
    }

    .floating-wa {

        right: 15px;

        bottom: 85px;
    }

    .floating-call {

        right: 15px;

        bottom: 18px;
    }

    .floating-wa-btn,
    .floating-call-btn {

        width: 50px;
        height: 50px;
    }

    .back-top {

        right: 75px;

        bottom: 18px;

        width: 40px;
        height: 40px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .monthly-row {

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }

}