/* About Page - Section 1 */

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

#about-intro h2 .shastra-thin {
    color: rgb(15, 23, 42);
    /* Dark Slate */
    font-weight: 300;
}

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

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

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

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

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

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

#about-intro .shastra-button:hover {
    background-color: var(--accent-color);
    /* Vibrant Blue */
}

#about-intro .shastra-button svg {
    fill: rgb(255, 255, 255);
}

/* Image Frame */
.shastra-about-photo {
    position: relative;
}

.shastra-about-photo .shastra-img-frame {
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--accent-color-rgb), 0.05) 100%);
}

.shastra-about-photo .shastra-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

    #about-intro h4 {
        font-size: 20px;
    }
}

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

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

    #about-intro h4 {
        font-size: 18px;
    }
}


/* ========================================
   About Page - Section 2: DNA (Compact)
   ======================================== */

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

/* Headings */
#about-identity h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

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

#about-identity h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}

#about-identity h3 .shastra-thin {
    color: rgb(15, 23, 42);
    font-weight: 300;
}

/* Paragraphs */
#about-identity p {
    color: rgb(55, 65, 81);
    font-size: 15px;
    line-height: 1.8;
}

#about-identity .shastra-thin {
    color: var(--primary-color);
    font-weight: 600;
}

/* Divider */
#about-identity .shastra-divider {
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    height: 2px;
    width: 50px;
}

/* Image */
.shastra-about-photo .shastra-img-frame {
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.08) 0%, rgba(var(--accent-color-rgb), 0.04) 100%);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.shastra-about-photo .shastra-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== DNA PREMIUM CARDS (First Version Design) ========== */

.shastra-cards-row {
    margin-top: 0;
}

.shastra-dna-card-premium {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(var(--primary-color-rgb), 0.12);
    border-radius: 16px;
    padding: 35px 25px;
    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;
}

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

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

.shastra-dna-card-premium:hover::before {
    transform: scaleX(1);
}

/* Card Header */
.shastra-dna-card-header {
    margin-bottom: 20px;
}

/* Card Icon Circle */
.shastra-dna-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1), rgba(var(--accent-color-rgb), 0.05));
    border: 2px solid rgba(var(--primary-color-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    color: var(--primary-color);
}

.shastra-dna-icon-circle i {
    font-size: 28px;
}

.shastra-dna-card-premium:hover .shastra-dna-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(10deg);
}

/* Card Title */
.shastra-dna-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.shastra-dna-card-premium:hover .shastra-dna-title {
    color: var(--accent-color);
}

/* Card Description */
.shastra-dna-description {
    font-size: 14px;
    color: rgb(70, 78, 84);
    line-height: 1.6;
    flex-grow: 1;
    transition: color 0.4s ease;
}

.shastra-dna-card-premium:hover .shastra-dna-description {
    color: rgb(55, 65, 81);
}

/* Responsive */
@media (max-width: 1024px) {
    #about-identity h2 {
        font-size: 32px;
    }

    .shastra-dna-card-premium {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    #about-identity h2 {
        font-size: 26px;
    }

    #about-identity h3 {
        font-size: 20px;
    }

    .shastra-dna-card-premium {
        padding: 25px 18px;
    }

    .shastra-dna-icon-circle {
        width: 50px;
        height: 50px;
    }

    .shastra-dna-icon-circle i {
        font-size: 24px;
    }

    .shastra-dna-title {
        font-size: 18px;
    }
}


/* ========================================
   Section 3: Vision & Mission (Font Awesome + Arrows)
   ======================================== */

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

/* LEFT SIDE: Vision & Mission Text */
#about-vision-mission h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

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

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

.shastra-vision-text .shastra-thin,
.shastra-mission-text .shastra-thin {
    color: var(--primary-color);
    font-weight: 700;
}

/* ========== RIGHT SIDE: Evolution Timeline (No Box) ========== */
.shastra-vision-timeline {
    display: flex;
    flex-direction: column;
}

.shastra-vision-timeline-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shastra-vision-timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.shastra-vision-timeline-item:hover .shastra-vision-timeline-icon {
    background: rgba(var(--primary-color-rgb), 0.12);
    color: var(--accent-color);
    transform: scale(1.1) rotate(-4deg);
}

.shastra-vision-timeline-content h4 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
    transition: color 0.4s ease;
}

.shastra-vision-timeline-item:hover .shastra-vision-timeline-content h4 {
    color: var(--accent-color);
}

.shastra-vision-timeline-content p {
    color: rgb(70, 78, 84);
    font-size: 14px;
    margin: 0;
    transition: color 0.4s ease;
}

.shastra-vision-timeline-item:hover .shastra-vision-timeline-content p {
    color: rgb(55, 65, 81);
}

.shastra-vision-timeline-arrow {
    display: flex;
    justify-content: flex-start;
    padding: 2px 0 2px 18px;
    color: rgba(var(--primary-color-rgb), 0.3);
    font-size: 18px;
    transition: all 0.4s ease;
}

.shastra-vision-timeline-arrow i {
    transition: all 0.4s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .shastra-vision-timeline-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
        border-radius: 14px;
    }

    .shastra-vision-timeline-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    #about-vision-mission h2 {
        font-size: 28px;
    }

    .shastra-vision-timeline-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
        border-radius: 12px;
    }

    .shastra-vision-timeline-item {
        gap: 18px;
        padding: 18px 0;
    }

    .shastra-vision-timeline-content h4 {
        font-size: 16px;
    }

    .shastra-vision-timeline-content p {
        font-size: 13px;
    }

    .shastra-vision-timeline-arrow {
        padding-left: 14px;
        font-size: 16px;
    }
}


/* ========================================
   Section 4: What Drives Us (Redesigned - No Boxes)
   ======================================== */

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

/* Header */
#about-values h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

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

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

/* ========== VALUES GRID (NO BOXES) ========== */
.shastra-values-grid {
    margin-top: -10px;
}

.shastra-value-item {
    position: relative;
    padding: 24px 0 24px 28px;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.07);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.shastra-value-item:last-child,
.shastra-value-item:nth-last-child(2):not(.col-md-6 ~ .shastra-value-item) {
    border-bottom: none;
}

/* Left accent marker */
.shastra-value-marker {
    position: absolute;
    left: 0;
    top: 28px;
    width: 3px;
    height: 32px;
    border-radius: 2px;
    background: rgba(var(--primary-color-rgb), 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shastra-value-item:hover .shastra-value-marker {
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

/* Value header (icon + title inline) */
.shastra-value-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

/* Small icon */
.shastra-value-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.06);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.shastra-value-item:hover .shastra-value-icon-sm {
    background: rgba(var(--primary-color-rgb), 0.12);
    color: var(--accent-color);
    transform: scale(1.1) rotate(-4deg);
}

/* Value label */
.shastra-value-label {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    transition: color 0.4s ease;
}

.shastra-value-item:hover .shastra-value-label {
    color: var(--accent-color);
}

/* Value description */
.shastra-value-desc-sm {
    color: rgb(70, 78, 84);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 0 54px;
    transition: color 0.4s ease;
}

.shastra-value-item:hover .shastra-value-desc-sm {
    color: rgb(55, 65, 81);
}

/* ========== TECHNOLOGY WITH INTENTION (NO BOX) ========== */
.shastra-intention-heading {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

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

.shastra-intention-text {
    color: rgb(55, 65, 81);
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.shastra-intention-text .shastra-thin {
    color: var(--primary-color);
    font-weight: 700;
}

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

/* Responsive */
@media (max-width: 1024px) {
    #about-values h2 {
        font-size: 32px;
    }

    .shastra-intention-heading {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    #about-values h2 {
        font-size: 26px;
    }

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

    .shastra-value-item {
        padding: 20px 0 20px 24px;
    }

    .shastra-value-marker {
        top: 24px;
        height: 28px;
    }

    .shastra-value-icon-sm {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 8px;
    }

    .shastra-value-label {
        font-size: 18px;
    }

    .shastra-value-desc-sm {
        font-size: 13px;
        margin-left: 50px;
    }

    .shastra-intention-heading {
        font-size: 22px;
    }

    .shastra-intention-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .shastra-value-item {
        padding: 16px 0 16px 20px;
    }

    .shastra-value-marker {
        top: 20px;
        height: 22px;
        width: 2px;
    }

    .shastra-value-head {
        gap: 12px;
    }

    .shastra-value-icon-sm {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 6px;
    }

    .shastra-value-label {
        font-size: 16px;
    }

    .shastra-value-desc-sm {
        font-size: 12px;
        margin-left: 44px;
    }

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

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


/* ========================================
   Section 5: Global Outlook
   ======================================== */

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

/* Headings */
#about-global h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

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

#about-global h3 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
}

#about-global h3 .shastra-thin {
    color: rgb(15, 23, 42);
    font-weight: 300;
}

/* Text */
.shastra-global-text,
.shastra-industry-text {
    color: rgb(55, 65, 81);
    font-size: 16px;
    line-height: 1.8;
}

.shastra-global-text .shastra-thin,
.shastra-industry-text .shastra-thin {
    color: var(--primary-color);
    font-weight: 700;
}

/* ========== INDUSTRY SHOWCASE (NO BOXES) ========== */
.shastra-industry-showcase {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.shastra-industry-showcase-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.shastra-industry-showcase-item + .shastra-industry-showcase-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: rgba(var(--primary-color-rgb), 0.12);
}

.shastra-industry-showcase-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.shastra-industry-showcase-item:hover .shastra-industry-showcase-icon {
    color: var(--accent-color);
    transform: scale(1.2) rotate(-5deg);
}

.shastra-industry-showcase-label {
    font-size: 16px;
    font-weight: 600;
    color: rgb(55, 65, 81);
    transition: color 0.4s ease;
}

.shastra-industry-showcase-item:hover .shastra-industry-showcase-label {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .shastra-industry-showcase {
        gap: 16px;
        justify-content: center;
        padding: 10px 0;
    }

    .shastra-industry-showcase-item {
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(var(--primary-color-rgb), 0.08);
        border-radius: 30px;
        box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.02);
        transition: all 0.4s ease;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .shastra-industry-showcase-item:hover {
        background: rgba(255, 255, 255, 0.95);
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.08);
    }

    .shastra-industry-showcase-item + .shastra-industry-showcase-item::before {
        display: none;
        content: none;
    }

    .shastra-industry-showcase-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .shastra-industry-showcase-label {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .shastra-industry-showcase {
        gap: 12px;
    }

    .shastra-industry-showcase-item {
        padding: 10px 20px;
        width: calc(50% - 6px);
        min-width: 130px;
        justify-content: center;
    }

    .shastra-industry-showcase-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .shastra-industry-showcase-label {
        font-size: 13px;
    }
}

/* ========== WORLD MAP CONTAINER ========== */
.shastra-world-map-container {
    /* background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(var(--primary-color-rgb), 0.12);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.08); */
    transition: all 0.5s ease;
    overflow: hidden;
}



/* ========== WORLD MAP IMAGE ========== */
.shastra-world-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 8px rgba(var(--primary-color-rgb), 0.1));
}

.shastra-world-map-image:hover {
    filter: drop-shadow(0 6px 16px rgba(var(--primary-color-rgb), 0.2));
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .shastra-world-map-container {
        padding: 20px;
    }

    .shastra-world-map-image {
        border-radius: 10px;
    }
}



/* Divider */
#about-global .shastra-divider {
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    height: 2px;
    width: 60px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    #about-global h2 {
        font-size: 32px;
    }

    #about-global h3 {
        font-size: 24px;
    }

    .shastra-world-map-container {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    #about-global h2 {
        font-size: 26px;
    }

    #about-global h3 {
        font-size: 22px;
    }

    .shastra-world-map-container {
        padding: 20px;
    }
}



/* ========================================
   Section 6: CTA / Next Step (IMPROVED)
   ======================================== */

#about-cta {
    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%);
    }
}

/* Additional 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: 42px;
    font-weight: 700;
    line-height: 1.3;
}

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

/* CTA Text */
.shastra-cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    line-height: 1.8;
    /* margin: 0 auto; */
    max-width: 700px;
}

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

/* CTA Buttons - SINGLE ROW */
.shastra-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Primary Button */
.shastra-button-primary {
    background-color: rgb(255, 255, 255);
    color: var(--primary-color);
    border: 2px solid rgb(255, 255, 255);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

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

/* Secondary Button */
.shastra-button-secondary {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

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

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

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

    .shastra-button-primary,
    .shastra-button-secondary {
        padding: 14px 35px;
        font-size: 15px;
    }
}

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

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

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

    .shastra-button-primary,
    .shastra-button-secondary {
        padding: 14px 35px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {

    .shastra-button-primary,
    .shastra-button-secondary {
        padding: 12px 30px;
        font-size: 14px;
        max-width: 100%;
    }
}

@media screen and (max-width: 992px) {
  .shastra-p-120-60 {
    padding-top: 8px !important;
    padding-bottom: 2px !important;
  }
  .shastra-p-120-30 {
    padding-top: 8px !important;
    padding-bottom: 2px !important;
  }
  .shastra-inner-banner .shastra-banner-content {
    padding: 120px 0 30px 0 !important;
  }
}
