/* ========================================
   Services Page - Section 1: Introduction
   PREMIUM WITH ELEGANT CONNECTION LINES
   ======================================== */

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

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

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

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

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

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

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

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

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

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

/* ========== PREMIUM 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 {
    stroke: url(#lineGradient);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    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 - Premium */
.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 - Premium */
.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) {
    #services-intro h2 {
        font-size: 40px;
    }

    #services-intro 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) {
    #services-intro h2 {
        font-size: 32px;
    }

    #services-intro p {
        font-size: 15px;
    }

    #services-intro 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;
    }
}


/* ========================================
   Section 2: Business Process Automation
   TWO COLUMN LAYOUT
   ======================================== */

#services-automation {
    background: linear-gradient(180deg, rgb(246, 251, 255) 0%, var(--bg-light) 100%);
    padding-bottom: 90px;
}

/* Main Heading */
#services-automation h2 {
    color: var(--primary-color);
    font-size: 46px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

#services-automation h2 .shastra-thin {
    color: rgb(30, 41, 59);
    font-weight: 300;
}

/* Service Intro Paragraph */
.shastra-service-intro {
    color: rgb(51, 65, 85);
    font-size: 17px;
    line-height: 1.8;
    max-width: 750px;
    /* margin: 0 auto; */
}

.shastra-service-intro .shastra-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Offer Heading */
.shastra-offer-heading {
    color: rgb(15, 23, 42);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.3px;
    margin-bottom: 40px;
}

/* Premium Offer List - Two Columns */
.shastra-offer-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shastra-offer-list-premium li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.08);
    transition: all 0.3s ease;
}

.shastra-offer-list-premium li:last-child {
    border-bottom: none;
}

.shastra-offer-list-premium li:hover {
    padding-left: 8px;
    background: rgba(var(--primary-color-rgb), 0.02);
}

.shastra-check-icon {
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.shastra-offer-list-premium li:hover .shastra-check-icon {
    color: var(--accent-color);
    transform: scale(1.15);
}

.shastra-offer-text {
    color: rgb(51, 65, 85);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 3px;
}

.shastra-offer-list-premium li:hover .shastra-offer-text {
    color: var(--primary-color);
}

/* Premium Mini CTA */
.shastra-mini-cta-premium {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.06), rgba(var(--accent-color-rgb), 0.04));
    border: 1px solid rgba(var(--primary-color-rgb), 0.12);
    border-radius: 16px;
    padding: 38px 42px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.06);
}

.shastra-mini-cta-premium:hover {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.08), rgba(var(--accent-color-rgb), 0.06));
    border-color: rgba(var(--primary-color-rgb), 0.2);
    box-shadow: 0 8px 24px rgba(var(--primary-color-rgb), 0.12);
    transform: translateY(-3px);
}

.shastra-cta-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgb(255, 255, 255);
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.2);
}

.shastra-mini-cta-premium:hover .shastra-cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 18px rgba(var(--primary-color-rgb), 0.3);
}

.shastra-cta-content-box {
    flex: 1;
}

.shastra-cta-tagline {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.2px;
}

.shastra-cta-link-premium {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.shastra-cta-link-premium:hover {
    color: var(--accent-color);
    gap: 12px;
}

.shastra-cta-link-premium i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.shastra-cta-link-premium:hover i {
    transform: translateX(4px);
}

/* Center Alignment */
.shastra-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    #services-automation h2 {
        font-size: 40px;
    }

    .shastra-service-intro {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    #services-automation {
        padding: 60px 0 60px;
    }

    #services-automation h2 {
        font-size: 32px;
    }

    .shastra-service-intro {
        font-size: 15px;
    }

    .shastra-offer-heading {
        font-size: 20px;
    }

    .shastra-offer-list-premium li {
        padding: 14px 0;
        gap: 14px;
    }

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

    .shastra-mini-cta-premium {
        flex-direction: column;
        padding: 28px 24px;
        text-align: center;
    }

    .shastra-cta-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}


/* ========================================
   Section 3: AI & Data Intelligence
   ULTIMATE COMPLETE DESIGN
   ======================================== */

#services-ai {
    background: linear-gradient(180deg, rgb(246, 251, 255) 0%, var(--bg-light) 100%);
    padding: 90px 0 90px;
}

/* ========== NEURAL NETWORK CREATIVE ========== */
.shastra-ai-creative {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ========== NEURAL NETWORK - LINES ONLY ANIMATE ========== */
.shastra-neural-svg {
    width: 100%;
    height: auto;
    max-width: 360px;
    filter: drop-shadow(0 15px 40px rgba(59, 130, 246, 0.18));
}

/* NODES - NO ANIMATION (Static) */
.shastra-layer-nodes-1 circle,
.shastra-layer-nodes-2 circle,
.shastra-layer-nodes-3 circle,
.shastra-layer-nodes-4 circle {
    animation: none;
}

/* CONNECTION LINES - ONLY THESE ANIMATE */
.shastra-connections .line-anim {
    stroke-dasharray: 60;
    animation: flowBestLines 5s ease-in-out infinite;
}

.shastra-connections .line-anim:nth-child(1) {
    animation-delay: 0s;
}

.shastra-connections .line-anim:nth-child(2) {
    animation-delay: 0.15s;
}

.shastra-connections .line-anim:nth-child(3) {
    animation-delay: 0.3s;
}

.shastra-connections .line-anim:nth-child(4) {
    animation-delay: 0.45s;
}

.shastra-connections .line-anim:nth-child(5) {
    animation-delay: 0.6s;
}

.shastra-connections .line-anim:nth-child(6) {
    animation-delay: 0.75s;
}

.shastra-connections .line-anim:nth-child(7) {
    animation-delay: 0.9s;
}

.shastra-connections .line-anim:nth-child(8) {
    animation-delay: 1.05s;
}

.shastra-connections .line-anim:nth-child(9) {
    animation-delay: 1.2s;
}

.shastra-connections .line-anim:nth-child(10) {
    animation-delay: 1.35s;
}

.shastra-connections .line-anim:nth-child(11) {
    animation-delay: 1.5s;
}

.shastra-connections .line-anim:nth-child(12) {
    animation-delay: 1.65s;
}

.shastra-connections .line-anim:nth-child(13) {
    animation-delay: 1.8s;
}

.shastra-connections .line-anim:nth-child(14) {
    animation-delay: 1.95s;
}

.shastra-connections .line-anim:nth-child(15) {
    animation-delay: 0.3s;
}

.shastra-connections .line-anim:nth-child(16) {
    animation-delay: 0.45s;
}

.shastra-connections .line-anim:nth-child(17) {
    animation-delay: 0.6s;
}

.shastra-connections .line-anim:nth-child(18) {
    animation-delay: 0.75s;
}

.shastra-connections .line-anim:nth-child(19) {
    animation-delay: 0.9s;
}

.shastra-connections .line-anim:nth-child(20) {
    animation-delay: 1.05s;
}

.shastra-connections .line-anim:nth-child(21) {
    animation-delay: 1.2s;
}

.shastra-connections .line-anim:nth-child(22) {
    animation-delay: 1.35s;
}

.shastra-connections .line-anim:nth-child(23) {
    animation-delay: 1.5s;
}

.shastra-connections .line-anim:nth-child(24) {
    animation-delay: 1.65s;
}

.shastra-connections .line-anim:nth-child(25) {
    animation-delay: 0.6s;
}

.shastra-connections .line-anim:nth-child(26) {
    animation-delay: 0.75s;
}

.shastra-connections .line-anim:nth-child(27) {
    animation-delay: 0.9s;
}

@keyframes flowBestLines {
    0% {
        stroke-dashoffset: 60;
        opacity: 0.1;
    }

    25% {
        opacity: 0.6;
    }

    50% {
        stroke-dashoffset: 0;
        opacity: 0.95;
    }

    75% {
        opacity: 0.6;
    }

    100% {
        stroke-dashoffset: -60;
        opacity: 0.1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .shastra-neural-svg {
        max-width: 300px;
    }
}


/* ========== CONTENT HEADINGS ========== */
.shastra-section-heading {
    color: var(--primary-color);
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.shastra-section-heading .shastra-thin {
    color: rgb(30, 41, 59);
    font-weight: 300;
}

.shastra-section-intro {
    color: rgb(51, 65, 85);
    font-size: 16px;
    line-height: 1.8;
}

.shastra-section-intro .shastra-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.shastra-content-heading {
    color: rgb(15, 23, 42);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* ========== OFFER LIST ========== */
.shastra-offer-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shastra-offer-list-premium li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.08);
    transition: all 0.3s ease;
}

.shastra-offer-list-premium li:last-child {
    border-bottom: none;
}

.shastra-offer-list-premium li:hover {
    padding-left: 8px;
    background: rgba(var(--primary-color-rgb), 0.02);
}

.shastra-check-icon {
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.shastra-offer-list-premium li:hover .shastra-check-icon {
    color: var(--accent-color);
    transform: scale(1.15);
}

.shastra-offer-text {
    color: rgb(51, 65, 85);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 3px;
}

.shastra-offer-list-premium li:hover .shastra-offer-text {
    color: var(--primary-color);
}

/* ========== FULL WIDTH CTA ========== */
.shastra-mini-cta-full {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.08), rgba(var(--accent-color-rgb), 0.05));
    border: 1.5px solid rgba(var(--primary-color-rgb), 0.15);
    border-radius: 18px;
    padding: 48px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(var(--primary-color-rgb), 0.08);
}

.shastra-mini-cta-full:hover {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.12), rgba(var(--accent-color-rgb), 0.08));
    border-color: rgba(var(--primary-color-rgb), 0.25);
    box-shadow: 0 15px 50px rgba(var(--primary-color-rgb), 0.15);
    transform: translateY(-5px);
}

.shastra-mini-cta-full .shastra-cta-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: rgb(255, 255, 255);
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.25);
}

.shastra-mini-cta-full:hover .shastra-cta-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.35);
}

.shastra-cta-content-full {
    flex: 1;
}

.shastra-mini-cta-full .shastra-cta-tagline {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 14px 0;
    letter-spacing: -0.3px;
}

.shastra-cta-link-premium {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.shastra-cta-link-premium:hover {
    color: var(--accent-color);
    gap: 14px;
}

.shastra-cta-link-premium i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.shastra-cta-link-premium:hover i {
    transform: translateX(4px);
}

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

    .shastra-section-intro {
        font-size: 15px;
    }

    .shastra-neural-svg {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    #services-ai {
        padding: 80px 0 60px;
    }

    .shastra-section-heading {
        font-size: 28px;
    }

    .shastra-section-intro {
        font-size: 14px;
    }

    .shastra-ai-creative {
        margin-bottom: 50px;
    }

    .shastra-neural-svg {
        max-width: 280px;
    }

    .shastra-content-heading {
        text-align: center;
    }

    .shastra-offer-list-premium li {
        padding: 14px 0;
        gap: 14px;
    }

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

    .shastra-mini-cta-full {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
        margin-top: 30px;
    }

    .shastra-mini-cta-full .shastra-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .shastra-mini-cta-full .shastra-cta-tagline {
        font-size: 18px;
    }
}


/* ========================================
   Section 4: Custom SaaS Development
   CONTENT LEFT + CREATIVE RIGHT
   ======================================== */

#services-saas {
    background: linear-gradient(180deg, var(--bg-light) 0%, rgb(246, 251, 255) 100%);
    padding: 90px 0 90px;
}

/* ========== DASHBOARD CREATIVE ========== */
.shastra-saas-creative {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== DASHBOARD SVG ========== */

.shastra-dashboard-svg {
    width: 100%;
    height: auto;
    max-width: 360px;
    filter: drop-shadow(0 14px 40px rgba(var(--primary-color-rgb), 0.15));
}

/* AI Indicator Pulses */
.ai-pulse {
    animation: aiPulse 1.5s ease-in-out infinite;
}

.ai-1 {
    animation-delay: 0s;
}

.ai-2 {
    animation-delay: 0.35s;
}

.ai-3 {
    animation-delay: 0.7s;
}

@keyframes aiPulse {

    0%,
    100% {
        r: 1.5px;
        opacity: 0.4;
    }

    50% {
        r: 2.5px;
        opacity: 1;
    }
}

/* Chart Bars */
.bar {
    animation: barGrow 1.4s ease-in-out infinite;
    transform-origin: bottom;
}

.bar-1 {
    animation-delay: 0s;
}

.bar-2 {
    animation-delay: 0.08s;
}

.bar-3 {
    animation-delay: 0.16s;
}

.bar-4 {
    animation-delay: 0.24s;
}

.bar-5 {
    animation-delay: 0.32s;
}

.bar-6 {
    animation-delay: 0.4s;
}

.bar-7 {
    animation-delay: 0.48s;
}

.bar-8 {
    animation-delay: 0.56s;
}

.bar-9 {
    animation-delay: 0.64s;
}

.bar-10 {
    animation-delay: 0.72s;
}

.bar-11 {
    animation-delay: 0.8s;
}

.bar-12 {
    animation-delay: 0.88s;
}

.bar-13 {
    animation-delay: 0.96s;
}

.bar-14 {
    animation-delay: 1.04s;
}

.bar-15 {
    animation-delay: 1.12s;
}

.bar-16 {
    animation-delay: 1.2s;
}

.bar-17 {
    animation-delay: 1.28s;
}

.bar-18 {
    animation-delay: 1.36s;
}

@keyframes barGrow {

    0%,
    100% {
        opacity: 0.65;
    }

    50% {
        opacity: 1;
    }
}

/* Trend Line */
.trend-line {
    stroke-dasharray: 400;
    animation: trendDraw 3s ease-in-out infinite;
}

@keyframes trendDraw {

    0%,
    10% {
        stroke-dashoffset: 400;
        opacity: 0.3;
    }

    30% {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }

    80% {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }

    100% {
        stroke-dashoffset: -400;
        opacity: 0.3;
    }
}

/* Activity Items */
.activity-item {
    animation: activityFadeIn 0.5s ease-out;
}

.activity-1 {
    animation-delay: 0s;
}

.activity-2 {
    animation-delay: 0.1s;
}

.activity-3 {
    animation-delay: 0.2s;
}

@keyframes activityFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.activity-bar {
    animation: activityGrow 1.5s ease-in-out infinite;
    transform-origin: left;
}

@keyframes activityGrow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Processing Lines */
.proc-line {
    animation: processFlow 1.6s ease-in-out infinite;
}

.proc-1 {
    animation-delay: 0s;
}

.proc-2 {
    animation-delay: 0.4s;
}

.proc-3 {
    animation-delay: 0.8s;
}

.proc-4 {
    animation-delay: 1.2s;
}

@keyframes processFlow {

    0%,
    100% {
        opacity: 0.3;
        stroke-width: 1.5;
    }

    50% {
        opacity: 0.9;
        stroke-width: 2.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .shastra-dashboard-svg {
        max-width: 300px;
    }
}


/* ========== CONTENT HEADINGS ========== */
.shastra-section-heading {
    color: var(--primary-color);
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.shastra-section-heading .shastra-thin {
    color: rgb(30, 41, 59);
    font-weight: 300;
}

.shastra-section-intro {
    color: rgb(51, 65, 85);
    font-size: 16px;
    line-height: 1.8;
}

.shastra-section-intro .shastra-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.shastra-content-heading {
    color: rgb(15, 23, 42);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* ========== OFFER LIST ========== */
.shastra-offer-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shastra-offer-list-premium li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.08);
    transition: all 0.3s ease;
}

.shastra-offer-list-premium li:last-child {
    border-bottom: none;
}

.shastra-offer-list-premium li:hover {
    padding-left: 8px;
    background: rgba(var(--primary-color-rgb), 0.02);
}

.shastra-check-icon {
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.shastra-offer-list-premium li:hover .shastra-check-icon {
    color: var(--accent-color);
    transform: scale(1.15);
}

.shastra-offer-text {
    color: rgb(51, 65, 85);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 3px;
}

.shastra-offer-list-premium li:hover .shastra-offer-text {
    color: var(--primary-color);
}

/* ========== FULL WIDTH CTA ========== */
.shastra-mini-cta-full {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.08), rgba(var(--accent-color-rgb), 0.05));
    border: 1.5px solid rgba(var(--primary-color-rgb), 0.15);
    border-radius: 18px;
    padding: 48px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(var(--primary-color-rgb), 0.08);
}

.shastra-mini-cta-full:hover {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.12), rgba(var(--accent-color-rgb), 0.08));
    border-color: rgba(var(--primary-color-rgb), 0.25);
    box-shadow: 0 15px 50px rgba(var(--primary-color-rgb), 0.15);
    transform: translateY(-5px);
}

.shastra-mini-cta-full .shastra-cta-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: rgb(255, 255, 255);
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.25);
}

.shastra-mini-cta-full:hover .shastra-cta-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.35);
}

.shastra-cta-content-full {
    flex: 1;
}

.shastra-mini-cta-full .shastra-cta-tagline {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 14px 0;
    letter-spacing: -0.3px;
}

.shastra-cta-link-premium {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.shastra-cta-link-premium:hover {
    color: var(--accent-color);
    gap: 14px;
}

.shastra-cta-link-premium i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.shastra-cta-link-premium:hover i {
    transform: translateX(4px);
}

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

    .shastra-section-intro {
        font-size: 15px;
    }

    .shastra-dashboard-svg {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    #services-saas {
        padding: 80px 0 60px;
    }

    .shastra-section-heading {
        font-size: 28px;
    }

    .shastra-section-intro {
        font-size: 14px;
    }

    .shastra-saas-creative {
        margin-bottom: 50px;
    }

    .shastra-dashboard-svg {
        max-width: 280px;
    }

    .shastra-content-heading {
        text-align: center;
    }

    .shastra-offer-list-premium li {
        padding: 14px 0;
        gap: 14px;
    }

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

    .shastra-mini-cta-full {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
        margin-top: 30px;
    }

    .shastra-mini-cta-full .shastra-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .shastra-mini-cta-full .shastra-cta-tagline {
        font-size: 18px;
    }
}


/* ========================================
   Section 5: Integration & Cloud Systems
   CONTENT ONLY (NO CREATIVE)
   ======================================== */

#services-cloud {
    background: linear-gradient(180deg, rgb(246, 251, 255) 0%, var(--bg-light) 100%);
    padding: 90px 0 90px;
}

/* ========== SERVICE TAG ========== */
.shastra-service-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.shastra-service-tag:hover {
    background: rgba(var(--primary-color-rgb), 0.15);
}

/* ========== CONTENT STYLES ========== */
.shastra-section-heading {
    color: var(--primary-color);
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.shastra-section-heading .shastra-thin {
    color: rgb(30, 41, 59);
    font-weight: 300;
}

.shastra-section-intro {
    color: rgb(51, 65, 85);
    font-size: 16px;
    line-height: 1.8;
}

.shastra-section-intro .shastra-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.shastra-content-heading {
    color: rgb(15, 23, 42);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* ========== OFFER LIST ========== */
.shastra-offer-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shastra-offer-list-premium li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.08);
    transition: all 0.3s ease;
}

.shastra-offer-list-premium li:last-child {
    border-bottom: none;
}

.shastra-offer-list-premium li:hover {
    padding-left: 8px;
    background: rgba(var(--primary-color-rgb), 0.02);
}

.shastra-check-icon {
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.shastra-offer-list-premium li:hover .shastra-check-icon {
    color: var(--accent-color);
    transform: scale(1.15);
}

.shastra-offer-text {
    color: rgb(51, 65, 85);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 3px;
}

.shastra-offer-list-premium li:hover .shastra-offer-text {
    color: var(--primary-color);
}

/* ========== FULL WIDTH CTA ========== */
.shastra-mini-cta-full {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.08), rgba(var(--accent-color-rgb), 0.05));
    border: 1.5px solid rgba(var(--primary-color-rgb), 0.15);
    border-radius: 18px;
    padding: 48px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(var(--primary-color-rgb), 0.08);
    /* margin-top: 60px; */
}

.shastra-mini-cta-full:hover {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.12), rgba(var(--accent-color-rgb), 0.08));
    border-color: rgba(var(--primary-color-rgb), 0.25);
    box-shadow: 0 15px 50px rgba(var(--primary-color-rgb), 0.15);
    transform: translateY(-5px);
}

.shastra-mini-cta-full .shastra-cta-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: rgb(255, 255, 255);
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.25);
}

.shastra-mini-cta-full:hover .shastra-cta-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.35);
}

.shastra-cta-content-full {
    flex: 1;
}

.shastra-mini-cta-full .shastra-cta-tagline {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 14px 0;
    letter-spacing: -0.3px;
}

.shastra-cta-link-premium {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.shastra-cta-link-premium:hover {
    color: var(--accent-color);
    gap: 14px;
}

.shastra-cta-link-premium i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.shastra-cta-link-premium:hover i {
    transform: translateX(4px);
}

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

    .shastra-section-intro {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    #services-cloud {
        padding: 80px 0 60px;
    }

    .shastra-section-heading {
        font-size: 28px;
    }

    .shastra-section-intro {
        font-size: 14px;
    }

    .shastra-content-heading {
        text-align: center;
    }

    .shastra-offer-list-premium li {
        padding: 14px 0;
        gap: 14px;
    }

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

    .shastra-mini-cta-full {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
        margin-top: 30px;
    }

    .shastra-mini-cta-full .shastra-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .shastra-mini-cta-full .shastra-cta-tagline {
        font-size: 18px;
    }
}


/* ========================================
   Section 6: The Shastra Advantage
   IMPROVED CREATIVE DESIGN - 6 CARDS
   ======================================== */

#shastra-advantage {
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(246, 251, 255) 100%);
    padding: 90px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Decorative Top Element */
.advantage-top-deco {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.08), transparent);
    border-radius: 50%;
    animation: floatDeco 20s ease-in-out infinite;
}

@keyframes floatDeco {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* ========== HEADER BOX ========== */
.advantage-header-box {
    position: relative;
    padding: 0;
}

.advantage-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    animation: labelFloat 2s ease-in-out infinite;
}

@keyframes labelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ========== HEADING STYLES ========== */
.shastra-section-heading {
    color: var(--primary-color);
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.shastra-section-heading .shastra-thin {
    color: rgb(30, 41, 59);
    font-weight: 300;
}

.shastra-section-intro {
    color: rgb(55, 65, 81);
    font-size: 16px;
    line-height: 1.8;
}

.shastra-section-intro .shastra-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.shastra-content-heading {
    color: rgb(15, 23, 42);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

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

/* ========== ADVANTAGE CARDS ========== */
.advantage-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(var(--primary-color-rgb), 0.12);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    height: 100%;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

/* Card Deco Background */
.card-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.05), transparent);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.advantage-card:hover .card-deco {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1), transparent);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(var(--primary-color-rgb), 0.15);
    transform: translateY(-8px);
}

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

/* Icon Circle */
.advantage-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.15), rgba(var(--accent-color-rgb), 0.08));
    border: 2px solid rgba(var(--primary-color-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 32px;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon-circle {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    color: rgb(255, 255, 255);
    transform: scale(1.15) rotate(5deg);
}

/* Title */
.advantage-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-title {
    color: var(--accent-color);
}

/* Description */
.advantage-desc {
    color: rgb(70, 78, 84);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.advantage-card:hover .advantage-desc {
    color: rgb(55, 65, 81);
}

/* Arrow */
.card-arrow {
    color: var(--primary-color);
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========== BOTTOM BOX ========== */
.advantage-bottom-box {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.06), rgba(var(--accent-color-rgb), 0.03));
    border: 1px solid rgba(var(--primary-color-rgb), 0.12);
    border-radius: 16px;
    padding: 40px 50px;
    transition: all 0.5s ease;
}

.advantage-bottom-box:hover {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.08), rgba(var(--accent-color-rgb), 0.05));
    border-color: rgba(var(--primary-color-rgb), 0.2);
    box-shadow: 0 15px 35px rgba(var(--primary-color-rgb), 0.1);
}

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

    .shastra-section-intro {
        font-size: 15px;
    }

    .advantage-card {
        padding: 32px 24px;
    }

    .advantage-icon-circle {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .advantage-title {
        font-size: 18px;
    }

    .advantage-bottom-box {
        padding: 35px 40px;
    }
}

@media (max-width: 768px) {
    #shastra-advantage {
        padding: 80px 0 60px;
    }

    .advantage-top-deco {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }

    .shastra-section-heading {
        font-size: 28px;
    }

    .shastra-section-intro {
        font-size: 14px;
    }

    .advantage-card {
        padding: 28px 20px;
    }

    .advantage-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 16px;
    }

    .advantage-title {
        font-size: 16px;
    }

    .advantage-desc {
        font-size: 13px;
    }

    .shastra-content-heading {
        font-size: 20px;
    }

    .advantage-bottom-box {
        padding: 30px 25px;
    }
}

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

    .advantage-card {
        padding: 24px 16px;
    }

    .advantage-icon-circle {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .advantage-title {
        font-size: 15px;
    }
}


/* ========================================
   Section 7: CTA / Conversion
   FULL-WIDTH GRADIENT + ANIMATIONS
   ======================================== */

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