body {
    font-family: 'Lato', sans-serif !important;
}

html,
body {
    overflow-x: hidden !important;
}

.top-bar {
    background: linear-gradient(90deg, #0056b3, #007bff, #339cff);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.blink {
    animation: blinkAnim 3s infinite;
}

@keyframes blinkAnim {
    0%,
    50%,
    100% {
        opacity: 1;
        text-shadow: 0 0 20px #ffee00;
    }

    20%,
    80% {
        opacity: 0.5;
        text-shadow: 0 0 20px #ff8800;
    }
}

.navbar {
    position: absolute;
    top: 31px;
    z-index: 999;
    width: 98%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.329);
    background: linear-gradient(45deg, white, #51abff70, rgba(255, 255, 255, 0.842), #339cff70);
    backdrop-filter: blur(10px);
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 17px;
    position: relative;
    color: #3282d8;
}

.nav-link:hover,
.active {
    color: #014792 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: #007bff;
    left: 0;
    bottom: -2px;
    transition: all 0.3s ease;
    transform-origin: center;
    transform: scaleX(0);
    width: 100%;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.box {
    width: clamp(70px, 9vw, 75px);
    height: 100px;
    background: linear-gradient(45deg, yellow, rgb(255, 81, 0));
    position: absolute;
    right: clamp(35px, 9vw, 100px);
    top: -20px;
    box-shadow: 15px 0 10px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    cursor: pointer;
}

.box2 {
    width: 30px;
    height: 20px;
    background-color: #4c0202;
    position: absolute;
    top: 0px;
    right: -29px;
    z-index: -1;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.menu {
    position: absolute;
    left: 35%;
    top: 50%;
}

.box:hover .a {
    width: 30px;
}

.box:hover .b {
    width: 10px;
}

.box:hover .c {
    width: 20px;
}

.menu p {
    height: 2px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 0;
    transition: all .3s ease;
}

.a {
    width: 20px;
    top: -10px;
}

.b {
    width: 30px;
    top: 0px;
}

.c {
    width: 10px;
    top: 10px;
}

.slider {
    position: fixed;
    top: 0;
    right: 0;
    padding: 15px !important;
    width: clamp(250px, 40vw, 400px);
    height: auto;
    padding: 10px;
    background-color: rgba(179, 176, 176, 0.322);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.329);
    border-radius: 5px;
    z-index: 9999;
    color: white;
    transition: transform 0.5s ease;
    transform: translateX(100%);
}

.slider.active {
    transform: translateX(0);
}

.slider .close {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
    color: #000;
}

.slider .close:hover {
    font-weight: bolder;
}

.desktop-nav {
    margin-top: 50px;
}

.desktop-nav a {
    background-color: linear-gradient(45deg, yellow, rgb(255, 81, 0));
}

.mobile-nav {
    display: none;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav li a {
    color: rgb(33, 37, 41);
    text-decoration: none;
}

@media (max-width: 992px) {
    .navbar-nav {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .slider p,
    .slider a {
        font-size: clamp(15px, 4vw, 18px);
    }
  
    .contact-links{
        padding-left: 30px;
    }
}

@media (max-width: 537px) {
    .navbar {
        top: 50px;
        padding: 10px !important;
    }
}


.carousel-item {
    position: relative;
}

.carousel-item img {
    height: 80vh;
    object-fit: cover;
    object-position: center 60%;
    filter: brightness(0.8);
}

.carousel-item::after,
.banner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, white);
    z-index: 2;
}

.carousel-caption {
    bottom: 10%;
}

.carousel-caption h2 {
    font-size: clamp(28px, 5vw, 52px);
}

.carousel-caption p {
    font-size: clamp(16px, 2.5vw, 24px);
}

.carousel-caption h2,
.carousel-caption p {
    color: #faf9f6;
    will-change: filter, opacity, text-shadow, transform;
    animation: fadeIn 1.6s ease-out forwards,
             glowPulse 2s ease-in-out infinite;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow:
            0 0 22px rgba(255, 215, 100, 1),  
            0 0 38px rgba(255, 165, 60, 0.9), 
            0 0 55px rgba(255, 120, 20, 0.7); 
    }
    
    50% {
        text-shadow:
            0 0 14px rgba(255, 200, 80, 0.7),     
            0 0 28px rgba(255, 140, 40, 0.6),    
            0 0 40px rgba(255, 100, 15, 0.5);     
    }
}

.gradient-heading {
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 900 !important;   
    color: #007bff;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.35);
}

.line {
    width: 100px;
    height: 7px;
    border-radius: 10px;
    background-color: #FF7200;
    margin: 30px auto;
}

.path-card {
    max-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.path-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.1);
}

.path-image {
    object-fit: fill;
}

.path-title {
    font-weight: 700;
    font-size: clamp(21px, 2.5vw + 12px, 28px);
    color: #333;
}

.path-description {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    margin: 1rem 0;
}

.divider{
    border-top: 2px solid rgb(209 213 219);
    padding-top: 20px;
    margin-top: 7px !important;
}

.form-control {
    border: 1px solid rgba(128, 128, 128, 0.363);
}

.pandit img {
    animation: 2s linear 0s infinite cont;
    transform-origin: bottom center;
}

@keyframes cont {
    0% {
        rotate: -4deg;
    }

    50% {
        rotate: 2deg;
    }

    100% {
        rotate: -4deg;
    }
}

.about-us-image{
    height: 440px;
    width: 96%;
}

@media screen and (max-width: 991px) {
    .pandit {
        display: none;
    }
  
    .about-us-image{
        height: auto;
    }
}

.row .col-md-6 p {
    line-height: 1.8;
}

/* Loader */

#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: white;
    z-index: 9999;
}

.flame {
    transform-origin: 50% 50%;
    animation: wobble 3s infinite linear, flicker 1.5s infinite alternate;
}

.flame.one {
    animation-delay: 0.5s;
}

.flame.two {
    animation-delay: 1s;
}

.flame.three {
    animation-delay: 1.5s;
}

.flame.four {
    animation-delay: 2s;
}

/* Sparks */

.spark {
    transform-origin: center;
    animation: sparkRise 1s infinite linear;
}

.spark:nth-child(6) {
    animation-delay: 0s;
}

.spark:nth-child(7) {
    animation-delay: 0.3s;
}

.spark:nth-child(8) {
    animation-delay: 0.6s;
}

/* Flame wobble */

@keyframes wobble {
    0%,
    100% {
        transform: scale(1, 1) rotate(0deg);
    }

    25% {
        transform: scale(1.05, 1.2) rotate(-2deg);
    }

    50% {
        transform: scale(1, 1.1) rotate(2deg);
    }

    75% {
        transform: scale(1.1, 1.15) rotate(-1deg);
    }
}

/* Flame flicker (up/down, small movement without disappearing) */

@keyframes flicker {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-5px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.85;
    }
}

/* Sparks rising */

@keyframes sparkRise {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(0, -10px) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(0, -20px) scale(2);
        opacity: 0;
    }
}


/*Mask-Button*/

.button-container-1 {
    position: relative;
    width: 100px;
    height: 50px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.384);
    font-weight: bold;
    font-size: 13px;
    transition: 0.5s;
    border-radius: 8px;
}

.button-container-1 button {
    width: 100%;
    height: 100%;
    background: #0056B3;
    mask: url('../images/mask.png') no-repeat;
    mask-size: 2300% 100%;
    border: none;
    color: #fff;
    cursor: pointer;
    animation: ani2 0.7s steps(22) forwards;
}

.button-container-1 button:hover {
    animation: ani 0.7s steps(22) forwards;
}

.mas {
    position: absolute;
    color: #000;
    text-align: center;
    width: 100%;
    margin-top: 15px;
    overflow: hidden;
    font-weight: normal;
}

@keyframes ani {
    from {
        mask-position: 0;
    }

    to {
        mask-position: 100%;
    }
}

@keyframes ani2 {
    from {
        mask-position: 100%;
    }

    to {
        mask-position: 0;
    }
}


/*Banner for all pages*/

.banner {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/banner.png);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: darken;
}

.banner h1 {
    font-size: clamp(32px, 13vw, 80px);
    font-weight: 800;
    color: rgb(255, 255, 255);
    text-shadow: 5px 4px 4px rgba(0, 0, 0, 0.4);
}

/*Footer*/

footer {
    background-color: #000;
}

footer span {
    color: #FF7200;
}

footer h5 {
    color: white;
    margin-bottom: 36px;
    font-weight: 500;
    position: relative;
}

footer h5::after {
    position: absolute;
    content: "";
    top: 35px;
    left: 0;
    width: 70px;
    height: 2px;
    background-color: #FF7200;
}

footer h5::before {
    position: absolute;
    content: "";
    top: 33px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #212529 !important;
    color: #212529 !important;
    outline: 4px solid #FF7200;
    z-index: 3;
    animation: move 2.5s linear infinite alternate;
}

@keyframes move {
    to {
        left: 68px;
    }

    from {
        left: 0;
    }
}

footer a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: all .3s ease;
    font-size: 14px;
}

footer ul li {
    padding: 8px;
}

footer ul a::before {
    content: "🔥";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .3s ease;
}

footer ul a:hover::before {
    opacity: 1;
}

footer a:hover {
    padding-left: 20px;
    color: #FF7200;
}

footer p {
    font-size: 14px;
}

footer .bi-brightness-high ,
footer .bi-moon {
    color: white;
    font-size: 10px;
}

footer .bi-brightness-high::before {
    color: #fdff9a;
}

.contact-cta {
    background: linear-gradient(to left, rgba(0, 140, 255, 0.247), rgba(228, 222, 255, 0.37));
    border-top: 2px solid rgba(0, 140, 255, 0.3);
    border-bottom: 2px solid rgba(0, 140, 255, 0.3);
    backdrop-filter: blur(5px);
    padding: 60px 0;
}

.contact-cta h3{
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(0, 102, 255, 0.9),    /* neon blue */
            0 0 35px rgba(0, 255, 255, 0.7);    /* cyan glow */
    }

    50% {
        text-shadow:
            0 0 20px rgba(0, 180, 255, 0.7),    /* lighter blue */
            0 0 35px rgba(150, 80, 255, 0.75);  /* purple glow */
    }
}

.pooja-btn {
    position: relative;
    display: inline-block;
    padding: clamp(10px, 2vw, 14px) clamp(20px, 5vw, 32px);
    font-family: 'Mukta', sans-serif;
    font-size: 16px;
    color: #fff;
    background: #FF9933;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: background 0.3s ease;
}

.pooja-btn:hover {
    background: #FFA500;
}

.pooja-btn::before,
.pooja-btn::after,
.pooja-btn span {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFB84D;
}

.pooja-btn::before {
    top: 0px;
    left: 0px;
    animation: rotate-aura 2s linear infinite;
}

.pooja-btn::after {
    bottom: -15px;
    right: -15px;
    animation: rotate-aura 3s linear infinite reverse;
}

.pooja-btn span:nth-child(1) {
    top: 0;
    left: 50%;
    animation: rotate-small 2s linear infinite;
}

.pooja-btn span:nth-child(2) {
    bottom: 0;
    right: 50%;
    animation: rotate-small 2s linear infinite reverse;
}

.pooja-btn span:nth-child(3) {
    top: 50%;
    left: 0;
    animation: rotate-small 1.5s linear infinite;
}

@keyframes rotate-aura {
    0% {
        transform: rotate(0deg) translate(40px);
    }

    100% {
        transform: rotate(360deg) translate(40px);
    }
}

@keyframes rotate-small {
    0% {
        transform: rotate(0deg) translate(30px);
    }

    100% {
        transform: rotate(360deg) translate(30px);
    }
}

.top-btn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, yellow, rgb(255, 81, 0));
    color: white;
    font-size: 26px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, rgb(255, 81, 0), yellow)
}

/*Whatsapp-Button*/

.whatsapp-float {
    position: fixed;
    bottom: 116px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 25px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all .3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20c05d;
    color: white;
}

/*Top-Button*/

#progressBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s ease;
    z-index: 1000;
    cursor: pointer;
    border-radius: 50%;
    text-decoration: none;
}

#progressBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#progressBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: 1;
    background: conic-gradient(#591C18 var(--scroll-percent), #e0e0e0 var(--scroll-percent));
}

#progressBtn::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.658);
    backdrop-filter: blur(5px);
    z-index: 2;
    box-shadow: inset 0 0px 5px rgba(0, 0, 0, 0.9);
}

.btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
}

#percentText,
#arrowIcon {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #591C18;
    font-weight: 800;
}

#percentText {
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    transform: translateY(0);
    opacity: 1;
}

#arrowIcon {
    font-size: 24px;
    transform: translateY(30px);
    opacity: 0;
    color: #d84207;
}

#progressBtn:hover {
    transform: translateY(-5px);
}

#progressBtn:hover #percentText {
    transform: translateY(-30px);
    opacity: 0;
}

#progressBtn:hover #arrowIcon {
    transform: translateY(0);
    opacity: 1;
}

.contact-links{
  padding: 30px 0 10px 100px;
  width: 100%;
  height: auto;
  background-image: url(../images/banner.png);
  background-position: top center;
  background-attachment: fixed;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
}

@media (max-width: 992px) {
    .contact-links{
        padding-left: 10px !important;
    }
  
    .contact-links a ,
    .contact-links p{
        font-size: 20px !important;
    }
    
    .contact-links .icon {
        margin-right: 10px !important;
    }
}

.contact-links a ,
.contact-links p{
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 50px;
    font-weight: 600;
    transition: all .3s;
}

.contact-links a:hover{
    color: #FF7200;
}

.contact-links .icon {
    position: relative;
    height: 50px;
    width: 50px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    color: rgb(0, 0, 0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
}

.contact-links .icon::after,
.contact-links .icon::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform-origin: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    outline: 3px solid rgba(255, 255, 255, 0.8);
    animation: ring 2s linear infinite;
}

.contact-links .icon::before {
    width: 80px;
    height: 80px;
    outline: 3px solid rgba(255, 255, 255, 0.5);
}

@keyframes ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
    }

    40% {
        opacity: 0.6;
        border-width: 2px;
    }

    65% {
        opacity: 0.3;
        border-width: 1px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
        border-width: 1px;
    }
}

.view-all-card {
    background: linear-gradient(135deg, #0056B3 0%, #9f1a1a 100%); 
    color: white;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border: none;
    box-shadow: 0 10px 30px rgba(185, 43, 39, 0.3);
    cursor: pointer;
    position: relative;
}

.icon-circle {
    width: 80px;
    height: 80px;
    font-size: 52px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.view-all-card:hover .icon-circle {
    transform: scale(1.1) rotate(360deg);
}

.plus-icon {
    font-size: 40px;
    color: #fff;
}

.view-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.view-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-show-more {
    background: #fff;
    color: #b92b27;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hidden-path {
    display: none;
}

@keyframes some {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title {
    color: #0056B3;
    font-weight: 700;
}

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-track {
    position: absolute;
    top: 90px;
    left: 10%;
    width: 80%;
    height: 2px;
    border-top: 2px dashed #49a1ff;
    z-index: 0;
}

.animated-arrow-container {
    position: absolute;
    top: -15px;
    left: 0;
    color: #007bff;
    font-size: 20px;
    background: transparent;
    z-index: 1;
    animation: moveRight 5s linear infinite;
}

@keyframes moveRight {
    0% {
        left: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.timeline-step {
    position: relative;
    z-index: 5;
    text-align: center;
    background: transparent;
}

.img-circle {
    width: 100px;
    height: 100px;
    background-color: #fff5eb;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    border: 4px solid #fff;
    box-shadow: 0 0 0 5px #fff;
}

.img-circle img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
}

.step-title {
    color: #0056B3;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    background-color: white;
}

.step-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    background-color: white;
}

@media (max-width: 768px) {
    .timeline-track {
        top: 50px;
        left: 50%;
        width: 2px;
        height: calc(100% - 150px);
        border-top: none;
        border-left: 2px dashed #49a1ff;
        transform: translateX(-50%);
    }

    .animated-arrow-container {
        top: 0;
        left: -12px;
        transform: rotate(90deg);
        animation: moveDown 5s linear infinite;
    }

    @keyframes moveDown {
        0% {
            top: 0%;
            opacity: 0;
        }

        5% {
            opacity: 1;
        }

        95% {
            opacity: 1;
        }

        100% {
            top: 100%;
            opacity: 0;
        }
    }

    .timeline-step {
        margin-bottom: 50px;
    }

    .timeline-step:last-child {
        margin-bottom: 0;
    }
}

.slider-section {
    overflow: hidden;
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.slider2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20%);
    }
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    width: 380px;
    flex-shrink: 0;
    height: 270px;
    border: 1px solid #89a0f3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #89a0f3;
    font-size: 24px;
}

.card-header-custom {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.img-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #00c853;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.user-name {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}

.user-location {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 12px;
}

.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}