/* ========================================
   Process Page - Section 1: Introduction
   MATCHES SERVICES PAGE DESIGN
   ======================================== */

#process-hero {
    background: linear-gradient(180deg, var(--bg-light) 0%, rgb(245, 250, 255) 100%);
}

/* Main Heading Style */
#process-hero h2 {
    color: var(--primary-color);
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
}

#process-hero h2 .shastra-thin {
    color: rgb(15, 23, 42);
    font-weight: 300;
}

/* Paragraph Style */
#process-hero p {
    color: rgb(50, 50, 50);
    font-size: 16px;
    line-height: 1.7;
}

#process-hero p .shastra-thin {
    color: var(--primary-color);
    font-weight: 600;
}

/* Philosophy Heading */
#process-hero h4 {
    color: rgb(15, 23, 42);
    font-size: 24px;
    font-weight: 600;
}

#process-hero h4 .shastra-thin {
    color: var(--primary-color);
    font-weight: 300;
}

/* Divider Line */
#process-hero .shastra-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    width: 60px;
    opacity: 0.5;
}

/* Button Styling */
#process-hero .shastra-button {
    background-color: var(--primary-color);
    color: rgb(255, 255, 255);
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

#process-hero .shastra-button:hover {
    background-color: var(--accent-color);
}

/* ========== HERO VISUAL ========== */
.shastra-hero-visual {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.shastra-floating-modules {
    position: relative;
    width: 100%;
    height: 100%;
}

/* SVG Connection Lines */
.shastra-connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(var(--primary-color-rgb), 0.1));
}

.shastra-connection-line {
    opacity: 0.6;
    animation: drawLine 3s ease-in-out infinite;
}

@keyframes drawLine {
    0% {
        stroke-dasharray: 0, 500;
        opacity: 0.3;
    }

    50% {
        stroke-dasharray: 250, 250;
        opacity: 0.8;
    }

    100% {
        stroke-dasharray: 500, 0;
        opacity: 0.3;
    }
}

.shastra-connection-line:nth-child(2) {
    animation-delay: 0.5s;
}

.shastra-connection-line:nth-child(3) {
    animation-delay: 1s;
}

.shastra-connection-line:nth-child(4) {
    animation-delay: 1.5s;
}

/* Central Hub */
.shastra-hub {
    position: absolute;
    width: 130px;
    height: 130px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: rgb(255, 255, 255);
    box-shadow:
        0 0 30px rgba(var(--primary-color-rgb), 0.3),
        0 15px 50px rgba(var(--primary-color-rgb), 0.25),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
    z-index: 10;
    animation: pulseHubPremium 2.5s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes pulseHubPremium {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 30px rgba(var(--primary-color-rgb), 0.3),
            0 15px 50px rgba(var(--primary-color-rgb), 0.25),
            inset 0 2px 5px rgba(255, 255, 255, 0.2);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow:
            0 0 40px rgba(var(--primary-color-rgb), 0.4),
            0 25px 70px rgba(var(--primary-color-rgb), 0.35),
            inset 0 2px 5px rgba(255, 255, 255, 0.3);
    }
}

/* Floating Modules */
.shastra-module {
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(var(--primary-color-rgb), 0.15);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 8px 25px rgba(var(--primary-color-rgb), 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    z-index: 5;
}

.shastra-module:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
    transform: translateY(-12px) scale(1.12);
    box-shadow:
        0 20px 50px rgba(var(--primary-color-rgb), 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.shastra-module i {
    font-size: 40px;
    color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shastra-module:hover i {
    color: var(--accent-color);
    transform: scale(1.25) rotate(15deg);
}

.shastra-module span {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.shastra-module:hover span {
    color: var(--accent-color);
}

/* Module Positions - Circle Layout */
.shastra-module-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatModule1 5s ease-in-out infinite;
}

.shastra-module-2 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: floatModule2 5s ease-in-out infinite;
    animation-delay: 1.25s;
}

.shastra-module-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatModule3 5s ease-in-out infinite;
    animation-delay: 2.5s;
}

.shastra-module-4 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: floatModule4 5s ease-in-out infinite;
    animation-delay: 3.75s;
}

@keyframes floatModule1 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

@keyframes floatModule2 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(20px);
    }
}

@keyframes floatModule3 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes floatModule4 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-20px);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    #process-hero h2 {
        font-size: 40px;
    }

    #process-hero h4 {
        font-size: 20px;
    }

    .shastra-hero-visual {
        height: 380px;
    }

    .shastra-module {
        width: 100px;
        height: 100px;
    }

    .shastra-module i {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    #process-hero h2 {
        font-size: 32px;
    }

    #process-hero p {
        font-size: 15px;
    }

    #process-hero h4 {
        font-size: 18px;
    }

    .shastra-hero-visual {
        height: 320px;
        margin-top: 40px;
    }

    .shastra-module {
        width: 90px;
        height: 90px;
    }

    .shastra-module i {
        font-size: 32px;
    }

    .shastra-hub {
        width: 110px;
        height: 110px;
        font-size: 42px;
    }
}

/* ========================================
   PROCESS TIMELINE - ZIGZAG LAYOUT
   ======================================== */

.process-timeline-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.process-timeline-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 30%, rgba(var(--primary-color-rgb), 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(var(--accent-color-rgb), 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Section Title */
.timeline-section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin: 0 0 16px 0;
    position: relative;
    z-index: 1;
}

.timeline-section-title .shastra-thin {
    font-weight: 300;
    color: rgb(15, 23, 42);
}

.timeline-section-subtitle {
    font-size: 17px;
    color: rgb(100, 116, 139);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Timeline Container */
.process-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}

/* Center Line */
.timeline-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
        var(--primary-color) 0%,
        var(--accent-color) 40%,
        var(--primary-color) 70%,
        var(--accent-color) 100%);
    transform: translateX(-50%);
    opacity: 0.25;
    border-radius: 3px;
    z-index: 0;
}

.timeline-center-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(var(--primary-color-rgb), 0.15);
}

.timeline-center-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 5px rgba(var(--accent-color-rgb), 0.15);
}

/* Timeline Step Row */
.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* LEFT step: card on left, node in center */
.timeline-step-left {
    flex-direction: row;
    padding-right: calc(50% + 50px);
}

.timeline-step-left .timeline-card {
    flex: 1;
}

.timeline-step-left .timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
}

/* RIGHT step: node in center, card on right */
.timeline-step-right {
    flex-direction: row;
    padding-left: calc(50% + 50px);
}

.timeline-step-right .timeline-card {
    flex: 1;
}

.timeline-step-right .timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
}

/* Timeline Node (icon circle) */
.timeline-node {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 3;
    box-shadow:
        0 0 0 6px rgba(var(--primary-color-rgb), 0.12),
        0 8px 25px rgba(var(--primary-color-rgb), 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-node i {
    font-size: 28px;
    color: rgb(255, 255, 255);
    transition: all 0.4s ease;
}

.timeline-step:hover .timeline-node {
    transform: translateX(-50%) scale(1.15);
    box-shadow:
        0 0 0 8px rgba(var(--primary-color-rgb), 0.18),
        0 15px 40px rgba(var(--primary-color-rgb), 0.3);
}

.timeline-step:hover .timeline-node i {
    transform: rotate(15deg) scale(1.1);
}

/* Alternate node gradient */
.timeline-step:nth-child(odd) .timeline-node {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.timeline-step:nth-child(even) .timeline-node {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Timeline Card */
.timeline-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(var(--primary-color-rgb), 0.06);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-step:hover .timeline-card::before {
    transform: scaleX(1);
}

.timeline-step:hover .timeline-card {
    border-color: rgba(var(--primary-color-rgb), 0.25);
    box-shadow: 0 20px 50px rgba(var(--primary-color-rgb), 0.12);
    transform: translateY(-5px);
}

/* Card Header */
.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

/* Step Number Badge */
.timeline-step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1), rgba(var(--accent-color-rgb), 0.06));
    border: 2px solid rgba(var(--primary-color-rgb), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.timeline-step:hover .timeline-step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: rgb(255, 255, 255);
    border-color: transparent;
}

/* Card Heading */
.timeline-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: rgb(15, 23, 42);
    margin: 0;
    transition: color 0.4s ease;
}

.timeline-step:hover .timeline-card h3 {
    color: var(--primary-color);
}

.timeline-card h3 .shastra-thin {
    font-weight: 300;
    color: var(--primary-color);
}

/* Card Paragraph */
.timeline-card p {
    font-size: 15px;
    line-height: 1.75;
    color: rgb(70, 80, 90);
    margin: 0 0 20px 0;
}

/* Activities List */
.timeline-activities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.timeline-activities li {
    font-size: 13.5px;
    color: rgb(60, 70, 80);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.timeline-activities li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-activities li {
    color: rgb(15, 23, 42);
}

.timeline-step:hover .timeline-activities li::before {
    color: var(--accent-color);
    transform: translateX(3px);
}

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

@media (max-width: 1024px) {
    .timeline-section-title {
        font-size: 40px;
    }

    .timeline-section-subtitle {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .timeline-card h3 {
        font-size: 20px;
    }

    .timeline-card {
        padding: 30px 25px;
    }

    .timeline-node {
        width: 60px;
        height: 60px;
    }

    .timeline-node i {
        font-size: 24px;
    }

    .timeline-step-left {
        padding-right: calc(50% + 40px);
    }

    .timeline-step-right {
        padding-left: calc(50% + 40px);
    }
}

@media (max-width: 768px) {
    .process-timeline-section {
        padding: 70px 0 60px;
    }

    .timeline-section-title {
        font-size: 32px;
    }

    .timeline-section-subtitle {
        font-size: 15px;
        margin-bottom: 50px;
    }

    /* Stack everything vertically on mobile */
    .timeline-center-line {
        left: 30px;
    }

    .timeline-center-line::before,
    .timeline-center-line::after {
        left: 50%;
    }

    .timeline-step-left,
    .timeline-step-right {
        flex-direction: row;
        padding-left: 75px;
        padding-right: 0;
    }

    .timeline-step-left .timeline-node,
    .timeline-step-right .timeline-node {
        position: absolute;
        left: 30px;
        transform: translateX(-50%);
        top: 20px;
    }

    .timeline-node {
        width: 50px;
        height: 50px;
    }

    .timeline-node i {
        font-size: 20px;
    }

    .timeline-step:hover .timeline-node {
        transform: translateX(-50%) scale(1.1);
    }

    .timeline-card h3 {
        font-size: 18px;
    }

    .timeline-card p {
        font-size: 14px;
    }

    .timeline-card {
        padding: 25px 20px;
    }

    .timeline-activities {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .timeline-activities li {
        font-size: 13px;
    }

    .timeline-step-number {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .timeline-step {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .process-timeline-section {
        padding: 50px 0 40px;
    }

    .timeline-section-title {
        font-size: 26px;
    }

    .timeline-section-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .timeline-center-line {
        left: 22px;
    }

    .timeline-step-left,
    .timeline-step-right {
        padding-left: 58px;
    }

    .timeline-step-left .timeline-node,
    .timeline-step-right .timeline-node {
        left: 22px;
    }

    .timeline-node {
        width: 42px;
        height: 42px;
    }

    .timeline-node i {
        font-size: 17px;
    }

    .timeline-card h3 {
        font-size: 16px;
    }

    .timeline-card p {
        font-size: 13px;
    }

    .timeline-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .timeline-card-header {
        gap: 12px;
    }

    .timeline-step-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
        border-radius: 10px;
    }

    .timeline-step {
        margin-bottom: 30px;
    }

    .timeline-activities li {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .timeline-node,
    .timeline-card,
    .timeline-step-number,
    .timeline-activities li,
    .timeline-card::before {
        animation: none !important;
        transition: none !important;
    }
}





.steps-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin: 0 0 80px 0;
    animation: titleFadeInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.steps-title .shastra-thin {
    font-weight: 300;
    color: rgb(15, 23, 42);
}

@keyframes titleFadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.process-steps-section .container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Step Card */
.process-step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 80px;
    padding: 50px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(var(--primary-color-rgb), 0.08);
    box-shadow: 0 10px 40px rgba(var(--primary-color-rgb), 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    -webkit-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    transition: left 0.8s ease;
}

.process-step:hover::before {
    left: 100%;
}

.process-step:nth-child(2) {
    animation-delay: 0.1s;
}

.process-step:nth-child(3) {
    animation-delay: 0.2s;
}

.process-step:nth-child(4) {
    animation-delay: 0.3s;
}

.process-step:nth-child(5) {
    animation-delay: 0.4s;
}

.process-step:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.process-step:hover {
    box-shadow: 0 30px 80px rgba(var(--primary-color-rgb), 0.2);
    transform: translateY(-8px) scale(1.01);
    border-color: var(--primary-color);
}

/* Step Badge */
.step-badge {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgb(96, 165, 250) 100%);
    color: white;
    border-radius: 20px;
    font-size: 36px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: badgeBounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    position: relative;
    margin: auto;
}

.process-step:nth-child(2) .step-badge {
    animation-delay: 0.15s;
}

.process-step:nth-child(3) .step-badge {
    animation-delay: 0.25s;
}

.process-step:nth-child(4) .step-badge {
    animation-delay: 0.35s;
}

.process-step:nth-child(5) .step-badge {
    animation-delay: 0.45s;
}

.process-step:nth-child(6) .step-badge {
    animation-delay: 0.55s;
}

@keyframes badgeBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotateY(90deg);
    }

    60% {
        transform: scale(1.1);
    }

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

.process-step:hover .step-badge {
    transform: scale(1.15) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(var(--primary-color-rgb), 0.3);
}

.process-step:nth-child(3) .step-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.process-step:nth-child(4) .step-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.process-step:nth-child(5) .step-badge {
    background: linear-gradient(135deg, rgb(96, 165, 250) 0%, var(--primary-color) 100%);
}

.process-step:nth-child(6) .step-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgb(96, 165, 250) 100%);
}

/* Step Inner Content */
.step-inner {
    flex: 1;
    animation: fadeInLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.process-step:nth-child(2) .step-inner {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) .step-inner {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) .step-inner {
    animation-delay: 0.4s;
}

.process-step:nth-child(5) .step-inner {
    animation-delay: 0.5s;
}

.process-step:nth-child(6) .step-inner {
    animation-delay: 0.6s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.step-inner h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: rgb(15, 23, 42);
    margin: 0 0 16px 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step:hover .step-inner h3 {
    color: var(--primary-color);
    transform: translateX(4px);
}

.step-inner h3 .shastra-thin {
    font-weight: 300;
    color: var(--primary-color);
}

.step-inner p {
    font-size: 15px;
    line-height: 1.8;
    color: rgb(50, 50, 50);
    margin: 0 0 24px 0;
    transition: all 0.4s ease;
}

.process-step:hover .step-inner p {
    color: rgb(15, 23, 42);
}

/* Activities List */
.step-activities {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 30px;
}

.step-activities li {
    font-size: 14px;
    color: rgb(50, 50, 50);
    padding-left: 28px;
    margin-bottom: 14px;
    position: relative;
    line-height: 1.6;
    break-inside: avoid;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: listItemFadeIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.process-step:nth-child(2) .step-activities li:nth-child(1) {
    animation-delay: 0.25s;
}

.process-step:nth-child(2) .step-activities li:nth-child(2) {
    animation-delay: 0.3s;
}

.process-step:nth-child(2) .step-activities li:nth-child(3) {
    animation-delay: 0.35s;
}

.process-step:nth-child(2) .step-activities li:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes listItemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

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

.step-activities li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step:hover .step-activities li::before {
    color: rgb(96, 165, 250);
    transform: translateX(-8px);
    animation: arrowBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-8px);
    }
}

.process-step:hover .step-activities li {
    color: var(--primary-color);
    transform: translateX(6px);
}

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

@media (max-width: 992px) {
    .process-steps-section {
        padding: 80px 30px;
    }

    .steps-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .process-step {
        gap: 30px;
        padding: 40px;
        margin-bottom: 60px;
    }

    .step-badge {
        width: 90px;
        height: 90px;
        font-size: 32px;
    }

    .step-inner h3 {
        font-size: 24px;
    }

    .step-activities {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .process-steps-section {
        padding: 60px 20px;
    }

    .steps-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        margin-bottom: 40px;
    }

    .step-badge {
        width: 80px;
        height: 80px;
        font-size: 28px;
        align-self: flex-start;
    }

    .step-inner h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .step-inner p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .step-activities {
        columns: 1;
    }

    .step-activities li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .process-step:hover .step-badge {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .process-steps-section {
        padding: 40px 16px;
    }

    .steps-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .process-step {
        gap: 16px;
        padding: 24px 16px;
        margin-bottom: 30px;
    }

    .step-badge {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .step-inner h3 {
        font-size: 18px;
    }

    .step-inner p {
        font-size: 13px;
    }

    .step-activities li {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .process-step:hover {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .process-step,
    .step-badge,
    .step-inner,
    .step-activities li,
    .steps-title {
        animation: none !important;
        transition: none !important;
    }
}



/* ========================================
   SECTION 7: COMMITMENT - VERTICAL TIMELINE
   ======================================== */

.commitment-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, rgb(245, 250, 255) 100%);
}

/* ========== VERTICAL TIMELINE ========== */

.vertical-timeline {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 40px 0;
}

/* Timeline center line */
.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgb(96, 165, 250) 50%, var(--primary-color) 100%);
    opacity: 0.4;
    animation: lineGrow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-origin: top;
}

@keyframes lineGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* Timeline Items */
.timeline-item {
    position: relative;
    padding-left: 100px;
    padding-bottom: 50px;
    animation: itemFadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes itemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(var(--primary-color-rgb), 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot::before {
    content: "";
    position: absolute;
    inset: 6px;
    background: linear-gradient(135deg, var(--primary-color), rgb(96, 165, 250));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-item:hover .timeline-dot::before {
    opacity: 1;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 12px rgba(var(--primary-color-rgb), 0.15), 0 10px 30px rgba(var(--primary-color-rgb), 0.2);
}

/* Timeline Content */
.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(var(--primary-color-rgb), 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 15px 40px rgba(var(--primary-color-rgb), 0.15);
    transform: translateX(8px);
    border-left-color: rgb(96, 165, 250);
}

.timeline-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 6px 0;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h5 {
    color: var(--accent-color);
}

.timeline-content p {
    font-size: 13px;
    color: rgb(50, 50, 50);
    margin: 0;
    line-height: 1.5;
}

/* ========== RIGHT CONTENT ========== */

.commitment-content h2 {
    color: var(--primary-color);
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
}

.commitment-content h2 .shastra-thin {
    color: rgb(15, 23, 42);
    font-weight: 300;
}

.commitment-content p {
    color: rgb(50, 50, 50);
    font-size: 16px;
    line-height: 1.7;
}

.commitment-content p .shastra-thin {
    color: var(--primary-color);
    font-weight: 600;
}

.commitment-content h4 {
    color: rgb(15, 23, 42);
    font-size: 24px;
    font-weight: 600;
}

.commitment-content h4 .shastra-thin {
    color: var(--primary-color);
    font-weight: 300;
}

.commitment-content .shastra-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    width: 60px;
    opacity: 0.5;
}

.commitment-content .shastra-button {
    background-color: var(--primary-color);
    color: rgb(255, 255, 255);
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.commitment-content .shastra-button:hover {
    background-color: var(--accent-color);
}

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

@media (max-width: 992px) {
    .vertical-timeline {
        max-width: 350px;
    }

    .timeline-dot {
        width: 55px;
        height: 55px;
        border-width: 3px;
    }

    .timeline-content {
        padding: 18px;
    }

    .timeline-content h5 {
        font-size: 15px;
    }

    .commitment-content h2 {
        font-size: 40px;
    }

    .commitment-content h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .vertical-timeline {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .timeline-line {
        left: 25px;
        width: 2px;
    }

    .timeline-item {
        padding-left: 80px;
        padding-bottom: 40px;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }

    .timeline-content {
        padding: 16px;
    }

    .timeline-content h5 {
        font-size: 14px;
    }

    .timeline-content p {
        font-size: 12px;
    }

    .commitment-content h2 {
        font-size: 32px;
    }

    .commitment-content p {
        font-size: 14px;
    }

    .commitment-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        padding-left: 70px;
        padding-bottom: 35px;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    .timeline-content {
        padding: 14px;
        border-radius: 8px;
    }

    .timeline-content h5 {
        font-size: 13px;
    }

    .timeline-content p {
        font-size: 11px;
    }

    .commitment-content h2 {
        font-size: 24px;
    }

    .commitment-content p {
        font-size: 13px;
    }

    .commitment-content h4 {
        font-size: 16px;
    }
}






#shastra-cta-final {
    position: relative;
    overflow: hidden;
}

/* CTA Background with Enhanced Gradient and Image Overlay */
.shastra-cta-background {
    background-image: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.88) 0%, rgba(15, 23, 42, 0.95) 100%), url('../img/cta-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Decorative Motion Lines */
.shastra-motion-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.15;
    overflow: hidden;
}

.shastra-motion-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    width: 200%;
}

.shastra-line-1 {
    top: 15%;
    animation: slideRightSmooth 10s linear infinite;
    transform: skewY(-2deg);
}

.shastra-line-2 {
    top: 50%;
    animation: slideRightSmooth 12s linear infinite;
    animation-delay: 3s;
}

.shastra-line-3 {
    top: 85%;
    animation: slideRightSmooth 14s linear infinite;
    animation-delay: 6s;
    transform: skewY(2deg);
}

@keyframes slideRightSmooth {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(50%);
    }
}

/* Floating Particles */
.shastra-motion-lines::before,
.shastra-motion-lines::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: floatParticle 20s ease-in-out infinite;
}

.shastra-motion-lines::before {
    top: 20%;
    left: 10%;
}

.shastra-motion-lines::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
    }
}

/* CTA Content */
.shastra-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* CTA Heading */
.shastra-cta-heading {
    color: rgb(255, 255, 255);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: headingSlideUp 0.8s ease-out 0.2s both;
}

.shastra-cta-heading .shastra-thin {
    font-weight: 300;
}

@keyframes headingSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Text */
.shastra-cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    /* margin: 0 auto; */
    margin-left: auto;
    margin-right: auto;
    animation: textSlideUp 0.8s ease-out 0.4s both;
}

.shastra-cta-text .shastra-accent {
    color: rgb(255, 255, 255);
    font-weight: 700;
}

@keyframes textSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons - FLEX ROW */
.shastra-cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: buttonsSlideUp 0.8s ease-out 0.6s both;
}

@keyframes buttonsSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button Base */
.shastra-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.shastra-cta-btn i {
    font-size: 18px;
    transition: all 0.4s ease;
}

/* Primary Button */
.shastra-cta-primary {
    background-color: rgb(255, 255, 255);
    color: var(--primary-color);
    border-color: rgb(255, 255, 255);
}

.shastra-cta-primary:hover {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.shastra-cta-primary:hover i {
    transform: translateX(3px);
}

/* Secondary Button */
.shastra-cta-secondary {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
}

.shastra-cta-secondary:hover {
    background-color: rgb(255, 255, 255);
    color: var(--primary-color);
    border-color: rgb(255, 255, 255);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.shastra-cta-secondary:hover i {
    transform: translateX(3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .shastra-cta-heading {
        font-size: 40px;
    }

    .shastra-cta-text {
        font-size: 16px;
    }

    .shastra-cta-btn {
        padding: 16px 40px;
        font-size: 15px;
    }

    .shastra-cta-buttons {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #shastra-cta-final {
        padding: 0;
    }

    .shastra-cta-heading {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .shastra-cta-text {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .shastra-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .shastra-cta-btn {
        padding: 16px 40px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }

    .shastra-motion-lines::before,
    .shastra-motion-lines::after {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .shastra-cta-heading {
        font-size: 24px;
    }

    .shastra-cta-text {
        font-size: 14px;
    }

    .shastra-cta-btn {
        padding: 14px 30px;
        font-size: 14px;
        max-width: 100%;
    }

    .shastra-cta-btn i {
        font-size: 16px;
    }

    .shastra-motion-lines {
        opacity: 0.08;
    }
}
