        .container-main-title {
            font-family: 'Monotype Corsiva', cursive;
            font-size: 45px;
            font-weight: 400;
            color: #ffffff;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .container-mid-title {
            font-size: 30px;
            font-family: 'Monotype Corsiva', cursive;
            font-weight: 400;
            text-align: center;
            color: #f09928;
            width: auto;
        }

        .devotion-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            padding: 5px 80px;
            color: #fff;
            max-width: 1600px;
            margin-left: 100px;
            overflow-x: hidden;
        }

        .devotion-description {
            font-family: 'Plus Jakarta Sans', Arial, sans-serif;
            font-size: 18px;
            line-height: 1.9;
            color: #ffffff;
            max-width: 650px;
            font-weight: 300;
        }

        .about-guru-description {
            font-family: 'Plus Jakarta Sans', Arial, sans-serif;
            font-size: 18px;
            line-height: 1.9;
            color: #ffffff;
            max-width: 650px;
            font-weight: 300;

        }

        .devotion-content {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
        }

        @media (max-width: 768px) {
            .devotion-content {
                flex-direction: column;
                text-align: center;
            }
        }

        .devotion-text {
            opacity: 0;
            transform: translateX(-150%);
            /* completely off screen left */
            transition: all 1s ease;
        }

        .devotion-text-2 {
            opacity: 0;
            transform: translateX(150%);
            transition: all 1s ease;
        }

        @media (max-width: 768px) {
            .devotion-text {
                text-align: center;
            }
        }

        .devotion-title {
            font-family: 'Monotype Corsiva', cursive;
            font-size: 42px;
            font-weight: 400;
            line-height: 1.2;
            color: #f09928;
            margin-bottom: 24px;
        }

        .guru-image {
            position: relative;
            width: 530px;
            height: auto;
            overflow: hidden;
            left: 90px;
            opacity: 0;
            transform: translateX(150%);
            /* completely off screen right */
            transition: all 1s ease;
        }

        .guru-image-2 {
            position: relative;
            width: 570px;
            height: auto;
            overflow: hidden;
            opacity: 0;
            transform: translateX(-150%);
            transition: all 1s ease;
        }

        .guru-image .devotion-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Text slides from left */
        .devotion-text,
        .guru-image-2 {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s ease;
        }

        /* Image slides from right */
        .guru-image,
        .devotion-text-2 {
            opacity: 0;
            transform: translateX(50px);
            transition: all 1s ease;
        }

        /* Active state: visible & in place */
        .devotion-text.active,
        .devotion-text-2.active,
        .guru-image.active,
        .guru-image-2.active {
            opacity: 1;
            transform: translateX(0);
        }

        .achievements-title {
            font-size: 45px;
            font-family: 'Monotype Corsiva', cursive;
            font-weight: 400;
            text-align: center;
            color: #f09928;
            width: auto;
        }

        /* card  */
        .card {
            background-color: transparent;
            /* dark background for entire card */
            color: #fff !important;
            /* text color white */
            border: 2px solid transparent;
            /* default invisible border */
            transition: all 0.3s ease;
            /* smooth hover effect */
            overflow: hidden;
            /* ensures image stays inside card */
        }

        .card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            /* light white border on hover */
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
            /* subtle glow */
        }

        .card-img-top {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .card-title {
            font-size: 25px;
            font-weight: 100;
            line-height: 1.2;
            color: #fff !important;
            margin-bottom: 8px;
        }

        .card-text {
            font-size: 16px;
            line-height: 1.6;
            color: #fff !important;
        }