/* ========================================

   HOME PAGE - PROFESSIONAL DESIGN

   Light backgrounds, soft blues, modern cards

   ======================================== */



/* ========================================

   Banner Slider Section - Hero

   ======================================== */



  



#home-banner {

    background: linear-gradient(180deg, var(--bg-light) 0%, rgb(245, 250, 255) 100%);

    position: relative;

    overflow: hidden;

    padding: 0;

}


/* 
.shastra-icon-box {
  cursor: default;
} */
.shastra-banner-slider {

    position: relative;

    width: 100%;

    overflow: visible;

}


/* Team Section 5-column layout */
.shastra-team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.shastra-team-photo-aspect {
  position: relative;
  width: 100%;
  padding-bottom: 125%; /* Creates a 4:5 aspect ratio, adjust as needed */
  overflow: hidden;
}

.shastra-team-photo-aspect img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.shastra-team-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure the card takes full height of its container */
}

.shastra-team-description {
    display: flex;
    flex-direction: column;
}

.shastra-banner-slider .swiper-wrapper {

    align-items: center;

}


.shastra-banner-slider .swiper-slide {

    visibility: hidden;

    pointer-events: none;

    -webkit-transition: visibility 1.0s step-end;

    -o-transition: visibility 1.0s step-end;

    transition: visibility 1.0s step-end;

}



.shastra-banner-slider .swiper-slide-active {

    visibility: visible !important;

    pointer-events: auto !important;

    -webkit-transition: visibility 1.0s step-start;

    -o-transition: visibility 1.0s step-start;

    transition: visibility 1.0s step-start;

}



.shastra-banner-slider .swiper-slide:first-child {

    visibility: visible;

}



/* Banner Content */

.shastra-banner-content {

    min-height: 100vh;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    padding: 120px 0;

}



/* Banner Headings */

#home-banner h1 {

    color: var(--primary-color);

    font-size: 56px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -1px;

    margin-bottom: 20px;

}



#home-banner h1 .shastra-thin {

    color: rgb(30, 41, 59);

    font-weight: 300;

}



#home-banner p {

    color: rgb(51, 65, 85);

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 30px;

}



/* Decorative Background Glows */
.shastra-banner .shastra-gradient {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.15) 0%, rgba(var(--bg-light-rgb), 0) 70%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.shastra-banner .shastra-gradient::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.08) 0%, rgba(var(--bg-light-rgb), 0) 70%);
    filter: blur(100px);
    pointer-events: none;
}

/* Holographic Glow for Rotating 3D Shapes */
.shastra-banner .shastra-animation {
    opacity: 0.55 !important;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    filter: drop-shadow(0 0 15px rgba(var(--accent-color-rgb), 0.35));
}

.shastra-banner .shastra-position-1 .shastra-pentagon div,
.shastra-banner .shastra-position-2 .shastra-pentagon div,
.shastra-banner .shastra-position-3 .shastra-pentagon div {
    border-top: 1.5px solid var(--accent-color) !important;
    border-color: rgba(var(--accent-color-rgb), 0.6) !important;
}

.shastra-banner .shastra-pentagon:nth-child(even) div {
    border-top: 1.5px solid var(--primary-color) !important;
    border-color: rgba(var(--primary-color-rgb), 0.4) !important;
}

/* Hero Banner Secondary Button */
#home-banner .shastra-button-secondary {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border: 2.5px solid var(--primary-color) !important;
    box-shadow: none !important;
}

#home-banner .shastra-button-secondary:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(var(--primary-color-rgb), 0.2) !important;
}

#home-banner .shastra-button-secondary svg {
    background-color: rgba(var(--primary-color-rgb), 0.1) !important;
}

#home-banner .shastra-button-secondary:hover svg {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

#home-banner .shastra-button-secondary svg path {
    fill: var(--primary-color) !important;
}

#home-banner .shastra-button-secondary:hover svg path {
    fill: #ffffff !important;
}

/* Banner appear animations handled by GSAP */



/* Banner Buttons */

.shastra-banner-buttons {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    gap: 15px;

    -ms-flex-wrap: wrap;

    flex-wrap: wrap;

}







/* Pagination */

.shastra-banner-slider-pagination {

    position: absolute;

    bottom: 40px;

    left: 0;

    right: 0;

    text-align: center;

    z-index: 50;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    gap: 15px;

}



.shastra-banner-slider-pagination .swiper-pagination-bullet {

    width: 14px;

    height: 14px;

    background: rgba(var(--primary-color-rgb), 0.3);

    border-radius: 50%;

    cursor: pointer;

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    border: 2px solid transparent;

    opacity: 1;

    position: relative;

    overflow: hidden;

}



.shastra-banner-slider-pagination .swiper-pagination-bullet:hover {

    background: rgba(var(--primary-color-rgb), 0.5);

    -webkit-transform: scale(1.2);

    -ms-transform: scale(1.2);

    transform: scale(1.2);

}



.shastra-banner-slider-pagination .swiper-pagination-bullet-active {

    background: var(--accent-color) !important;

    width: 50px;

    border-radius: 7px;

    -webkit-box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.5) !important;

    box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.5) !important;

}



.shastra-banner-slider-pagination .swiper-pagination-bullet-active::after {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 0%;

    height: 100%;

    background: rgba(255, 255, 255, 0.4);

    border-radius: 7px;

    -webkit-animation: progressBar 5s linear forwards;

    animation: progressBar 5s linear forwards;

}





@keyframes progressBar {

    0% { width: 0%; }

    100% { width: 100%; }

}

/* Pause the progress bar animation when slider is hovered */
.shastra-banner-slider:hover .swiper-pagination-bullet-active::after {
    -webkit-animation-play-state: paused !important;
    animation-play-state: paused !important;
}



/* ========================================

   About Section - Smooth Transitions

   ======================================== */

#about {
    background: linear-gradient(180deg, rgb(248, 252, 255) 0%, rgb(255, 255, 255) 100%);
    position: relative;
    overflow: hidden;
}

#about h2 {
    font-size: 46px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

#about h2 .heading-light {
    color: rgb(30, 41, 59);
    font-weight: 300;
}

#about .shastra-text-lg {
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================

   What We Do Section - Services Grid

   ======================================== */



#home-services {

    background: linear-gradient(180deg, rgb(246, 251, 255) 0%, var(--bg-light) 100%);

    padding: 90px 0;

}



#home-services h2 {

    color: var(--primary-color);

    font-size: 46px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -0.5px;

    text-align: center;

    margin-bottom: 15px;

}



#home-services h2 .shastra-thin {

    color: rgb(30, 41, 59);

    font-weight: 300;

}



#home-services .shastra-section-desc {

    color: rgb(51, 65, 85);

    font-size: 17px;

    line-height: 1.8;

    text-align: center;

    max-width: 750px;

    margin: 0 auto 60px;

}



/* Service Cards in Row - NO ROTATION */

.shastra-icon-box {

    text-align: center;

    padding: 40px 30px;

    margin-bottom: 30px;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid rgba(var(--primary-color-rgb), 0.12);

    border-radius: 16px;

    position: relative;

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    overflow: hidden;

    cursor: default;

    height: 100%;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);

}



.shastra-icon-box::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);

    -webkit-transform: scaleX(0);

    -ms-transform: scaleX(0);

    transform: scaleX(0);

    -webkit-transform-origin: left;

    -ms-transform-origin: left;

    transform-origin: left;

    -webkit-transition: -webkit-transform 0.5s ease;

    transition: -webkit-transform 0.5s ease;

    -o-transition: transform 0.5s ease;

    transition: transform 0.5s ease;

    transition: transform 0.5s ease, -webkit-transform 0.5s ease;

}



.shastra-icon-box:hover {

    background: rgba(255, 255, 255, 1);

    border-color: rgba(var(--primary-color-rgb), 0.3);

    -webkit-transform: translateY(-8px);

    -ms-transform: translateY(-8px);

    transform: translateY(-8px);

    -webkit-box-shadow: 0 15px 40px rgba(var(--primary-color-rgb), 0.15);

    box-shadow: 0 15px 40px rgba(var(--primary-color-rgb), 0.15);

}



.shastra-icon-box:hover::before {

    -webkit-transform: scaleX(1);

    -ms-transform: scaleX(1);

    transform: scaleX(1);

}



.shastra-icon-frame {

    display: -webkit-inline-box;

    display: -ms-inline-flexbox;

    display: inline-flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    width: 100px;

    height: 100px;

    border-radius: 50%;

    background: rgba(var(--primary-color-rgb), 0.1);

    border: 2px solid rgba(var(--primary-color-rgb), 0.2);

    position: relative;

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    margin-bottom: 25px;

}



.shastra-icon-box:hover .shastra-icon-frame {

    background: rgba(var(--primary-color-rgb), 0.15);

    border-color: rgba(var(--primary-color-rgb), 0.4);

    -webkit-transform: scale(1.1);

    -ms-transform: scale(1.1);

    transform: scale(1.1);

    -webkit-box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.25);

    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.25);

}



.shastra-icon {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}



.shastra-icon svg {

    width: 48px;

    height: 48px;

    stroke: var(--primary-color);

    -webkit-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    transition: all 0.3s ease;

}



.shastra-icon-box:hover .shastra-icon svg {

    -webkit-transform: scale(1.1);

    -ms-transform: scale(1.1);

    transform: scale(1.1);

}



.shastra-icon-box h4 {

    font-size: 20px;

    font-weight: 700;

    color: var(--primary-color);

    line-height: 130%;

    -webkit-transition: color 0.3s ease;

    -o-transition: color 0.3s ease;

    transition: color 0.3s ease;

    margin-bottom: 15px;

}



.shastra-icon-box:hover h4 {

    color: var(--accent-color);

}



.shastra-icon-box p {

    line-height: 165%;

    font-size: 15px;

    color: rgb(51, 65, 85);

    margin: 0;

}



/* ========================================

   Our Process Section - Flow Cards

   ======================================== */



#home-process {

    background: linear-gradient(180deg, var(--bg-light) 0%, rgb(246, 251, 255) 100%);

    padding: 90px 0;

}



#home-process h2 {

    color: var(--primary-color);

    font-size: 46px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -0.5px;

    text-align: center;

    margin-bottom: 15px;

}



#home-process h2 .shastra-thin {

    color: rgb(30, 41, 59);

    font-weight: 300;

}



#home-process .shastra-section-desc {

    color: rgb(51, 65, 85);

    font-size: 17px;

    line-height: 1.8;

    text-align: center;

    max-width: 750px;

    margin: 0 auto 60px;

}



.shastra-flow-container {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-pack: justify;

    -ms-flex-pack: justify;

    justify-content: space-between;

    -webkit-box-align: start;

    -ms-flex-align: start;

    align-items: flex-start;

    gap: 20px;

    position: relative;

}



.shastra-flow-step {

    position: relative;

    -webkit-box-flex: 1;

    -ms-flex: 1 1 0;

    flex: 1 1 0;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    max-width: 220px;

}



/* Flow Card - NO ROTATION, SIMPLE LIFT */

.shastra-flow-card {

    text-align: center;

    padding: 20px 20px;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid rgba(var(--primary-color-rgb), 0.12);

    border-radius: 16px;

    width: 100%;

    min-height: 200px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: start;

    -ms-flex-pack: start;

    justify-content: flex-start;

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    position: relative;

    overflow: hidden;

}



.shastra-flow-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);

    -webkit-transform: scaleX(0);

    -ms-transform: scaleX(0);

    transform: scaleX(0);

    -webkit-transform-origin: left;

    -ms-transform-origin: left;

    transform-origin: left;

    -webkit-transition: -webkit-transform 0.5s ease;

    transition: -webkit-transform 0.5s ease;

    -o-transition: transform 0.5s ease;

    transition: transform 0.5s ease;

    transition: transform 0.5s ease, -webkit-transform 0.5s ease;

}



.shastra-flow-card:hover {

    background: rgba(255, 255, 255, 1);

    border-color: rgba(var(--primary-color-rgb), 0.3);

    -webkit-transform: translateY(-10px);

    -ms-transform: translateY(-10px);

    transform: translateY(-10px);

    -webkit-box-shadow: 0 15px 40px rgba(var(--primary-color-rgb), 0.18);

    box-shadow: 0 15px 40px rgba(var(--primary-color-rgb), 0.18);

}



.shastra-flow-card:hover::before {

    -webkit-transform: scaleX(1);

    -ms-transform: scaleX(1);

    transform: scaleX(1);

}



.shastra-flow-icon-wrapper {

    position: relative;

    margin-bottom: 25px;

}



.shastra-flow-icon {

    width: 100px;

    height: 100px;

    background: rgba(var(--primary-color-rgb), 0.1);

    border: 2px solid rgba(var(--primary-color-rgb), 0.25);

    border-radius: 50%;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    margin: 0 auto;

}



.shastra-flow-card:hover .shastra-flow-icon {

    background: rgba(var(--primary-color-rgb), 0.15);

    border-color: rgba(var(--primary-color-rgb), 0.4);

    -webkit-transform: scale(1.1);

    -ms-transform: scale(1.1);

    transform: scale(1.1);

    -webkit-box-shadow: 0 0 25px rgba(var(--primary-color-rgb), 0.3);

    box-shadow: 0 0 25px rgba(var(--primary-color-rgb), 0.3);

}



.shastra-flow-icon svg {

    stroke: var(--primary-color);

    -webkit-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    transition: all 0.3s ease;

}



.shastra-flow-card:hover .shastra-flow-icon svg {

    -webkit-transform: scale(1.05);

    -ms-transform: scale(1.05);

    transform: scale(1.05);

}



.shastra-flow-number {

    position: absolute;

    top: -8px;

    right: -8px;

    width: 38px;

    height: 38px;

    background: var(--primary-color);

    border-radius: 50%;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    font-size: 14px;

    font-weight: 700;

    color: #fff;

    -webkit-box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.4);

    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.4);

    -webkit-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    transition: all 0.3s ease;

    border: 2px solid rgba(255, 255, 255, 0.9);

}



.shastra-flow-card:hover .shastra-flow-number {

    -webkit-transform: scale(1.15);

    -ms-transform: scale(1.15);

    transform: scale(1.15);

    -webkit-box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.5);

    box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.5);

}



.shastra-flow-title {

    font-size: 20px;

    font-weight: 700;

    color: var(--primary-color);

    margin-bottom: 15px;

    -webkit-transition: color 0.3s ease;

    -o-transition: color 0.3s ease;

    transition: color 0.3s ease;

    line-height: 130%;

}



.shastra-flow-card:hover .shastra-flow-title {

    color: var(--accent-color);

}



.shastra-flow-desc {

    font-size: 14px;

    line-height: 165%;

    color: rgb(51, 65, 85);

    margin: 0;

}



/* ========================================

   Why Choose Us Section

   ======================================== */



#home-why {

    background: linear-gradient(180deg, rgb(246, 251, 255) 0%, var(--bg-light) 100%);

    padding: 90px 0;

}



#home-why h2 {

    color: var(--primary-color);

    font-size: 46px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -0.5px;

    text-align: center;

    margin-bottom: 15px;

}



#home-why h2 .shastra-thin {

    color: rgb(30, 41, 59);

    font-weight: 300;

}



#home-why .shastra-section-desc {

    color: rgb(51, 65, 85);

    font-size: 17px;

    line-height: 1.8;

    text-align: center;

    max-width: 750px;

    margin: 0 auto 60px;

}



.shastra-why-grid {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

    gap: 25px;

}



.shastra-why-item {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: start;

    -ms-flex-align: start;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    background: rgba(255, 255, 255, 0.85);

    border: 1px solid rgba(var(--primary-color-rgb), 0.08);

    border-radius: 20px;

    -webkit-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);

    -o-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);

    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);

    position: relative;

    overflow: hidden;

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.04);

}



.shastra-why-item::before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    bottom: 0;

    width: 4px;

    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));

    -webkit-transform: scaleY(0);

    -ms-transform: scaleY(0);

    transform: scaleY(0);

    -webkit-transform-origin: top;

    -ms-transform-origin: top;

    transform-origin: top;

    -webkit-transition: -webkit-transform 0.4s ease;

    transition: -webkit-transform 0.4s ease;

    -o-transition: transform 0.4s ease;

    transition: transform 0.4s ease;

    transition: transform 0.4s ease, -webkit-transform 0.4s ease;

}



.shastra-why-item:hover {

    background: rgba(255, 255, 255, 0.95);

    border-color: rgba(var(--primary-color-rgb), 0.2);

    -webkit-transform: translateX(8px);

    -ms-transform: translateX(8px);

    transform: translateX(8px);

    -webkit-box-shadow: 0 15px 35px rgba(var(--primary-color-rgb), 0.15);

    box-shadow: 0 15px 35px rgba(var(--primary-color-rgb), 0.15);

}



.shastra-why-item:hover::before {

    -webkit-transform: scaleY(1);

    -ms-transform: scaleY(1);

    transform: scaleY(1);

}



.shastra-why-icon {

    -webkit-box-flex: 0;

    -ms-flex: 0 0 60px;

    flex: 0 0 60px;

    width: 60px;

    height: 60px;

    background: rgba(var(--primary-color-rgb), 0.1);

    border: 2px solid rgba(var(--primary-color-rgb), 0.25);

    border-radius: 12px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    font-size: 28px;

    color: var(--primary-color);

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

}



.shastra-why-item:hover .shastra-why-icon {

    background: rgba(var(--primary-color-rgb), 0.15);

    border-color: rgba(var(--primary-color-rgb), 0.4);

    -webkit-transform: scale(1.08);

    -ms-transform: scale(1.08);

    transform: scale(1.08);

    -webkit-box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.25);

    box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.25);

}



.shastra-why-content {

    -webkit-box-flex: 1;

    -ms-flex: 1;

    flex: 1;

}



.shastra-why-content h5 {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 8px;

    line-height: 130%;

    -webkit-transition: color 0.3s ease;

    -o-transition: color 0.3s ease;

    transition: color 0.3s ease;

    color: var(--primary-color);

}



.shastra-why-item:hover .shastra-why-content h5 {

    color: var(--accent-color);

}



.shastra-why-content p {

    font-size: 15px;

    line-height: 165%;

    margin: 0;

    color: rgb(51, 65, 85);

}



@media (max-width: 992px) {

    .shastra-why-item {

        align-items: center;

        text-align: center;

    }

    

}



/* ========================================

   CTA Section

   ======================================== */



.shastra-cta-buttons {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    gap: 20px;

    -ms-flex-wrap: wrap;

    flex-wrap: wrap;

}



.shastra-cta-buttons .shastra-button {

    margin: 0;

}



/* ========================================

   RESPONSIVE BREAKPOINTS

   ======================================== */



@media (max-width: 1200px) {

    .shastra-p-120-90 {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .shastra-p-120-60 {
        padding-top: 80px;
        padding-bottom: 60px;
    }

}

@media (max-width: 1024px) {

    .shastra-banner {
        min-height: 70vh;
    }

    .shastra-banner .container {
        min-height: 70vh;
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .shastra-banner-content {
        min-height: auto;
        padding: 40px 0;
    }

    #home-banner h1 {
        font-size: 46px;
    }

    .shastra-animation-frame {
        height: 100%;
    }

}

@media (max-width: 992px) {

    .shastra-banner {
        height: auto !important;
        min-height: 70vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .shastra-banner .mi-invert-fix {
        width: 100%;
        height: auto;
    }

    .shastra-banner .container {
        height: auto;
        min-height: 70vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .shastra-banner-content {
        min-height: auto;
        padding: 40px 0;
    }

    #home-banner h1 {

        font-size: 46px;

    }



    #home-services h2,

    #home-process h2,

    #home-why h2 {

        font-size: 40px;

    }



    .shastra-banner-slider-pagination {

        bottom: 35px;

        gap: 12px;

    }



    .shastra-icon-box {

        padding: 35px 25px;

    }

}



@media (max-width: 768px) {

    .shastra-banner .shastra-animation {
        -webkit-transform: scale(0.65) !important;
        -ms-transform: scale(0.65) !important;
        transform: scale(0.65) !important;
        opacity: 0.25 !important;
    }

    .shastra-banner .shastra-position-1 {
        top: 30px;
        right: -30px;
    }

    .shastra-banner-content {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    #home-banner .shastra-button {
        height: 60px;
        font-size: 11px;
        padding: 0 15px 0 35px;
    }

    #home-banner .shastra-button svg {
        width: 35px;
        height: 35px;
        padding: 8px;
        margin-left: 20px;
    }

    #home-banner h1 {

        font-size: 34px;

    }



    #home-banner p {

        font-size: 15px;

        line-height: 1.6;

    }



    #home-services h2,

    #home-process h2,

    #home-why h2 {

        font-size: 32px;

    }



    #home-services,

    #home-process,

    #home-why {

        padding: 80px 0 60px;

    }



    .shastra-banner-slider-pagination {

        bottom: 35px;

        gap: 10px;

    }



    .shastra-icon-box {

        padding: 30px 20px;

        margin-bottom: 40px;

    }



    .shastra-flow-container {

        -webkit-box-orient: vertical;

        -webkit-box-direction: normal;

        -ms-flex-direction: column;

        flex-direction: column;

        gap: 35px;

        -webkit-box-align: center;

        -ms-flex-align: center;

        align-items: center;

    }



    .shastra-flow-step {

        max-width: 100%;

        width: 100%;

    }



    .shastra-flow-card {

        max-width: 500px;

        margin: 0 auto;

        min-height: auto;

        padding: 40px 30px;

    }



    .shastra-why-grid {

        gap: 20px;

        max-width: 600px;

        margin: 0 auto;

    }



    .shastra-why-item {

        padding: 25px 20px;

    }

}



@media (max-width: 576px) {

    .shastra-banner-content {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .shastra-banner-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .shastra-banner-buttons .shastra-button {
        width: 100%;
        text-align: center;
    }

    #home-banner h1 {

        font-size: 26px;

    }



    #home-services h2,

    #home-process h2,

    #home-why h2 {

        font-size: 24px;

    }



    #home-services,

    #home-process,

    #home-why {

        padding: 70px 0 50px;

    }



    .shastra-banner-slider-pagination {

        bottom: 60px;

    }



    .shastra-icon-box {

        padding: 25px 15px;

    }



    .shastra-flow-card {

        padding: 30px 20px;

    }



    .shastra-why-item {

        padding: 20px 15px;

        -webkit-box-orient: vertical;

        -webkit-box-direction: normal;

        -ms-flex-direction: column;

        flex-direction: column;

    }



    .shastra-cta-buttons {

        -webkit-box-orient: vertical;

        -webkit-box-direction: normal;

        -ms-flex-direction: column;

        flex-direction: column;

        gap: 15px;

    }



    .shastra-cta-buttons .shastra-button {

        width: 100%;

    }

}







/* ========== 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);

}





/* 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);

}



/* Premium Mini CTA Responsive */

@media (max-width: 768px) {

     .shastra-mini-cta-premium {

        flex-direction: column;

        padding: 28px 24px;

        text-align: center;

    }



    .shastra-cta-icon {

        width: 50px;

        height: 50px;

        font-size: 22px;

    }

}









/* ========================================

   Solutions Section - Grid Cards

   ======================================== */



.shastra-solutions-grid {
    position: relative;
    z-index: 2;
}

/* Redesigned Background Glows */
.shastra-solutions-bg-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 192, 207, 0.08) 0%, rgba(46, 192, 207, 0) 70%);
    top: -200px;
    left: -150px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.shastra-solutions-bg-glow-2 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(18, 17, 68, 0.04) 0%, rgba(18, 17, 68, 0) 70%);
    bottom: -250px;
    right: -150px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

#solutions.shastra-soft-bg {
    position: relative;
    background: radial-gradient(130% 100% at 50% 0%, rgba(46, 192, 207, 0.06) 0%, rgba(18, 17, 68, 0.02) 50%, rgba(255, 255, 255, 1) 100%), #f8fcfe;
    overflow: hidden;
}

#solutions .shastra-service-tag {
    background: rgba(46, 192, 207, 0.08);
    color: var(--accent-dark);
    border: 1px solid rgba(46, 192, 207, 0.18);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(46, 192, 207, 0.05);
    transition: all 0.3s ease;
}

#solutions .shastra-service-tag:hover {
    background: rgba(46, 192, 207, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(46, 192, 207, 0.1);
}

.shastra-solution-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(18, 17, 68, 0.06);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    height: 100%;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 30px rgba(18, 17, 68, 0.03);
}

.shastra-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.shastra-solution-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(46, 192, 207, 0.35);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(46, 192, 207, 0.12), 0 0 0 1px rgba(46, 192, 207, 0.05);
}

.shastra-solution-card:hover::before {
    transform: scaleX(1);
}

/* Solution Icon */
.shastra-solution-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.shastra-solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(46, 192, 207, 0.08) 0%, rgba(18, 17, 68, 0.02) 100%);
    border: 1px solid rgba(46, 192, 207, 0.18);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 32px;
    color: var(--primary-color);
}

.shastra-solution-icon i {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.shastra-solution-card:hover .shastra-solution-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-color: transparent;
    transform: rotate(8deg) scale(1.08);
    box-shadow: 0 12px 25px rgba(46, 192, 207, 0.35);
    color: #ffffff;
}

.shastra-solution-card:hover .shastra-solution-icon i {
    transform: scale(1.05);
}

/* Card Title */
.shastra-solution-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 140%;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.shastra-solution-card:hover h4 {
    color: var(--accent-color);
}

/* Card Description */
.shastra-solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #5f6d7d;
    margin: 0;
}

/* Dark Soft Text Color Override */
.shastra-dark-soft {
    color: #5f6d7d !important;
}

/* Card Interactive Footer Link */
.shastra-solution-card-footer {
    margin-top: auto;
    padding-top: 25px;
    width: 100%;
    text-align: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.shastra-learn-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.shastra-learn-more i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.shastra-solution-card:hover .shastra-solution-card-footer {
    opacity: 1;
}

.shastra-solution-card:hover .shastra-learn-more {
    color: var(--accent-color);
}

.shastra-solution-card:hover .shastra-learn-more i {
    transform: translateX(4px);
}

/* Responsive Overrides */
@media (max-width: 1199px) {
    .shastra-solution-card {
        padding: 35px 20px;
        min-height: 330px;
    }
    .shastra-solution-icon {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
    .shastra-solution-card h4 {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .shastra-solution-card {
        padding: 35px 25px;
        min-height: 290px;
    }
    #solutions h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .shastra-solution-card {
        padding: 40px 30px;
        min-height: auto;
    }
    #solutions h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .shastra-solution-card {
        padding: 30px 20px;
    }
    .shastra-solution-card h4 {
        font-size: 17px;
    }
    .shastra-solution-card p {
        font-size: 13.5px;
    }
}





 

/* Main Heading Style */

h2, .shastra-dark-bg h2 {

    color: var(--primary-color);

}

/* Main Heading Style */

h1, .shastra-dark-bg h1 {

    color: var(--primary-color);

}



h2 .shastra-thin, .shastra-dark-bg h2 .shastra-thin {

    color: rgb(15, 23, 42);

}

h1 .shastra-thin, .shastra-dark-bg h1 .shastra-thin {

    color: rgb(15, 23, 42);

}



/* Paragraph Style */

p, .shastra-dark-bg p {

    color: rgb(50, 50, 50);



}



p .shastra-thin, .shastra-dark-bg p .shastra-thin {

    color: var(--primary-color);

 

}



/* Philosophy Heading */

h4, .shastra-dark-bg h4 {

    color: rgb(15, 23, 42);

}



h4 .shastra-thin, .shastra-dark-bg h4 .shastra-thin {

    color: var(--primary-color);

}









#shastra-cta-final {

    position: relative;

    overflow: hidden;

}

#shastra-cta-final .container {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

@media (max-width: 768px) {
    #shastra-cta-final .container {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
}

/* 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;

}

/* Glassmorphism content card - formatting removed */

.shastra-cta-content-card {

    background: transparent;

    backdrop-filter: none;

    -webkit-backdrop-filter: none;

    border: none;

    border-radius: 0;

    padding: 0;

    box-shadow: none;

    transition: none;

    max-width: 900px;

    margin: 0 auto;

}



.shastra-cta-content-card:hover {

    border-color: transparent;

    box-shadow: none;

    transform: none;

}



/* Glowing center divider */

.shastra-cta-divider {

    width: 100px;

    height: 2px;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);

    margin: 25px auto;

    position: relative;

}



.shastra-cta-divider::after {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 6px;

    height: 6px;

    background: #ffffff;

    border-radius: 50%;

    box-shadow: 0 0 12px #ffffff, 0 0 4px #ffffff;

}



@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 with Text Gradient */

.shastra-cta-heading {

    color: #ffffff;

    font-size: 46px;

    font-weight: 800;

    line-height: 1.25;

    margin-bottom: 20px;

    background: linear-gradient(135deg, #ffffff 40%, #a5caff 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    display: inline-block;

}



.shastra-cta-heading .shastra-thin {

    font-weight: 300;

}







/* 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;

}



.shastra-cta-text .shastra-accent {

    color: rgb(255, 255, 255);

    font-weight: 700;

}







/* 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: 2px solid rgb(255, 255, 255);

    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);

}



.shastra-cta-primary:hover {

    background-color: transparent;

    color: rgb(255, 255, 255);

    border-color: rgb(255, 255, 255);

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);

}



.shastra-cta-primary:hover i {

    transform: translateX(3px);

}



/* Secondary Button */

.shastra-cta-secondary {

    background-color: transparent;

    color: rgb(255, 255, 255);

    border: 2px solid rgba(255, 255, 255, 0.4);

}



.shastra-cta-secondary:hover {

    background-color: rgba(255, 255, 255, 0.08);

    color: rgb(255, 255, 255);

    border-color: rgb(255, 255, 255);

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);

}



.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;

    }

}




/* Remove vertical gap above team row */
.shastra-team-list {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.shastra-team-list .row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.shastra-p-90-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
/* Remove gap between team heading and team row */
.shastra-team-heading {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.shastra-team-list {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.shastra-team-row {
  margin-top: 0 !important;
  padding-top: 0 !important;
  row-gap: 8px !important;
}
/* Reduce gap between team heading and team row */
.shastra-team-list {
  margin-top: 0;
}
.shastra-team-row {
  margin-top: 0 !important;
}
.shastra-team-list h2 {
  margin-bottom: 4px !important;
}

/* ========================================
   About Section - Redesigned (Home Page)
   Smooth transitions & ambient effects
   ======================================== */

#about {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, rgb(248, 250, 255) 0%, rgb(255, 255, 255) 100%);
}

.about-ambient-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  background: radial-gradient(ellipse at 30% 40%, rgba(var(--primary-color-rgb), 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(var(--accent-color-rgb), 0.03) 0%, transparent 50%);
  pointer-events: none;
  animation: aboutGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes aboutGlowPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* Header accent line */
.about-accent-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 3px;
  margin: 16px auto 24px auto;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-header-row {
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Enhanced Cards */
.about-enhanced-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  -webkit-transform: translateY(0) scale(1) !important;
  -ms-transform: translateY(0) scale(1) !important;
  transform: translateY(0) scale(1) !important;
  border: 1px solid rgba(var(--primary-color-rgb), 0.12) !important;
}

.about-enhanced-card::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.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-enhanced-card:hover::before {
  transform: scaleX(1);
}

.about-enhanced-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  border-color: rgba(var(--primary-color-rgb), 0.25) !important;
  box-shadow: 0 24px 60px rgba(var(--primary-color-rgb), 0.18), 0 8px 20px rgba(var(--primary-color-rgb), 0.08) !important;
}

.about-enhanced-card .shastra-icon-frame {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.about-enhanced-card:hover .shastra-icon-frame {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
  border-color: var(--primary-color) !important;
  transform: scale(1.12) rotate(6deg) !important;
  box-shadow: 0 12px 32px rgba(var(--primary-color-rgb), 0.3) !important;
}

.about-enhanced-card:hover .shastra-icon svg {
  stroke: rgb(255, 255, 255) !important;
  transform: scale(1.1) !important;
}

.about-enhanced-card h4 {
  transition: color 0.4s ease !important;
}

.about-enhanced-card:hover h4 {
  color: var(--primary-color) !important;
}

/* Card badge */
.about-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(var(--primary-color-rgb), 0.3);
  background: rgba(var(--primary-color-rgb), 0.06);
  padding: 3px 10px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Outfit", sans-serif;
}

.about-enhanced-card:hover .about-card-badge {
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.25);
}

/* Card shimmer overlay */
.about-card-shimmer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.about-enhanced-card:hover .about-card-shimmer {
  opacity: 1;
}

/* Cards flow row stagger */
.about-cards-flow {
  transition: opacity 0.6s ease;
}

/* ========================================
   Premium CTA Card (Replaces mini-cta)
   ======================================== */

.about-cta-premium {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  padding: 3px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(var(--primary-color-rgb), 0.15);
}

.about-cta-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(var(--primary-color-rgb), 0.25);
}

.about-cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-cta-premium:hover .about-cta-glow {
  opacity: 1;
}

.about-cta-inner {
  position: relative;
  background: rgb(255, 255, 255);
  border-radius: 18px;
  padding: 36px 42px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: all 0.4s ease;
}

.about-cta-premium:hover .about-cta-inner {
  background: rgba(255, 255, 255, 0.96);
}

.about-cta-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgb(255, 255, 255);
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.25);
}

.about-cta-premium:hover .about-cta-icon-wrap {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.35);
}

.about-cta-text-wrap {
  flex: 1;
}

.about-cta-label {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.about-cta-premium:hover .about-cta-label {
  color: var(--accent-color);
}

.about-cta-link {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-cta-link:hover {
  color: var(--accent-color);
  gap: 14px;
}

.about-cta-link i {
  font-size: 14px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-cta-link:hover i {
  transform: translateX(6px);
}

/* CTA row stagger */
.about-cta-row {
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
  .about-cta-inner {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
    gap: 20px;
  }

  .about-cta-icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .about-cta-label {
    font-size: 16px;
  }

  .about-card-badge {
    top: 12px;
    right: 12px;
    font-size: 10px;
    padding: 2px 8px;
  }
}

@media (max-width: 480px) {
  .about-cta-inner {
    padding: 22px 18px;
    gap: 16px;
  }

  .about-cta-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .about-cta-label {
    font-size: 15px;
  }

  .about-cta-link {
    font-size: 14px;
  }
}

/* ========================================
   Process Section - Redesigned (Home Page)
   Animated icons, flowing connector, smooth transitions
   ======================================== */

#process-section {
  position: relative;
  overflow: hidden;
}

.process-glow-bg {
  position: absolute;
  top: -30%;
  left: -5%;
  width: 110%;
  height: 160%;
  background: radial-gradient(ellipse at 50% 30%, rgba(var(--primary-color-rgb), 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(var(--accent-color-rgb), 0.05) 0%, transparent 50%);
  pointer-events: none;
  animation: processGlow 10s ease-in-out infinite alternate;
}

@keyframes processGlow {
  0% { opacity: 0.5; transform: scale(1) translateX(0); }
  100% { opacity: 1; transform: scale(1.08) translateX(2%); }
}

/* Header accent line */
.process-accent-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), rgb(75, 150, 255));
  border-radius: 3px;
  margin: 16px auto 24px auto;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shastra-mb-50 {
  margin-bottom: 50px;
}

/* Process Steps Row */
.process-steps-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 80px;
  position: relative;
  padding: 0 10px;
}

.process-step-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Step Card */
.process-step-card {
  text-align: center;
  padding: 28px 18px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--primary-color-rgb), 0.12);
  border-radius: 18px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.process-step-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(var(--primary-color-rgb), 0.25);
  box-shadow: 0 20px 50px rgba(var(--primary-color-rgb), 0.2), 0 8px 20px rgba(var(--primary-color-rgb), 0.08);
}

/* Highlight Last Card */
.process-step-card-highlight {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(var(--bg-light-rgb), 0.95));
  border-color: rgba(var(--primary-color-rgb), 0.2);
}

/* Icon Wrapper */
.process-icon-wrap {
  position: relative;
  margin-bottom: 18px;
}

/* Icon Circle - Animated */
.process-icon-circle {
  width: 88px;
  height: 88px;
  background: rgba(var(--primary-color-rgb), 0.08);
  border: 2px solid rgba(var(--primary-color-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: 0 auto;
  position: relative;
  animation: processIconIdle 4s ease-in-out infinite;
}

.process-step-card:hover .process-icon-circle {
  animation: none;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-color: var(--primary-color);
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 12px 32px rgba(var(--primary-color-rgb), 0.3);
}

@keyframes processIconIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.process-step-col:nth-child(2) .process-icon-circle {
  animation-delay: 0.5s;
}

.process-step-col:nth-child(3) .process-icon-circle {
  animation-delay: 1s;
}

.process-step-col:nth-child(4) .process-icon-circle {
  animation-delay: 1.5s;
}

.process-step-col:nth-child(5) .process-icon-circle {
  animation-delay: 2s;
}

/* SVG Icon */
.process-icon-circle svg {
  stroke: var(--primary-color);
  transition: all 0.4s ease;
  width: 42px;
  height: 42px;
}

.process-step-card:hover .process-icon-circle svg {
  stroke: rgb(255, 255, 255);
  transform: scale(1.1) rotate(-8deg);
}

/* SVG Icon Pulse Animation */
.process-icon-circle svg circle,
.process-icon-circle svg path,
.process-icon-circle svg polyline,
.process-icon-circle svg line {
  animation: iconStrokePulse 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes iconStrokePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Step Badge */
.process-step-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.35);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(255, 255, 255, 0.9);
  font-family: "Outfit", sans-serif;
}

.process-step-card:hover .process-step-badge {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.5);
}

/* Step Title */
.process-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  transition: color 0.4s ease;
  line-height: 130%;
}

.process-step-card:hover .process-step-title {
  color: var(--accent-color);
}

/* Step Description */
.process-step-desc {
  font-size: 13px;
  line-height: 160%;
  color: rgb(51, 65, 85);
  margin: 0;
  transition: color 0.4s ease;
}

.process-step-card:hover .process-step-desc {
  color: rgb(30, 41, 59);
}

/* Connector Line */
.process-connector-line {
  display: block;
  position: absolute;
  top: 72px;
  left: calc(50% + 54px);
  width: calc(100% - 108px);
  height: 2px;
  background: rgba(var(--primary-color-rgb), 0.15);
  z-index: 5;
  overflow: hidden;
}

.process-connector-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  animation: processFlowLine 3s infinite linear;
}

@keyframes processFlowLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ========================================
   Section Background Images
   ======================================== */

#process-section {
  background: linear-gradient(135deg, rgba(var(--bg-light-rgb), 0.6) 0%, rgba(245, 249, 255, 0.85) 100%), url('../img/process-bg.png') center / cover no-repeat;
}

#solutions {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.6) 0%, rgba(255, 255, 255, 0.85) 100%), url('../img/solutions-bg.png') center / cover no-repeat;
}

#why-shastra {
  background: linear-gradient(135deg, rgba(var(--bg-light-rgb), 0.6) 0%, rgba(245, 249, 255, 0.85) 100%), url('../img/why-shastra-bg.png') center / cover no-repeat;
}

#team {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.85) 100%), url('../img/team-bg.png') center / cover no-repeat;
}


/* CTA Row Transition */
.process-cta-row {
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================
   Process Section - Responsive
   ======================================== */

@media (max-width: 992px) {
  .process-steps-row {
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
  }

  .process-step-col {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

  .process-step-card {
    padding: 24px 16px 18px;
  }

  .process-icon-circle {
    width: 78px;
    height: 78px;
  }

  .process-icon-circle svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  .process-steps-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .process-step-col {
    flex: 0 0 100%;
    max-width: 400px;
  }

  .process-step-card {
    padding: 24px 20px 20px;
  }

  .process-step-title {
    font-size: 16px;
  }

  .process-step-desc {
    font-size: 12px;
  }

  .process-step-badge {
    width: 30px;
    height: 30px;
    font-size: 11px;
    top: -6px;
    right: -6px;
  }

  .process-connector-line {
    display: none;
  }
}

/* ==========================================================================
   Home Hero Background floating & glowing particles animations
   ========================================================================== */

#home-banner .shastra-lines-place {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

#home-banner .shastra-lines-place .shastra-lines {
    width: 100%;
    height: 100%;
}

.shastra-glow-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shastra-glow-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    mix-blend-mode: multiply;
}

.shastra-glow-particle.particle-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(46, 192, 207, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    top: 10%;
    left: 10%;
    animation: driftSlow 28s infinite alternate ease-in-out;
}

.shastra-glow-particle.particle-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(18, 17, 68, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: 5%;
    right: 10%;
    animation: driftMedium 38s infinite alternate ease-in-out;
}

.shastra-glow-particle.particle-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(46, 192, 207, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: 25%;
    left: 45%;
    animation: driftFast 22s infinite alternate ease-in-out;
}

@keyframes driftSlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -60px) scale(1.15); }
    100% { transform: translate(-40px, 70px) scale(0.9); }
}

@keyframes driftMedium {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-70px, 80px) scale(1.2); }
    100% { transform: translate(60px, -50px) scale(0.95); }
}

@keyframes driftFast {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(0.85); }
    100% { transform: translate(-60px, -60px) scale(1.15); }
}

/* Floating animation on margins to prevent GSAP transform conflict */
.shastra-banner .shastra-position-1 {
    animation: floatMargin1 12s ease-in-out infinite !important;
}

.shastra-banner .shastra-position-2 {
    animation: floatMargin2 16s ease-in-out infinite !important;
}

.shastra-banner .shastra-position-3 {
    animation: floatMargin3 14s ease-in-out infinite !important;
}

@keyframes floatMargin1 {
    0%, 100% { margin-top: 0px; }
    50% { margin-top: -30px; }
}

@keyframes floatMargin2 {
    0%, 100% { margin-top: 0px; }
    50% { margin-top: 25px; }
}

@keyframes floatMargin3 {
    0%, 100% { margin-top: 0px; }
    50% { margin-top: -20px; }
}

