@font-face {
    font-family: 'Poppins';
    src: url('../Font/Poppins/Poppins-Light.ttf') format('ttf'), url('../Font/Poppins/Poppins-Italic.ttf') format('ttf'), url('../Font/Poppins/Poppins-Medium.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
}

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

html {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

ul {
    list-style: none;
    padding-left: 0;
}

.fw-bold {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-success {
    color: #203e80 !important;
}

/* ===== NAVBAR ===== */
.custom-navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    width: 100%;
    top: 0;
}

.custom-navbar .nav-link {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65);
    padding: 10px 15px;
    font-size: 17px;
}

.custom-navbar .nav-link:hover {
    color: #1f8b4c;
}

.ArkonlogoImg img {
    height: 35px;
}

@media (max-width: 768px) {
    .custom-navbar {
        padding: 8px 16px;
    }
    .custom-navbar .nav-link {
        padding: 8px 10px;
        font-size: 16px;
    }
}

/* ===== BANNER ===== */
.banner-section {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.banner-slide {
    width: 100%;
    height: 72%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 100%;
    transition: left 0.6s ease-in-out;
    z-index: 0;
}

.banner-slide.active {
    left: 0;
    z-index: 1;
}

.banner-slide.prev {
    left: -100%;
}

.banner-slide-faq {
    background-image: url('../Banner_Home/NEW FAQ.webp');
}

@media (max-width: 768px) {
    .banner-slide {
        height: 200px;
    }
    .banner-section {
        height: 400px;
    }
    .personmiddletextbanner h1 {
        font-size: 1.25rem;
        color: #fff;
        text-align: center;
        padding: 0 12px;
    }
}

/* ===== FOOTER ===== */
.footer-section {
    background-color: #203e80;
}

.footer-logo {
    max-width: 120px;
}

.site-footer {
    background: linear-gradient(#203e80, #203e80);
    padding: 60px 20px;
    text-align: center;
}

.site-footer h6,
.site-footer p,
.site-footer a {
    color: #ccc;
}

.site-footer a.footer-link:hover {
    color: #ffeb3b;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-search,
.btn-orange,
.btn-purple {
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background: #6f42c1;
}

.btn-primary:hover {
    background: #5936a6;
}

.btn-orange {
    background: #ff5722;
}

.btn-orange:hover {
    background: #e64a19;
}

.btn-purple {
    background: #7e57c2;
}

.btn-purple:hover {
    background: #5e35b1;
}

.btn-search {
    background: #203e80;
    color: white;
}

/* ===== ACCORDION (FAQ) ===== */
.faq-toggle,
.custom-accordion-toggle {
    position: relative;
    padding-right: 40px;
    font-size: 1rem;
    font-weight: 600;
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-toggle::after,
.custom-accordion-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url('../Logo/Down Arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-toggle[aria-expanded="true"]::after,
.custom-accordion-toggle[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-body,
.custom-accordion-body {
    font-size: 0.95rem;
    padding-top: 12px;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-toggle,
    .custom-accordion-toggle {
        font-size: 0.95rem;
    }
    .faq-body,
    .custom-accordion-body {
        font-size: 0.9rem;
    }
}

.custom-modern-faq-section .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #203e80;
    background-color: #f8f9fa;
    border: none;
}

.custom-modern-faq-section .accordion-button:focus {
    box-shadow: none;
}

.custom-modern-faq-section .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #203e80;
}

.custom-modern-faq-section .accordion-body {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.custom-compliance-btn {
    color: #fff;
    background-color: #203e80;
}

.accordion-button::after {
    display: none !important;
}

/* Custom image icon for accordion toggle */
.accordion-button {
    position: relative;
    padding-right: 2.5rem;
}

.accordion-button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../Logo/Down Arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

/* Rotate image when open */
.accordion-button:not(.collapsed)::before {
    transform: translateY(-50%) rotate(180deg);
}

/* ===== PAGE-SPECIFIC ===== */
.faq-card-offset {
    margin-top: -80px;
}

@media (max-width: 768px) {
    .faq-card-offset {
        margin-top: -40px;
    }
}

.faq-illustration {
    max-width: 100%;
    height: auto;
}

.certification-section {
    background-color: #f5f7fa;
}

.cert-logo {
    max-height: 80px;
    object-fit: contain;
}

.guide-heading,
.guide-subtext {
    color: #203e80;
}
 .accordion-button::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-image: url('Logo/Down\ Arrow.svg');
        /* your custom image path */
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform 0.3s ease;
    }
    /* Rotate image when open */
    
    .accordion-button:not(.collapsed)::before {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .guide-heading {
        color: #203e80;
    }
    
    .guide-subtext {
        color: #203e80;
    }