@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Expletus+Sans:ital,wght@0,400..700;1,400..700&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f7ff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    margin: 0 auto;
    padding: 0px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 38px;
    object-fit: contain;
}

.language-wrapper {
    display: flex;
    align-items: center;
}

.language-wrapper img {
    height: 32px;
    width: 32px;
    object-fit: contain;
    margin-right: 12px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    border: none;
    padding-right: 36px;
    background-size: 24px;
    background-position: right center;
}

.language-switcher:focus-visible {
    outline: 0;
}

/* .current-lang {
    font-weight: 600;
    color: #333;
} */

/* .lang-switch {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
} */

/* .lang-switch:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
} */

/* Front Page */
.intro-page .front-page {
    flex-grow: 1;
    background: url('../images/front-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 60px 5%;
}

.intro-page .front-page .form-content {
    text-align: left;
    margin-left: 0;
    max-width: 50%;
    padding: 0;
}

.intro-page .front-page .form-content h2 {
    background: -webkit-gradient(linear, left top, right top, from(#8E54E9), color-stop(94.27%, #4776E6));
    background: -o-linear-gradient(left, #8E54E9 0%, #4776E6 94.27%);
    background: linear-gradient(to right, #8E54E9 0%, #4776E6 94.27%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-family: "Expletus Sans", sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
    filter: drop-shadow(2px 2px 4px #00000040);
}

.intro-page .front-page .intro-text {
    text-align: start;
}

.intro-page .front-page .button-group {
    justify-content: start;
}

/* Container */
.container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: calc(100% - 40px);
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.progress-bar {
    height: 4px;
    background-color: #e9ecef;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    transition: width 0.3s ease;
    width: 0%;
}

.form-step {
    padding: 0;
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    color: #1a1a1a;
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 30px;
}

/* Intro page specific text alignment */
.intro-page .intro-text {
    text-align: center;
}

@media (min-width: 992px) {
    .intro-page .intro-text {
        width: 70%;
    }
}

.form-description {
    color: #6c757d;
    margin-bottom: 24px;
    margin-top: -12px;
    font-size: 15px;
    line-height: 1.5;
}

.form-introduction {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 30px;
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #007bff;
    border-radius: 4px;
}

/* Form Elements */
.form-group {
    margin-bottom: 32px;
}

/* Conditional groups with less top margin */
.income-group,
.sector-group {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px solid #e9ecef;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 20px;
    line-height: 1.4;
}

/* Required field indicator */
.form-group label.required::after {
    content: ' *';
    color: #dc3545;
    font-weight: 700;
    font-size: 18px;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    transition: all 0.2s ease;
    background: #fafbfc;
    color: #495057;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label,
.checkbox-label {
    display: flex !important;
    align-items: center;
    padding: 20px 24px;
    border: 2px solid #e0e6ed;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafbfc;
    margin-bottom: 4px;
}

.radio-label:hover,
.checkbox-label:hover {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    margin-right: 16px;
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.radio-label span,
.checkbox-label span {
    font-size: 16px;
    line-height: 1.5;
    color: #495057;
}

.radio-label input[type="radio"]:checked + span,
.checkbox-label input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #1a1a1a;
}

.radio-label small,
.checkbox-label small {
    font-weight: normal;
    color: #6c757d;
    line-height: 1.5;
    display: block;
    margin-top: 6px;
    font-size: 14px;
}

.radio-label strong,
.checkbox-label strong {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 17px;
}

/* Using JavaScript to add 'checked' class for better browser support */
.radio-label.checked,
.checkbox-label.checked {
    border-color: #007bff;
    background: linear-gradient(to right, #e7f3ff, #f0f7ff);
}

/* Buttons */
.button-group {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 12px;
    /* justify-content: flex-end; */
    justify-content: space-between;
    margin-top: 32px;
}

/* Center button group on intro page */
.intro-page .button-group {
    justify-content: center;
    margin-top: 0;
}

.button-group-flex {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 12px;
    /* justify-content: flex-end; */
    justify-content: center;
    margin-top: 32px;
}

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

@media (max-width: 600px) {
    .btn {
        width: fit-content !important;
    }
}

.btn-primary {
    color: transparent;
    background-color: #FFF;
    background-image: -webkit-gradient(linear, left top, right top, from(#8E54E9), color-stop(94.27%, #4776E6));
    background-image: -o-linear-gradient(left, #8E54E9 0%, #4776E6 94.27%);
    background-image: linear-gradient(to right, #8E54E9 0%, #4776E6 94.27%);
    -webkit-background-clip: text;
    background-clip: text;
    box-shadow: 2px 2px 8px 0px #00000026;
    border: 1px solid transparent;
    padding: 17px 28px 17px 24px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease-out;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    border: 1px solid transparent;
    background-color: white;
    background-image: linear-gradient(white, white), linear-gradient(to right, #8E54E9 0%, #4776E6 94.27%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    z-index: -1;
}

.btn-primary:hover {
    background: -webkit-gradient(linear, left top, right top, from(#8E54E9), color-stop(94.27%, #4776E6));
    background: -o-linear-gradient(left, #8E54E9 0%, #4776E6 94.27%);
    background: linear-gradient(to right, #8E54E9 0%, #4776E6 94.27%);
    color: #FFF !important;
    border: 1px solid #FFF;
}

.btn-primary::after {
    content: '';
    background-image: url('../images/icon-circle-purple.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-origin: content-box;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: .5s ease-out;
    background-size: 10px 10px;
    width: 20px;
    height: 20px;
    margin-left: 17px;
}

@media (min-width: 992px) {
    .btn-primary:hover::after {
        background-image: url('../images/icon-arrow-right-white.svg');
        transform: scale(1);
        background-size: 20px 20px;
    }
}

@media (max-width: 991px) {
    .btn-primary {
        background: -webkit-gradient(linear, left top, right top, from(#8E54E9), color-stop(94.27%, #4776E6));
        background: -o-linear-gradient(left, #8E54E9 0%, #4776E6 94.27%);
        background: linear-gradient(to right, #8E54E9 0%, #4776E6 94.27%);
        color: #FFF !important;
        border: 1px solid #FFF;
    }

    .btn-primary::after {
        background-image: url('../images/icon-arrow-right-white.svg');
        background-size: 20px 20px;
        animation: x-move 2s linear infinite;
    }
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
}

.btn-secondary {
    color: #FFF !important;
    background-color: #6c757d;
    box-shadow: 2px 2px 8px 0px #00000026;
    border: 1px solid transparent;
    padding: 17px 28px 17px 24px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease-out;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: #FFF !important;
    border: 1px solid #FFF;
}

.btn-secondary::before {
    content: '';
    background-image: url('../images/icon-circle-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-origin: content-box;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: .5s ease-out;
    background-size: 10px 10px;
    width: 20px;
    height: 20px;
    margin-right: 17px;
}

@media (min-width: 992px) {
    .btn-secondary:hover::before {
        background-image: url('../images/icon-arrow-right-white.svg');
        transform: scale(-1);
        background-size: 20px 20px;
    }
}

@media (max-width: 991px) {
    .btn-secondary {
        background-color: #545b62;
        color: #FFF !important;
        border: 1px solid #FFF;
    }

    .btn-secondary::before {
        background-image: url('../images/icon-arrow-right-white.svg');
        background-size: 20px 20px;
        animation: x-move-negative 2s linear infinite;
    }
}

.new-response-button .btn-secondary::before {
    content: none;
}

.new-response-button .btn-secondary::after {
    content: '';
    background-image: url('../images/icon-circle-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-origin: content-box;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: .5s ease-out;
    background-size: 10px 10px;
    width: 20px;
    height: 20px;
    margin-left: 17px;
}

@media (min-width: 992px) {
    .new-response-button .btn-secondary:hover::after {
        background-image: url('../images/icon-arrow-right-white.svg');
        background-size: 20px 20px;
    }
}

@media (max-width: 991px) {
    .new-response-button .btn-secondary::before {
        background-image: url('../images/icon-arrow-right-white.svg');
        background-size: 20px 20px;
        animation: x-move 2s linear infinite;
    }
}

@keyframes x-move {
    0% {
        transform: translateX(0px);
    }

    25% {
        transform: translateX(3px);
    }

    50% {
        transform: translateX(0px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes x-move-negative {
    0% {
        transform: translateX(0px) scale(-1);
    }

    25% {
        transform: translateX(-3px) scale(-1);
    }

    50% {
        transform: translateX(0px) scale(-1);
    }

    75% {
        transform: translateX(3px) scale(-1);
    }

    100% {
        transform: translateX(0px) scale(-1);
    }
}

/* .btn-primary {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
} */

/* .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
} */

/* .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.3);
} */

/* .btn-primary:hover::before {
    left: 100%;
} */

/* .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
} */

/* Success Message */
.success-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.success-message {
    font-size: 18px;
    color: #495057;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.6;
}

.new-response-button {
    text-align: center;
    margin-bottom: 60px;
}

.rakyat-digital-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.empower-message {
    font-size: 16px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.6;
    font-style: italic;
}

.sucess-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: #FFF;
    border-top: 1px solid #E1E1E1;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    padding: 16px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
}

.footer-copyright {
    background-color: #0D1B4B;
    color: #F5F5F5;
    font-size: 12px;
    padding: 16px 5%;
}

.footer img {
    height: 30px;
}

.footer a {
    color: #000000;
    text-decoration: none;
    font-size: 12px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Error Message */
.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    padding: 8px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

button:disabled .loading {
    margin: 0 auto;
}

/* Loading state for buttons */
.btn.loading-state {
    position: relative;
    color: transparent;
}

.btn.loading-state .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Validation messages */
.validation-message {
    display: none;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.validation-message.show {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-group.error label.required::after {
    color: #dc3545;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #007bff;
}

.checkbox-validation {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.checkbox-validation.show {
    display: block;
}


/* Select dropdown styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 3rem;
}

/* Improvements group styling */
.improvement-item {
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.2s ease;
}

.improvement-item:hover {
    border-color: #dee2e6;
}

/* Using JavaScript to add 'has-checked' class for better browser support */
.improvement-item.has-checked {
    background: #e7f3ff;
    border-color: #007bff;
}

.improvement-item .checkbox-label {
    margin-bottom: 16px;
    padding: 0;
    border: none;
    background: none;
}

.improvement-item .checkbox-label:hover {
    background: none;
    border: none;
}

.improvement-detail {
    margin-left: 36px;
    margin-top: 8px;
}

.improvement-detail textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    transition: all 0.2s ease;
    background: #fafbfc;
    color: #495057;
    resize: vertical;
    min-height: 80px;
}

.improvement-detail textarea:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.thank-you-message {
    font-size: 20px;
    text-align: center;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thank-you-title {
    font-size: 24px;
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
}


/* Form content styling */
.form-content {
    padding: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Intro page specific styling */
.intro-page .form-content {
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .intro-page .front-page {
        background-position: center right;
        position: relative;
    }

    .intro-page .front-page::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.5); /* dark overlay for readability */
        z-index: 1;
        pointer-events: none;
    }

    .intro-page .front-page .form-content {
        max-width: 100%;
        z-index: 2;
        position: relative;
    }

    .intro-page .front-page .form-content h2 {
        font-size: 40px;
    }


    .container {
        width: calc(100% - 32px);
        margin: 16px auto;
        border-radius: 16px;
    }

    .form-content {
        padding: 40px;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .intro-text {
        font-size: 15px;
    }

    .form-group label {
        font-size: 18px;
    }

    .radio-label span,
    .checkbox-label span {
        font-size: 15px;
    }

    .improvement-item {
        padding: 16px;
    }
}

@media (max-width: 600px) {
    .intro-page .front-page::before {
        background: rgba(255, 255, 255, 0.9); /* dark overlay for readability */
    }
    /* .header-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    } */
     .header-logo {
        height: 26px;
    }
    .language-wrapper img {
        height: 24px;
        width: 24px;
    }

    .language-switcher {
        font-size: 16px;
        margin: 0 auto;
    }

    .container {
        width: calc(100% - 32px);
        margin: 16px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        min-height: auto;
    }

    .form-content {
        padding: 24px;
    }

    h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .button-group {
        /* flex-direction: column-reverse; */
        gap: 8px;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .current-lang {
        font-size: 14px;
    }

    .lang-switch {
        font-size: 14px;
        padding: 6px 12px;
    }

    .radio-label,
    .checkbox-label {
        padding: 16px;
        display: flex !important;
        align-items: flex-start;
    }

    .radio-label input[type="radio"],
    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 12px;
        margin-top: 3px;
        flex-shrink: 0;
    }

    /* Add wrapper for text content */
    .radio-label span,
    .checkbox-label span {
        flex: 1;
        display: block;
        font-size: 15px;
    }

    /* Ensure small text stays within the flex container */
    .radio-label small,
    .checkbox-label small {
        display: block;
        margin-top: 4px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group label {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .form-group input[type="email"],
    .form-group input[type="text"],
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px 16px;
    }

    /* Fix for iOS Safari */
    input, textarea, select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    /* Restore native radio and checkbox appearance */
    input[type="radio"],
    input[type="checkbox"] {
        -webkit-appearance: radio;
        -moz-appearance: radio;
        appearance: radio;
        width: 18px;
        height: 18px;
        margin-right: 12px;
        margin-top: 3px;
    }

    input[type="checkbox"] {
        -webkit-appearance: checkbox;
        -moz-appearance: checkbox;
        appearance: checkbox;
    }

    /* Ensure proper select arrow on mobile */
    select {
        background-position: right 0.7rem center;
    }

}


/* Business Sector Options Styling */
/* .sector-option .radio-label {
    padding: 24px;
}

.sector-option .option-title {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    display: block;
    margin-bottom: 6px;
}

.sector-option .option-description {
    font-size: 14px;
    font-weight: normal;
    color: #6c757d;
    display: block;
    line-height: 1.5;
    margin-left: 36px; Align with title text, accounting for radio button
}

.sector-option input[type="radio"]:checked ~ .option-content .option-title {
    color: #007bff;
}

.sector-option .option-content {
    flex: 1;
} */


/* MyDIGITAL Page Styles */
.mydigital-page {
    background: linear-gradient(120deg, #f3faff 0%, #f5f3ff 100%);
    min-height: 100vh;
}

.mydigital-header-area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 57px 5%;
}

.mydigital-header-area .back-link {
    color: #6c63ff;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.mydigital-header-area .back-link:hover {
    color: #4834d4;
    text-decoration: underline;
}

.mydigital-content {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.mydigital-header-area h2 {
    font-size: 40px;
}

.mydigital-content h2 {
    background: -webkit-gradient(linear, left top, right top, from(#8E54E9), color-stop(94.27%, #4776E6));
    background: -o-linear-gradient(left, #8E54E9 0%, #4776E6 94.27%);
    background: linear-gradient(to right, #8E54E9 0%, #4776E6 94.27%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-weight: 500;
    line-height: 1.2;
    filter: drop-shadow(2px 2px 4px #00000040);
}


/* Back navigation */
.back-nav {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.back-link {
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    background: -webkit-gradient(linear, left top, right top, from(#8E54E9), color-stop(94.27%, #4776E6));
    background: -o-linear-gradient(left, #8E54E9 0%, #4776E6 94.27%);
    background: linear-gradient(to right, #8E54E9 0%, #4776E6 94.27%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-family: "Expletus Sans", sans-serif;
    line-height: 1.2;
    filter: drop-shadow(2px 2px 4px #00000040);
}

.back-link:hover {
    color: #005bb5;
}

.back-nav-img {
    width: 20px;
    height: 20px;
}

/* Page title */
.page-title {
    line-height: 1;
    font-size: 51px;
    font-weight: 500;
    color: #23232b;
    margin-bottom: 0;
    letter-spacing: -1px;
}

/* Sections */
.section-blueprint,
.section-n4irp,
.section-cta {
    margin-bottom: 60px;
}

.section-aspirations {
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 0;
}

.aspirations-content-box {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    padding: 40px 48px;
    max-width: 700px;
    margin-right: 5vw;
    margin-left: auto;
}

.section-aspirations h2 {
    color: #6c63ff;
    font-size: 2.4rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-aspirations p {
    color: #23232b;
    font-size: 1.18rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .aspirations-content-box {
        padding: 24px 16px;
        max-width: 100%;
        margin-right: 0;
    }

    .section-aspirations {
        padding: 24px 5%;
        min-height: 220px;
    }
}

.section-mtr {
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0;
}

.mtr-content-box {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    padding: 40px 48px;
    max-width: 700px;
    margin-left: 5vw;
    margin-right: auto;
}

.section-mtr h2 {
    color: #6c63ff;
    font-size: 2.4rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-mtr p {
    color: #23232b;
    font-size: 1.18rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .mtr-content-box {
        padding: 24px 16px;
        max-width: 100%;
        margin-left: 0;
    }

    .section-mtr {
        padding: 24px 5%;
        min-height: 220px;
    }
}

.section-aspirations h2,
.section-mtr h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-aspirations p,
.section-mtr p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

/* Two column layout */
.section-n4irp,
.section-blueprint {
    max-width: 1206px;
    margin: 0 auto;
    padding: 40px 5%;
}
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.two-column-layout.reverse {
    direction: rtl;
}

.two-column-layout.reverse > * {
    direction: ltr;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.column-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

/* Accordion styles */
/* Blueprint/N4IRP Accordion Custom Styles */
.accordion {
    background: transparent;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
}

.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #6c63ff;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

.gradient-purple {
    background: -webkit-gradient(linear, left top, right top, from(#8E54E9), color-stop(94.27%, #4776E6));
    background: -o-linear-gradient(left, #8E54E9 0%, #4776E6 94.27%);
    background: linear-gradient(to right, #8E54E9 0%, #4776E6 94.27%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-family: "Expletus Sans", sans-serif;
    line-height: 1.2;
    filter: drop-shadow(2px 2px 4px #00000040);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    width: 100%;
    background: transparent;
    border: none;
    color: #170F49;
    font-size: 21px;
    font-weight: 500;
    text-align: left;
    padding: 24px 16px;
    position: relative;
    transition: color 0.2s;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-button.collapsed {
    background: transparent;
}

.accordion-button:after {
    content: '+';
    color: #6c63ff;
    font-size: 2rem;
    font-weight: 200;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s;
}

.accordion-button:not(.collapsed):after {
    content: '−';
}


.accordion-body {
    color: #1F1F1F;
    font-size: 1rem;
    background: transparent;
    padding: 0 0 24px 32px;
    border: none;
    box-shadow: none;
}

.accordion-collapse {
    display: none;
}

.accordion-collapse.show {
    display: block;
}

.accordion-item:not(:last-child) .accordion-button {
    margin-bottom: 0;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-item:first-child .accordion-button,
.accordion-item:last-child .accordion-button {
    border-radius: 0;
}

.btn-outline {
    background: #181828;
    color: #a68cff;
    border: 2px solid #a68cff;
    border-radius: 32px;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 36px;
    box-shadow: 0 0 0 4px rgba(166, 140, 255, 0.15);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-outline:hover {
    background: #a68cff;
    color: #181828;
    box-shadow: 0 0 0 8px rgba(166, 140, 255, 0.18);
}

/* CTA Section */
.section-cta {
    margin-top: 80px;
}

.cta-box {
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
    color: white;
    padding: 50px;
    border-radius: 16px;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-box .btn-primary {
    background: white;
    color: #0071e3;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.cta-box .btn-primary:hover {
    background: #f0f0f0;
}

.cta-section {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 10% 5%;
}

.cta-content {
    max-width: 520px;
    z-index: 2;
    position: relative;
}

.cta-section h2 {
    background: -webkit-gradient(linear, left top, right top, from(#8E54E9), color-stop(94.27%, #4776E6));
    background: -o-linear-gradient(left, #8E54E9 0%, #4776E6 94.27%);
    background: linear-gradient(to right, #8E54E9 0%, #4776E6 94.27%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-family: "Expletus Sans", sans-serif;
    font-weight: 500;
    font-size: 54px;
    line-height: 1.2;
    filter: drop-shadow(2px 2px 4px #00000040);
    margin-bottom: 24px;
}

.cta-section .intro-text {
    color: #23232b;
    font-size: 1.18rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-section .button-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}


.cta-content a{
    margin-top:30px;
}

/* Responsive adjustments for MyDIGITAL page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .two-column-layout,
    .two-column-layout.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .column-image {
        order: -1;
    }

    .section-aspirations,
    .section-blueprint,
    .section-n4irp,
    .section-cta {
        margin-bottom: 40px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1.1rem;
    }
}

@media (max-width: 425px) {
    .cta-content h2 {
        font-size: 44px;
    }
}