/* WEBSITE RESETS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}


/* WEBSITE RESETS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    overflow-x: hidden;
    padding-top: 70px;
}


/* ===HEADER STYLES====== */

.site-header {
    background: linear-gradient(135deg, #0a192f 0%, #0d2240 60%, #0f2b50 100%);
    padding: 7px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(243, 156, 18, 0.15);
}

.logo-area {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.logo-area:hover {
    transform: scale(1.03);
}

.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 2px 8px rgba(243, 156, 18, 0.4));
}

.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
    position: relative;
    font-family: 'Gabarito', sans-serif;
    letter-spacing: -0.07px;
    
}

.nav-list li a:hover {
    color: #f39c12;
    text-shadow: 0 0 6px rgba(243, 156, 18, 0.4);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
    left: 0;
}

.subscribe-nav {
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
    color: #0a192f !important;
    padding: 0.45rem 1.2rem !important;
    border-radius: 30px;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: 0 2px 12px rgba(243, 156, 18, 0.35);
    transition: all 0.25s ease !important;
    font-size: 0.8rem !important;
}

.subscribe-nav:hover {
    background: linear-gradient(135deg, #e67e22, #c0392b) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(243, 156, 18, 0.5) !important;
    transform: translateY(-1px) scale(1.02);
}

.subscribe-nav:hover::after {
    width: 0 !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    text-decoration: none;
    padding: 0.55rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 12px rgba(243, 156, 18, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button:hover {
    background: transparent;
    color: #f39c12;
    border-color: #f39c12;
    box-shadow: 0 4px 18px rgba(243, 156, 18, 0.2);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .site-header {
        padding: 5px 15px;
        
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(160deg, #0a192f 0%, #0d2240 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
    }

    .navigation.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    /* Neat effect when mobile panel opens */
    .nav-list li {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .navigation.active .nav-list li {
        opacity: 1;
        transform: translateX(0);
    }

    .navigation.active .nav-list li:nth-child(1) { transition-delay: 0.05s; }
    .navigation.active .nav-list li:nth-child(2) { transition-delay: 0.1s; }
    .navigation.active .nav-list li:nth-child(3) { transition-delay: 0.15s; }
    .navigation.active .nav-list li:nth-child(4) { transition-delay: 0.2s; }
    .navigation.active .nav-list li:nth-child(5) { transition-delay: 0.25s; }

    .mobile-toggle {
        display: flex;
    }

    .header-actions .cta-button {
        display: none;
    }

    .logo-img {
        max-height: 46px;
    }
}

/* Overlay effect when mobile menu is open */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0.8);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* ===FOOTER STYLES====== */

.site-footer {
    background: linear-gradient(160deg, #0a192f 0%, #11253e 50%, #152a49 100%);
    color: #fcfdff;
    padding: 3rem 2rem 0;
    
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.4), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    overflow-x: hidden;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    filter: drop-shadow(0 4px 12px rgba(243, 156, 18, 0.3));
    transform: scale(1.02);
}

.footer-description {
    color: rgba(218, 220, 224, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-family: 'Bai Jamjuree', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-description:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-social {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(242, 244, 254, 0.7);
    transition: all 0.25s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::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.4s ease;
}

.footer-social a:hover::before {
    left: 100%;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-color: transparent;
    color: #0a192f;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.35);
}

.footer-title {
    color: #f7f9ff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    transition: color 0.2s ease;
}

.footer-title:hover {
    color: #f39c12;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #f39c12, rgba(243, 156, 18, 0));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-title:hover::after {
    width: 56px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.35rem;
}

.footer-links li a {
    color: rgba(228, 228, 231, 0.75);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-family: 'Gabarito', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: #f39c12;
    transition: width 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #f39c12;
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    width: 8px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.3rem;
    color: rgba(223, 226, 233, 0.8);
    font-size: 0.85rem;
    font-family: 'Bai Jamjuree', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-weight: 500;
    transition: all 0.25s ease;
    padding: 5px 0;
    border-radius: 8px;
}

.footer-contact-list li:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    background: rgba(243, 156, 18, 0.08);
}

.footer-contact-list li span {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.footer-contact-list li i {
    color: #f39c12;
    margin-top: 0.2rem;
    width: 16px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.footer-contact-list li:hover i {
    transform: scale(1.15);
    color: #e67e22;
}

.subscribe-text {
    color: rgba(230, 231, 238, 0.8);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-family: 'Bai Jamjuree', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.subscribe-text:hover {
    color: rgba(255, 255, 255, 0.95);
}

.subscribe-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.subscribe-form input {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    outline: none;
}

.subscribe-form input:hover {
    background: rgba(255, 255, 255, 0.07);
}

.subscribe-form input:focus {
    border-color: rgba(243, 156, 18, 0.5);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.08);
    transform: scale(1.01);
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}

.subscribe-form input:hover::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    font-size: 0.88rem;
   
    box-shadow: 0 2px 12px rgba(243, 156, 18, 0.25);
    position: relative;
    overflow: hidden;
    
}

.subscribe-form button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.subscribe-form button:hover::after {
    opacity: 1;
}

.subscribe-form button:hover {
    box-shadow: 0 4px 18px rgba(243, 156, 18, 0.4);
    transform: translateY(-2px) scale(1.01);
}

.subscribe-form button:active {
    transform: translateY(0);
}

.form-note {
    color: rgba(136, 136, 136, 0.7);
    font-size: 0.7rem;
    margin-top: 0.8rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s ease;
}

.form-note:hover {
    color: rgba(136, 136, 136, 0.9);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    transition: border-color 0.3s ease;
}

.footer-bottom:hover {
    border-top-color: rgba(243, 156, 18, 0.15);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.footer-bottom-container p {
    color: rgba(136, 136, 136, 0.7);
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: all 0.25s ease;
}

.footer-bottom-container p:hover {
    color: rgba(243, 156, 18, 0.7);
    letter-spacing: 0.3px;
}

/* Mobile Responsive - 2 columns on mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .site-footer {
        padding: 2rem 1rem 0;
    }

    .footer-col-about {
        grid-column: span 2;
    }

    .footer-col-subscribe {
        grid-column: span 2;
    }

    .footer-bottom-container p {
        font-size: 0.7rem;
    }

    .footer-contact-list li span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 1rem;
    }


    .footer-contact-list li {

    margin-bottom: 0.38rem;

}
}



/* ====BACK TO THE TOP AND WHATSAPP BUTTON==== */

/* ── Floating WhatsApp Button ── */

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow:
        0 4px 15px rgba(37, 211, 102, 0.35),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wa-pulse 2.8s ease-out infinite;
}

/* Tooltip label */
.float-whatsapp::before {
    content: 'Chat with us';
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #0a192f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* Tooltip arrow */
.float-whatsapp::after {
    content: '';
    position: absolute;
    right: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    border: 5px solid transparent;
    border-left-color: #0a192f;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.float-whatsapp:hover::before,
.float-whatsapp:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.float-whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow:
        0 10px 28px rgba(37, 211, 102, 0.5),
        0 0 0 8px rgba(37, 211, 102, 0.08);
    animation: none;
}

/* Ripple pulse */
@keyframes wa-pulse {
    0%   { box-shadow: 0 4px 15px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.35); }
    60%  { box-shadow: 0 4px 15px rgba(37,211,102,0.35), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0); }
}


/* ── Back to Top Button ── */

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a192f, #0d2240);
    border: 1.5px solid rgba(243, 156, 18, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    outline: none;
}

/* Progress ring */
.back-to-top svg {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    transform: rotate(-90deg);
    pointer-events: none;
}

.back-to-top svg circle {
    fill: none;
    stroke: #f39c12;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 175;
    stroke-dashoffset: 175;
    transition: stroke-dashoffset 0.1s linear;
    opacity: 0.7;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Tooltip label */
.back-to-top::before {
    content: 'Back to top';
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    background: #0a192f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* Tooltip arrow */
.back-to-top::after {
    content: '';
    position: absolute;
    left: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    border: 5px solid transparent;
    border-right-color: #0a192f;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top:hover::before,
.back-to-top:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(243, 156, 18, 0.4);
}

.back-to-top:active {
    transform: scale(0.95);
}


/* ── Mobile Responsive ── */

@media (max-width: 768px) {
    .float-whatsapp {
        bottom: 20px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 1.45rem;
    }

    .back-to-top {
        bottom: 20px;
        left: 15px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .float-whatsapp::before,
    .float-whatsapp::after,
    .back-to-top::before,
    .back-to-top::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .float-whatsapp {
        bottom: 15px;
        right: 10px;
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }

    .back-to-top {
        bottom: 15px;
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}



/* ===CUSTOM SCROLLBAR=== */

/* Custom Scrollbar Styles */

/* For Webkit browsers (Chrome, Safari, Edge, Opera) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a192f;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #f39c12 #0a192f;
}




/* ======PAGE HEADER===== */

/* Page Header Component */
.page-header {
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #14243f 0%, #0d2240 50%, #0f2b50 100%);
    overflow: hidden;
    margin-top: -17px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><circle cx="100" cy="100" r="4" fill="rgba(243,156,18,0.06)"/><circle cx="300" cy="200" r="3" fill="rgba(243,156,18,0.05)"/><circle cx="500" cy="150" r="5" fill="rgba(243,156,18,0.04)"/><circle cx="700" cy="300" r="3" fill="rgba(243,156,18,0.06)"/><circle cx="200" cy="500" r="4" fill="rgba(243,156,18,0.05)"/><circle cx="600" cy="600" r="3" fill="rgba(243,156,18,0.04)"/><circle cx="400" cy="700" r="5" fill="rgba(243,156,18,0.03)"/><circle cx="150" cy="350" r="2" fill="rgba(243,156,18,0.07)"/><circle cx="650" cy="450" r="2" fill="rgba(243,156,18,0.06)"/></svg>');
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none;
}

.page-header-shape {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 224, 212, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header-shape::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 253, 248, 0.05), transparent 70%);
    border-radius: 50%;
}

.page-header-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header-content {
    max-width: 800px;
}

.page-header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.page-header-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.page-header-breadcrumb a:hover {
    color: #f39c12;
}

.page-header-breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

.page-header-breadcrumb .current-page {
    color: #f39c12;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.page-header-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dee0ec;
    margin-bottom: 0.1rem;
   font-family: 'Gabarito', sans-serif;
    line-height: 1.2;
}

.page-header-title span {
    background: linear-gradient(135deg, #dfdfe3, #cfd1dd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}



.page-header-description {
    color: rgba(183, 188, 209, 0.825);
    font-size: 1.05rem;
    line-height: 1.5;
    font-family: 'Bai Jamjuree', sans-serif;
    max-width: 600px;
    margin-top: -1px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .page-header {
        padding: 3rem 1.5rem;
    }
    
    .page-header-title {
        font-size: 2.5rem;
    }
    
    .page-header-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 2rem 1rem;
    }
    
    .page-header-title {
        font-size: 1.2rem;
    }
    
    .page-header-breadcrumb a,
    .page-header-breadcrumb .current-page {
        font-size: 0.75rem;
    }
    
    .page-header-description {
        font-size: 0.85rem;
    }
}