/* ========================================
   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 - Triangle Layout */
.shastra-module-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatModule1 5s ease-in-out infinite;
}

.shastra-module-2 {
    bottom: 5%;
    right: 5%;
    animation: floatModule2Triangle 5s ease-in-out infinite;
    animation-delay: 1.6s;
}

.shastra-module-3 {
    bottom: 5%;
    left: 5%;
    animation: floatModule3Triangle 5s ease-in-out infinite;
    animation-delay: 3.2s;
}

@keyframes floatModule1 {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes floatModule2Triangle {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(12px) translateX(12px);
    }
}

@keyframes floatModule3Triangle {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(12px) translateX(-12px);
    }
}

/* 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;
    }
}

/* ========================================
   MODERN GLASS CARDS TIMELINE
   ======================================== */

.process-modern-section {
    padding: 120px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.process-modern-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(var(--accent-color-rgb), 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.modern-section-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 16px 0;
    position: relative;
    z-index: 1;
}

.modern-section-title .shastra-thin {
    font-weight: 300;
    color: var(--accent-color);
}

.modern-section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.modern-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.modern-step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    cursor: default;
    z-index: 1;
}

/* Hover Glowing effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.modern-step-card:hover .card-glow {
    opacity: 0.6;
}

.modern-step-card:hover {
    transform: translateY(-15px) !important;
    border-color: rgba(var(--accent-color-rgb), 0.5);
    box-shadow: 0 30px 60px rgba(var(--accent-color-rgb), 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.5s ease;
    position: relative;
}

.step-icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
    transition: all 0.5s ease;
}

.modern-step-card:hover .step-icon-wrapper {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(var(--accent-color-rgb), 0.4);
}

.modern-step-card:hover .step-icon-wrapper i {
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 70px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    transition: all 0.5s ease;
}

.modern-step-card:hover .step-number {
    color: rgba(var(--accent-color-rgb), 0.2);
    transform: scale(1.1) translate(-5px, 5px);
}

.modern-step-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    transition: all 0.3s ease;
}

.modern-step-card h3 .shastra-thin {
    font-weight: 300;
}

.modern-step-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 30px 0;
    transition: all 0.3s ease;
}

.modern-step-card:hover p {
    color: #ffffff;
}

.modern-activities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modern-activities li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.modern-activities li i {
    color: var(--accent-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.modern-step-card:hover .modern-activities li {
    color: #ffffff;
    transform: translateX(8px);
}

.modern-step-card:hover .modern-activities li i {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .modern-process-grid {
        gap: 25px;
    }
    .modern-step-card {
        padding: 40px 30px;
    }
    .modern-step-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .process-modern-section {
        padding: 80px 0;
    }
    .modern-section-title {
        font-size: 36px;
    }
    .modern-process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .step-number {
        font-size: 60px;
    }
}





.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
   ======================================== */

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

.commitment-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: "";
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

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

/* Timeline center line */
.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(var(--primary-color-rgb), 0.15) 0%, 
        var(--accent-color) 50%, 
        rgba(var(--primary-color-rgb), 0.15) 100%);
    border-radius: 2px;
}

/* Flowing glow animation */
.timeline-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
    animation: flowGlow 4s linear infinite;
}

@keyframes flowGlow {
    0% {
        top: -10%;
    }
    100% {
        top: 110%;
    }
}

/* Timeline Items */
.timeline-item {
    position: relative;
    padding-left: 90px;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    left: 2px;
    top: 4px;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 2px solid rgba(var(--primary-color-rgb), 0.12);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.timeline-dot i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 
        0 0 0 8px rgba(var(--accent-color-rgb), 0.15),
        0 15px 30px rgba(var(--accent-color-rgb), 0.3);
    transform: scale(1.15);
}

.timeline-item:hover .timeline-dot i {
    color: #ffffff;
    transform: rotate(360deg);
}

/* Timeline Content */
.timeline-content {
    background: #ffffff;
    padding: 22px 28px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 20px 45px rgba(var(--primary-color-rgb), 0.12);
    transform: translateX(12px);
    border-left-color: var(--accent-color);
}

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

.timeline-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ========== 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: #475569;
    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;
    }

    .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;
    }

    .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;
    }

    .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;
    }
}
