@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500;600;700&family=SF+Pro+Text:wght@300;400;500;600&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #1d1d1f;
    --secondary-black: #000000;
    --charcoal: #2c2c2e;
    --accent-blue: #007aff;
    --light-gray: #f5f5f7;
    --medium-gray: #86868b;
    --white: #ffffff;
    --gold-accent: #ffb800;
    --red-accent: #ff3b30;
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1d1d1f 100%);
    --gradient-light: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    --shadow-elegant: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-deep: 0 16px 64px rgba(0, 0, 0, 0.2);
    --border-radius: 16px;
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    padding: 2rem;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.iskcon-logo {
    height: 100px; /* Adjust size as needed */
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
    /* No border-radius or shadows here to keep original logo shape */
}

.prabhupad-image {
    width: 150px; /* Adjust size as needed */
    height: 150px;
    border-radius: 50%; /* Keep circular for artistic effect */
    object-fit: cover;
    margin-bottom: 25px;
    animation: zoomIn 1s ease-out 0.1s both;
    /* Removed specific glow/border here to let the image content dominate */
}

.prabhupad-quote {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.quote-attribution {
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 1rem;
    color: var(--gold-accent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button { /* This style is kept but the button is removed */
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

    .cta-button::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.6s ease;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-deep);
        background: #0056d3;
    }

        .cta-button:hover::before {
            left: 100%;
        }

.section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.section-title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--primary-black);
}

/* Specific styling for donation section title within dark background */
.donation-section .section-title {
    color: var(--white);
}

.story-section {
    background: var(--light-gray);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary-black);
}

    .story-text h3 {
        font-family: 'SF Pro Display', sans-serif;
        font-size: 2rem;
        font-weight: 600;
        color: var(--primary-black);
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .story-text p {
        margin-bottom: 1.5rem;
        font-weight: 400;
    }

.story-visual {
    position: relative;
    text-align: center;
}

.temple-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    object-fit: cover;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
}

    .temple-image:hover {
        transform: scale(1.02);
        box-shadow: var(--shadow-deep);
    }

.donation-section {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
}

.sanskrit-title {
    text-align: center;
    margin-bottom: 2rem;
}

.sanskrit-word {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.sanskrit-meaning {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic; /* Added for italic translation */
}

.donation-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

    .plan-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold-accent);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .plan-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.08);
    }

        .plan-card:hover::before {
            transform: scaleX(1);
        }

.plan-title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gold-accent);
}

.plan-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.plan-price {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
}

.plan-button {
    width: 100%;
    padding: 16px;
    background: transparent;
    color: var(--white);
    border: 1px solid #ecab02;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    color: #ecab02;
    transition: var(--transition-smooth);
}

    .plan-button:hover {
        color: #fff;
        background: #ecab02;
        transform: translateY(-2px);
    }

.form_modal .modal-dialog {
    max-width: 750px;
}

.form_modal .modal-content {
    background: #111;
    border: 1px solid #d9c796;
    border-radius: 20px;
    padding: 30px;
    border-bottom-width: 5px;
}

.modal-body button.btn-close {
    position: absolute;
    right: 0;
    filter: invert();
}

.registration-box .section-title {
    font-size: 35px;
    color: #fff;
}

.registration-box .section-subtitle {
    color: #fff;
    text-align: center;
    font-size: 24px;
    margin-bottom: 0px;
    line-height: 30px;
    letter-spacing: 0.25px;
    font-weight: 400;
}

.form-group.set_form {
    text-align: center;
}

    .form-group.set_form label {
        display: block;
    }

.form-check {
    background: #f3efe7;
    padding: 7px 25px 7px 45px;
    border-radius: 20px;
    margin-top: 5px;
    margin-left: 10px;
}

.form-group.set_form .form-check {
    display: inline-block;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: auto;
    border-radius: 5px;
    border: none;
    padding: 0;
    font-size: 1rem;
    background: transparent;
    color: #837e74;
    font-weight: 300;
}

    .form-control:focus {
        border-color: #d4af37;
        box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    }

.form-check {
    margin-bottom: 10px;
}

.form-check-input:checked {
    background-color: #d44720;
    border-color: #d44720;
}

.form-check-input:focus {
    border-color: transparent;
    box-shadow: none;
}

.submit-btn {
    background: linear-gradient(to right, #ffc329, #ae7e00);
    border: none;
    padding: 15px 60px;
    font-size: 16px;
    font-weight: 400;
    width: auto;
    transition: all 0.3s ease;
    margin-inline: auto;
    /*display: block;*/
    /*border-radius: 40px;*/
}

    .submit-btn:hover {
        background: linear-gradient(to left, #ffc329, #ae7e00);
    }

.ss .form-group {
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    padding: 12px 30px;
}

    .ss .form-group label {
        color: #932840;
        font-size: 13px;
        margin-bottom: -3px;
        display: block;
    }

    .ss .form-group .form-control:focus {
        border: none !important;
        box-shadow: none;
        background: transparent;
    }

.donation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 15px;
    justify-content: center;
}

.btn-donation-amount {
    background-color: transparent;
    border: 1px solid #ecab02;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    color: #ecab02;
    font-size: 22px;
    padding-inline: 30px;
}

    .btn-donation-amount:hover, .btn-donation-amount.active {
        background-color: #ecab02;
        color: white;
        border-color: #ecab02;
        position: relative;
        z-index: 1;
    }
/* .btn-donation-amount.active::after {
        position: absolute;
        content: "";
        width: 15px;
        height:15px;
        left: 50%;
        top: 100%;
        transform: translate(-50%, -50%) rotate(45deg);
        background: #ecab02;
        z-index: -1;
    } */
.total-donation-amount {
    margin-top: 20px;
    padding: 15px;
    /* background-color: #f8f9fa; */
    border-radius: 4px;
}

.amount-display {
    font-size: 1.5rem;
    font-weight: bold;
}

.other-amount-input {
    margin-top: 10px;
    max-width: 320px;
    margin-inline: auto;
    border: 1px solid #ecab02;
    padding-block: 7px;
    padding-left: 25px;
    padding-right: 15px;
}

    .other-amount-input input:focus {
        box-shadow: none;
        background: transparent;
    }

.amount-display {
    background: #f3efe7;
    display: inline-block;
    min-width: 240px;
    padding: 5px 10px 5px 30px;
    border-radius: 100px;
    color: #674500;
    font-size: 50px;
    text-align: start;
}

    .amount-display #totalAmount {
        border-left: 1px solid #e1d9c8;
        margin-left: 10px;
        padding-left: 10px;
        margin-block: 0;
        max-height: 50px;
        margin-block: auto;
        display: inline-flex;
        align-items: center;
    }

#CardNumber {
    font-family: 'Graphik-Regular';
    letter-spacing: 1px;
}

.alert {
    padding: 15px;
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
    border-color: #d6e9c6;
}

.most-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #a83434;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.subscription_part {
    background: black;
    border: 1px solid #d9c796;
}

.form_modal {
    transition: opacity .4s linear;
}
/* .form_modal.show {
  transition: opacity 5s linear;
} */

.read_more_btn {
    display: inline-block;
    color: #d19700;
    text-decoration: none;
}





/* //////////// */



.activities-section {
    background: var(--white);
    position: relative;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.activity-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-elegant);
}

    .activity-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-deep);
    }

.activity-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.activity-content {
    padding: 2rem;
}

.activity-title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--primary-black);
}

.activity-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.inner_page_modal .modal-content {
    background: #111;
    padding: 20px;
}

.inner_page_modal .modal-dialog {
    max-width: 90%;
}

.inner_page_modal p,
.inner_page_modal h4,
.inner_page_modal h1 {
    color: #fff !important;
}

.inner_page_modal .btn-close {
    filter: invert();
}

.inner_activity_img {
    float: right;
    width: 100%;
    max-width: 400px;
    margin-left: 30px;
}

.inner_page_modal blockquote, .inner_page_modal ul {
    color: #fff;
}

.inner_page_modal h5 {
    color: #ecab02;
}



.narrative-section {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.narrative-content {
    margin: 0 auto;
}

.narrative-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.impact-stats .stat-item > div span {
    color: #ffb800;
    font-weight: 600;
    font-size: 22px;
}

.footer {
    background: var(--secondary-black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--charcoal);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.scroll-progress {
    height: 100%;
    background: var(--accent-blue);
    width: 0%;
    transition: width 0.3s ease;
}

/* Apple-style smooth animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

/* Intersection Observer Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.registration-form .error {
    color: red;
    position: relative;
    top: -15px;
    left: 15px;
}

.hero-slider {
    background: linear-gradient(#1111119c, #000) !important;
}



.registration-form > div > p {
    font-size: 12px !important;
    letter-spacing: -0.4px;
}

.registration-box .section-title {
    font-size: 30px;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.registration-box .section-subtitle {
    font-size: 16px;
    line-height: 24px;
}

.ss .form-group {
    padding: 8px 30px;
    margin-bottom: 15px;
}

    .ss .form-group label {
        font-size: 11px;
    }

input.form-control {
    font-size: 15px;
}

.registration-box .donation-amount-section .section-subtitle {
    text-align: start;
}

.donation-options {
    justify-content: end;
    margin-block: 5px;
}

.form_modal .modal-content {
    padding: 10px 10px 0;
}

.form_modal .modal-dialog {
    max-width: 600px;
}

.donation-amount-section .form-group {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border: 1px solid #c0b08585;
    border-radius: 5px;
    padding: 10px 20px;
    align-items: center;
}

.modal-body button.btn-close {
    right: 15px;
}

.submit-btn {
    padding: 12px 35px;
    font-size: 15px;
}

.donation-options {
    margin-bottom: 10px;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media screen and (max-width:800px) {
    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .registration-box .section-subtitle {
        text-align: center;
        font-size: 12px;
        margin-bottom: 5px !important;
    }

    .registration-box .section-title {
        font-size: 24px;
        letter-spacing: 0;
    }

    .registration-box .section-subtitle {
        font-size: 12px !important;
    }
}

/* extra css */
.inner_page_hero_set {
    height: 100vh;
    background-size: cover;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/*  */

.printer-top {
    z-index: 1;
    border: 6px solid #08660f;
    height: 6px;
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
    background: #08660f;
}

.printer-bottom {
    z-index: 0;
    border: 6px solid #08660f;
    height: 6px;
    border-top: 0;
    border-radius: 0 0 6px 6px;
    background: #08660f;
}

.paper-container {
    position: relative;
    overflow: hidden;
    height: 620px;
}

.paper {
    background: #ffffff;
    height: auto;
    position: absolute;
    z-index: 2;
    margin: 0 12px;
    margin-top: -12px;
    animation: print 1800ms cubic-bezier(0.68, -0.55, 0.265, 0.9);
    -moz-animation: print 1800ms cubic-bezier(0.68, -0.55, 0.265, 0.9);
    box-shadow: 0 2px 12px rgb(0 0 0 / 5%);
    border-radius: 5px;
}

.main-contents {
    margin: 0 10px;
    padding: 20px 20px 20px;
    position: relative;
}

.jagged-edge {
    position: relative;
    height: 20px;
    width: 100%;
    margin-top: -1px;
}

    .jagged-edge:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        height: 20px;
        background: linear-gradient( 45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667% ), linear-gradient( -45deg, #0c842024 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667% );
        background-size: 16px 40px;
        background-position: 0 -20px;
    }

.success-icon {
    text-align: center;
    font-size: 35px;
    height: 72px;
    background: #359d00;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    margin: 18px auto;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-title {
    font-size: 22px;
    text-align: center;
    color: #666;
    font-weight: bold;
    margin-bottom: 16px;
}

.success-description {
    font-size: 14px;
    line-height: 21px;
    color: #999;
    text-align: center;
    margin-bottom: 24px;
}

.order-details {
    text-align: center;
    color: #333;
    /* font-weight: bold; */
}

    .order-details > div > div {
        padding: 5px 10px;
    }

        .order-details > div > div:nth-child(4n + 1),
        .order-details > div > div:nth-child(4n + 2) {
            background-color: #cccccc30;
        }

    .order-details .order-number-label {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .order-details .order-number {
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        line-height: 48px;
        font-size: 18px;
        padding: 8px 0;
        margin-bottom: 24px;
    }

.aws-title5 {
    font-family: "Poppins-Medium", sans-serif;
    font-size: 13px;
    line-height: 20px;
}

.order-footer {
    text-align: center;
    line-height: 18px;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: "Poppins-SemiBold", sans-serif;
    color: #999;
    padding-top: 35px;
}

/* error */
.aws-ac-error .printer-top {
    z-index: 1;
    border: 6px solid #f12129;
    height: 6px;
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
    background: #a9070c;
}

.aws-ac-error .printer-bottom {
    z-index: 0;
    border: 6px solid #d4181e;
    height: 6px;
    border-top: 0;
    border-radius: 0 0 6px 6px;
    background: #a9070c;
}

.aws-ac-error .success-icon {
    background-color: #d4181e;
}

.aws-ac-error .aws-title2 {
    color: #d4181e !important;
}

.aws-ac-error .jagged-edge:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient( 45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667% ), linear-gradient( -45deg, #f1212929 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667% );
    background-size: 16px 40px;
    background-position: 0 -20px;
}

/* Pending */

.aws-ac-pending .printer-top {
    z-index: 1;
    border: 6px solid #dba600;
    height: 6px;
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
    background: #7c5d00;
}

.aws-ac-pending .printer-bottom {
    z-index: 0;
    border: 6px solid #ffc92a;
    height: 6px;
    border-top: 0;
    border-radius: 0 0 6px 6px;
    background: #ffc60b;
}

.aws-ac-pending .success-icon {
    background-color: #dba600;
}

.aws-ac-pending .aws-title2 {
    color: #dba600 !important;
}

.aws-ac-pending .jagged-edge:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient( 45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667% ), linear-gradient( -45deg, #c898094a 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667% );
    background-size: 16px 40px;
    background-position: 0 -20px;
}

@keyframes print {
    0% {
        transform: translateY(-90%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes print {
    0% {
        -webkit-transform: translateY(-90%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

@-moz-keyframes print {
    0% {
        -moz-transform: translateY(-90%);
    }

    100% {
        -moz-transform: translateY(0%);
    }
}

@-ms-keyframes print {
    0% {
        -ms-transform: translateY(-90%);
    }

    100% {
        -ms-transform: translateY(0%);
    }
}

.cheque-image fieldset {
    max-width: 350px;
}
 .accordion {--bs-accordion-border-color: #ffb800;}
        .faq_section {
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            z-index: 1;
            color: var(--white);
            text-align: center;
            padding: 100px 0;
        }
        .faq_section .accordion-button {
            color: #ffb800;
            text-align: left;
            background-color: #17171700;
            font-size: 20px;
            padding: 20px;
        }
        .faq_section .accordion-item {background-color: transparent;border: 1px solid #ffb800;margin-bottom: 10px;}
        /* .faq_section .accordion {border: 1px solid #ffb800; border-block-width: 2px;} */
        .faq_section .accordion {border: none;}
        .accordion-button:focus {box-shadow: none;border-bottom: 1px solid;}
        .accordion-button::after {background: #ffb800;height: 2px;}
        .accordion-button::before {
            right: 29px;
            background: #ffb800;
            height: var(--bs-accordion-btn-icon-width); 
            width: 2px;
            position: absolute;
            content: "";
            transition: var(--bs-accordion-btn-icon-transition);
        }
        .faq_section .accordion-flush > .accordion-item:first-child {border-top: 1px solid #ffb800;}
        .accordion-flush > .accordion-item:last-child {border-bottom: 1px solid #ffb800;}
        .faq_section .accordion-button:not(.collapsed)::before{
            height: 0;
            transition: var(--bs-accordion-btn-icon-transition);
        }
        .faq_section .accordion-body {color: #fff;text-align: left;}
        .faq_section .accordion-body ul li {margin-bottom: 10px;}
        .follow_links ul {padding: 0;list-style: none;display: flex;align-items: center;gap: 15px;}
        .follow_links ul li a {color: #fff; font-size: 20px;border: 1px solid;padding: 6px 10px;border-radius: 40px;transition: all .4s linear;position: relative; top: 0;}
        .follow_links ul li a:hover {color: #ffb800; transition: all .4s linear; top: -5px;}

@media screen and (max-width:576px) {
    .faq_section .accordion-button {font-size: 17px;}
    .faq_section .accordion-body {font-size: 14px;}
    .faq_section {padding-block: 40px;border-bottom: 1px solid #ffffff17;}
}


