﻿/* ========================================
   ROOT VARIABLES
======================================== */
:root {
    --primary-color: #1a3a5f;
    --primary-dark: #0d1b2a;
    --accent-color: #00a8ff;
    --accent-hover: #0090d9;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --navbar-current-height: 63px;
    --mobile-menu-height: calc(100dvh - var(--navbar-current-height));
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--navbar-current-height) + 20px);
}

body {
    margin: 0;
    padding: 0;
    padding-top: var(--navbar-current-height);
    font-family: 'Poppins', sans-serif;
    background-color: #EAF4FE;
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

    /* ========================================
   BACKGROUND ANIMATION
======================================== */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        background: radial-gradient(circle at 10% 20%, rgba(26, 58, 95, 0.04) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(0, 168, 255, 0.04) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(26, 58, 95, 0.02) 0%, transparent 70%);
        pointer-events: none;
        animation: bgFloat 25s ease-in-out infinite alternate;
    }

@keyframes bgFloat {
    0% {
        transform: scale(1) rotate(0deg);
    }

    33% {
        transform: scale(1.05) rotate(0.5deg);
    }

    66% {
        transform: scale(0.95) rotate(-0.5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Floating particles */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat linear infinite;
}

    .particle:nth-child(1) {
        width: 40px;
        height: 40px;
        background: radial-gradient(circle, rgba(0, 168, 255, 0.1), transparent);
        left: 10%;
        animation-duration: 25s;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        width: 60px;
        height: 60px;
        background: radial-gradient(circle, rgba(26, 58, 95, 0.08), transparent);
        right: 15%;
        animation-duration: 30s;
        animation-delay: 3s;
        top: 20%;
    }

    .particle:nth-child(3) {
        width: 30px;
        height: 30px;
        background: radial-gradient(circle, rgba(0, 168, 255, 0.06), transparent);
        left: 50%;
        animation-duration: 20s;
        animation-delay: 6s;
        top: 60%;
    }

    .particle:nth-child(4) {
        width: 50px;
        height: 50px;
        background: radial-gradient(circle, rgba(26, 58, 95, 0.05), transparent);
        right: 30%;
        animation-duration: 28s;
        animation-delay: 2s;
        top: 80%;
    }

    .particle:nth-child(5) {
        width: 25px;
        height: 25px;
        background: radial-gradient(circle, rgba(0, 168, 255, 0.08), transparent);
        left: 20%;
        animation-duration: 22s;
        animation-delay: 8s;
        top: 40%;
    }

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }

    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.3;
    }

    50% {
        transform: translate(-20px, -100px) scale(0.8);
        opacity: 0.15;
    }

    75% {
        transform: translate(40px, -70px) scale(1.1);
        opacity: 0.25;
    }

    100% {
        transform: translate(-10px, -120px) scale(1);
        opacity: 0.15;
    }
}

/* ========================================
   MAIN WRAPPER
======================================== */
#main-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: calc(100dvh - var(--navbar-current-height));
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    min-height: 63px;
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

    .navbar.scrolled {
        padding: 0.3rem 0;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
        padding-left: 5px;
        padding-right: 5px;
    }

.navbar-brand-with-logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color) !important;
    flex-shrink: 0;
}

.navbar-logo {
    display: block;
    max-width: 237px;
    height: 46px;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 40px;
}

.navbar-toggler {
    border: 1.5px solid var(--primary-color);
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-left: 4px;
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .navbar-toggler:active {
        transform: scale(0.95);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(23, 106, 200, 0.2);
        outline: none;
    }

.navbar-toggler-icon {
    width: 1.4rem;
    height: 1.4rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 58, 95, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   SEARCH - DESKTOP (Centered in remaining space)
======================================== */
.searchdata {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    max-width: 440px;
    margin: 0 16px;
}

#searchInput {
    width: 100%;
    height: 38px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 20px;
    padding: 6px 16px 6px 40px;
    border-radius: 50px;
    border: 1.5px solid #e0e6ed;
    background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239aa6b5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E") no-repeat 14px center;
    transition: all 0.25s ease;
}

    #searchInput:focus {
        outline: none;
        border-color: #3074bc;
        background-color: #ffffff;
        box-shadow: 0 0 0 3px rgba(48, 116, 188, 0.1);
    }

    #searchInput::placeholder {
        color: #9aa6b5;
        font-size: 13px;
        font-weight: 400;
    }

.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: fit-content;
    max-height: 380px !important;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    display: none;
    z-index: 9999;
    padding: 6px 0;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.15s ease-in-out;
}

    .search-dropdown::-webkit-scrollbar {
        width: 5px;
    }

    .search-dropdown::-webkit-scrollbar-track {
        background: transparent;
    }

    .search-dropdown::-webkit-scrollbar-thumb {
        background: #d0d7e2;
        border-radius: 10px;
    }

        .search-dropdown::-webkit-scrollbar-thumb:hover {
            background: #b0bac8;
        }

    .search-dropdown li {
        padding: 10px 16px;
        margin: 0;
        cursor: pointer;
        font-size: 14px;
        color: #1a2a3a;
        white-space: nowrap;
        transition: all 0.15s ease;
        list-style: none;
        border-bottom: 1px solid #f5f6f8;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .search-dropdown li:last-child {
            border-bottom: none;
        }

        .search-dropdown li:hover,
        .search-dropdown li.active {
            background-color: #f0f5ff;
        }

        .search-dropdown li strong {
            color: #1a3a5f;
            font-weight: 600;
        }

        .search-dropdown li .text-muted {
            color: #8899aa;
            font-size: 12px;
            margin-left: 6px;
        }

        .search-dropdown li.text-muted {
            color: #8899aa;
            cursor: default;
            text-align: center;
            font-size: 13px;
            padding: 16px;
            border-bottom: none;
            justify-content: center;
        }

        .search-dropdown li.text-danger {
            color: #dc3545;
            cursor: default;
            text-align: center;
            font-size: 13px;
            padding: 16px;
            border-bottom: none;
            justify-content: center;
        }

/* ========================================
   SEARCH - MOBILE (Inside sidebar)
======================================== */
.searchdata-mobile {
    position: relative;
    display: none;
    width: 100%;
    padding: 0 0 16px 0;
    border-bottom: 1px solid #e8ecf2;
    margin-bottom: 12px;
}

#searchInputMobile {
    width: 100%;
    height: 44px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 20px;
    padding: 8px 16px 8px 44px;
    border-radius: 10px;
    border: 1.5px solid #e0e6ed;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%239aa6b5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E") no-repeat 16px center;
    transition: all 0.25s ease;
}

    #searchInputMobile:focus {
        outline: none;
        border-color: #3074bc;
        background-color: #ffffff;
        box-shadow: 0 0 0 3px rgba(48, 116, 188, 0.1);
    }

    #searchInputMobile::placeholder {
        color: #9aa6b5;
        font-size: 14px;
        font-weight: 400;
    }

.search-dropdown-mobile {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: 300px !important;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    display: none;
    z-index: 9999;
    padding: 6px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.15s ease-in-out;
}

    .search-dropdown-mobile::-webkit-scrollbar {
        width: 5px;
    }

    .search-dropdown-mobile::-webkit-scrollbar-track {
        background: transparent;
    }

    .search-dropdown-mobile::-webkit-scrollbar-thumb {
        background: #d0d7e2;
        border-radius: 10px;
    }

        .search-dropdown-mobile::-webkit-scrollbar-thumb:hover {
            background: #b0bac8;
        }

    .search-dropdown-mobile li {
        padding: 12px 16px;
        margin: 0;
        cursor: pointer;
        font-size: 14px;
        color: #1a2a3a;
        white-space: nowrap;
        transition: all 0.15s ease;
        list-style: none;
        border-bottom: 1px solid #f5f6f8;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .search-dropdown-mobile li:last-child {
            border-bottom: none;
        }

        .search-dropdown-mobile li:hover,
        .search-dropdown-mobile li.active {
            background-color: #f0f5ff;
        }

        .search-dropdown-mobile li strong {
            color: #1a3a5f;
            font-weight: 600;
        }

        .search-dropdown-mobile li .text-muted {
            color: #8899aa;
            font-size: 12px;
            margin-left: 6px;
        }

        .search-dropdown-mobile li.text-muted {
            color: #8899aa;
            cursor: default;
            text-align: center;
            font-size: 13px;
            padding: 16px;
            border-bottom: none;
            justify-content: center;
        }

        .search-dropdown-mobile li.text-danger {
            color: #dc3545;
            cursor: default;
            text-align: center;
            font-size: 13px;
            padding: 16px;
            border-bottom: none;
            justify-content: center;
        }

/* ========================================
   NAVBAR COLLAPSE - DESKTOP
======================================== */
.navbar-collapse {
    flex: 0 1 auto;
}

.navbar-nav {
    align-items: center;
    gap: 4px;
}

/* ========================================
   PAGE TRANSITIONS
======================================== */
.page-transition {
    opacity: 1;
    animation: pageFadeIn 0.35s ease forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   PROGRESS BAR
======================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #3074bc, #00a8ff);
    transform-origin: 0 50%;
    transform: scaleX(0);
    animation: grow-progress linear;
    animation-timeline: scroll();
    z-index: 9999;
}

@keyframes grow-progress {
    to {
        transform: scaleX(1);
    }
}

@media(prefers-reduced-motion: reduce) {
    .progress-bar {
        animation: none;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer-dark {
    background-color: #F3F4F5 !important;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

    .footer-dark h5 {
        font-size: 1.05rem;
        color: var(--primary-color) !important;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-links a {
        color: var(--text-light);
        font-size: 0.9rem;
        transition: color 0.2s ease, padding 0.2s ease;
    }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 4px;
        }

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: rgba(26, 58, 95, 0.05);
        color: var(--primary-color);
        transition: all 0.2s ease;
    }

        .social-icons a:hover {
            color: #ffffff !important;
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }

.store-badge {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

    .store-badge:hover {
        transform: scale(1.04);
        opacity: 0.9;
    }

@media (max-width: 767.98px) {
    .footer-dark {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .footer-dark h5 {
            margin-bottom: 1rem !important;
        }

    .footer-links a {
        font-size: 0.82rem;
    }

    .store-badge {
        height: 42px;
    }
}

@media (max-width: 575.98px) {
    .store-badge {
        height: 38px;
    }

    .footer-dark .text-justify {
        text-align: left !important;
    }
}

.text-justify {
    text-align: justify !important;
}

/* ========================================
   SCROLLBAR
======================================== */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #176ac8;
    border-radius: 10px;
    transition: background 0.3s ease;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #0e56a7;
    }

* {
    scrollbar-width: thin;
    scrollbar-color: #176ac8 #f1f5f9;
}

@media (max-width: 767.98px) {
    ::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }
}

/* ========================================
   UTILITY
======================================== */
.seo-hidden-content {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

body.no-scroll {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

.tools-track::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.tools-track::-webkit-scrollbar-track {
    background: transparent;
}

.tools-track::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

    .tools-track::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

/* ========================================
   BUTTONS
======================================== */
.btn-sliding-bg, .btn-sliding-warning,
.btn-sliding-danger, .btn-sliding-success, .btn-sliding-mute {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none !important;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-sliding-bg-rounded {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none !important;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    text-wrap: nowrap;
}

    .btn-sliding-bg-rounded:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

.btn-sliding-bg, .btn-sliding-bg-rounded {
    background: linear-gradient(-90deg, #3074bc 0%, #205a97 100%);
    color: #fff;
}

.btn-sliding-warning {
    background: linear-gradient(-90deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
}

.btn-sliding-danger {
    background: linear-gradient(-90deg, #d9534f 0%, #c9302c 100%);
    color: #fff;
}

.btn-sliding-success {
    background: linear-gradient(-90deg, #5cb85c 0%, #449d44 100%);
    color: #fff;
}

.btn-sliding-mute {
    background: #f8f9fa;
    border: 1px solid #d6d9de;
    color: #495057;
}

    .btn-sliding-bg::before, .btn-sliding-warning::before, .btn-sliding-bg-rounded::before,
    .btn-sliding-danger::before, .btn-sliding-success::before, .btn-sliding-mute::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        transform: translateX(-100%);
        transition: transform .45s ease-in-out;
    }

.btn-sliding-bg::before, .btn-sliding-bg-rounded::before {
    background: #1a3a5f;
}

.btn-sliding-warning::before {
    background: #cc9a06;
}

.btn-sliding-danger::before {
    background: #a52825;
}

.btn-sliding-success::before {
    background: #2b6e2b;
}

.btn-sliding-mute::before {
    background: #6c757d;
}

.btn-sliding-bg:hover::before, .btn-sliding-warning:hover::before,
.btn-sliding-danger:hover::before, .btn-sliding-success:hover::before,
.btn-sliding-mute:hover::before, .btn-sliding-bg-rounded:hover::before {
    transform: translateX(0);
}

.btn-sliding-bg:hover, .btn-sliding-warning:hover, .btn-sliding-danger:hover,
.btn-sliding-success:hover, .btn-sliding-mute:hover, .btn-sliding-bg-rounded:hover {
    color: #fff !important;
    transform: scale(1.05);
}

.btn-sliding-danger:hover {
    box-shadow: 0 4px 12px rgba(217, 83, 79, .25);
}

.btn-sliding-success:hover {
    box-shadow: 0 4px 12px rgba(92, 184, 92, .25);
}

.btn-sliding-warning:hover {
    box-shadow: 0 4px 12px rgba(255, 193, 7, .25);
}

.btn-sliding-bg:hover, .btn-sliding-bg-rounded:hover {
    box-shadow: 0 4px 12px rgba(32, 90, 151, .25);
}

.btn-sliding-mute:hover {
    box-shadow: 0 4px 12px rgba(108, 117, 125, .20);
}

.btndelete {
    border: 1px solid #dc3545;
    color: #dc3545;
    background-color: transparent;
    transition: all 0.3s ease;
}

    .btndelete:hover {
        background-color: #FAD2D1 !important;
        color: #a71d2a !important;
        border-color: #dc3545 !important;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

/* ========================================
   FORMS
======================================== */
.form-floating-custom {
    position: relative;
    margin-bottom: 22px;
}

    .form-floating-custom .form-control {
        width: 100%;
        height: 3rem;
        padding: 0.5rem 1.2rem 0.4rem 1.2rem;
        border: 2px solid #e6edf6;
        border-radius: 14px;
        background: #fafcff;
        color: #142b40;
        font-size: 1rem;
        transition: all 0.25s ease;
    }

        .form-floating-custom .form-control:focus {
            border-color: #1f5a8a;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(31, 90, 138, 0.08);
            outline: none;
        }

    .form-floating-custom label {
        position: absolute;
        top: 50%;
        left: 1.2rem;
        z-index: 2;
        padding: 0 4px;
        background: transparent;
        color: #889bb0;
        font-size: 0.95rem;
        font-weight: 500;
        pointer-events: none;
        transform: translateY(-50%);
        transition: all 0.2s ease;
    }

    .form-floating-custom .form-control:focus + label,
    .form-floating-custom .form-control:not(:placeholder-shown) + label {
        top: 0;
        background: #ffffff;
        color: #1f5a8a;
        font-size: 0.72rem;
        font-weight: 600;
        transform: translateY(-50%);
    }

    .form-floating-custom .form-control.is-invalid {
        border-color: #dc3545;
        background-image: none;
    }

        .form-floating-custom .form-control.is-invalid:focus {
            box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
        }

    .form-floating-custom .form-control.is-valid {
        border-color: #198754;
        background-image: none;
    }

        .form-floating-custom .form-control.is-valid:focus {
            box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.08);
        }

/* ========================================
   RIGHT STRIP (Contact buttons)
======================================== */
.right-strip-container {
    position: fixed;
    bottom: 20px;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.right-strip {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.strip-item {
    background: #3074BC;
    border: none;
    color: #fff;
    padding: 12px 20px 12px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px 0 0 50px;
    font-weight: 600;
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    transform: translateX(calc(100% - 52px));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

@media (hover: hover) and (pointer: fine) {
    .strip-item:hover {
        transform: translateX(0);
        padding-right: 28px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    }
}

.strip-item:focus-visible {
    outline: 3px solid #ffbf47;
    outline-offset: 2px;
    transform: translateX(0);
}

.strip-item.whatsapp {
    background: #25D366;
}

    .strip-item.whatsapp:hover {
        color: white !important;
    }

.strip-item.call {
    background: #28a745;
}

    .strip-item.call:hover {
        color: white !important;
    }

.strip-item svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .right-strip {
        gap: 8px;
    }

    .strip-item {
        transform: translateX(0);
        border-radius: 50px;
        padding: 10px 18px;
        backdrop-filter: blur(4px);
        background: rgba(48, 116, 188, 0.95);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }

        .strip-item.whatsapp {
            background: rgba(37, 211, 102, 0.95);
        }

        .strip-item.call {
            background: rgba(40, 167, 69, 0.95);
        }

        .strip-item:active {
            transform: scale(0.96);
            transition: 0.05s;
        }

    .strip-close {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        border: none;
        border-radius: 50px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-bottom: 4px;
        align-self: flex-end;
        transition: all 0.2s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

        .strip-close svg {
            width: 18px;
            height: 18px;
            stroke: white;
            stroke-width: 2;
        }

        .strip-close:active {
            transform: scale(0.9);
            background: rgba(0, 0, 0, 0.8);
        }

    .reopen-strip-btn {
        background: #3074BC;
        border: none;
        border-radius: 50px;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        transition: all 0.2s ease;
        margin-top: 4px;
    }

        .reopen-strip-btn:active {
            transform: scale(0.92);
            background: #1f5a96;
        }

        .reopen-strip-btn svg {
            width: 28px;
            height: 28px;
            stroke: white;
            stroke-width: 1.5;
        }
}

@media (min-width: 769px) {
    .strip-close {
        display: none;
    }

    .reopen-strip-btn {
        display: none !important;
    }
}

/* ========================================
   FUND STATS
======================================== */
.fundstats {
    list-style: none;
    margin: 40px 0px 0px 0px;
    padding: 40px 0px 0px 0px;
    border-top: 1px solid #efeeee;
}

.fundstats ul {
    list-style: none !important;
    margin: 0px;
    padding: 0px 0px 0px 0px;
}

.fundstats ul li a{
    font-size: 14px !important;
    line-height: 2;
    list-style: none;
    margin: 0px 0px 15px 0px;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
}

    .fundstats ul li span {
        font-weight: 400;
        font-size: 20px;
    }

.devider {
    padding: 0px 2px;
    color: #d4d4d4;
}

.fundstats ul li a:hover {
    color: #1066c7 !important;
}

.faqouter2iner {
    padding-top: 60px;
    padding-bottom: 20px;
    background: url(/assets/images/faq-linebg.jpg) right top no-repeat;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
======================================== */
@media (max-width: 1024px) {
    .navbar-logo {
        height: 38px;
    }

    .navbar.scrolled .navbar-logo {
        height: 34px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.35rem 0;
        min-height: 58px;
    }

    .navbar .container {
        gap: 8px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .navbar-logo {
        height: 38px;
    }

    .navbar.scrolled .navbar-logo {
        height: 34px;
    }

    .searchdata {
        display: none !important;
    }

    .searchdata-mobile {
        display: block !important;
    }

    .navbar-toggler {
        order: 2;
        flex-shrink: 0;
    }

    .navbar-collapse {
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: none !important;
        height: calc(100dvh - 58px);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 16px 16px 30px;
        background: rgba(248, 250, 252, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        margin: 0;
        border-radius: 0;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        display: block !important;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        order: 3;
        flex: 1 1 100%;
    }

        .navbar-collapse.show {
            transform: translateX(0);
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

    .navbar-nav {
        width: 100%;
        align-items: stretch;
        padding: 0;
        gap: 4px;
        flex-direction: column;
    }

    .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        width: 100%;
        padding: 5px 5px !important;
        font-size: 15px;
        font-weight: 500;
        color: #1a1a2e !important;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: all 0.2s ease;
        touch-action: manipulation;
        min-height: 50px;
        background: transparent;
        border: none;
        cursor: pointer;
        text-wrap: nowrap;
    }

        .nav-link i {
            font-size: 18px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
            color: var(--primary-color);
        }

        .nav-link:hover,
        .nav-link:focus {
            background: #ffffff;
            color: var(--primary-color) !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .nav-link:active {
            transform: scale(0.98);
        }

        .nav-link.active {
            background: #ffffff;
            color: var(--primary-color) !important;
            font-weight: 600;
            box-shadow: 0 2px 12px rgba(23, 106, 200, 0.08);
            border-left: 3px solid var(--primary-color);
        }

    .nav-item.dropdown .nav-link.dropdown-toggle {
        justify-content: space-between;
        position: relative;
    }

        .nav-item.dropdown .nav-link.dropdown-toggle::after {
            display: flex !important;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            border: none;
            content: "›";
            font-size: 22px;
            font-weight: 400;
            line-height: 0;
            width: 22px;
            height: 22px;
            padding: 0;
            position: relative;
            top: 1px;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
            opacity: 0.6;
            flex-shrink: 0;
        }

    .nav-item.dropdown.show .nav-link.dropdown-toggle::after {
        transform: rotate(90deg);
        opacity: 1;
    }

    .navbar-collapse .dropdown-menu,
    .navbar-collapse .mega-dropdown {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 4px 0 8px 0 !important;
        padding: 8px !important;
        border: 1px solid #e8ecf2;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        background: #ffffff;
        transform: none !important;
        overflow: hidden;
        display: none;
    }

    .navbar-collapse .dropdown.show .dropdown-menu,
    .navbar-collapse .dropdown.show .mega-dropdown {
        display: block;
        animation: mobileSlideDown 0.25s ease;
    }

    @keyframes mobileSlideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-item {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
        min-height: 48px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #2d3748;
        transition: all 0.15s ease;
        touch-action: manipulation;
    }

        .dropdown-item:active {
            background: #f0f4ff;
            transform: scale(0.98);
        }

        .dropdown-item i {
            font-size: 16px;
            width: 20px;
            text-align: center;
            color: var(--primary-color);
        }

    .navbar-collapse .mega-dropdown {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        overflow: hidden;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 12px !important;
        padding: 12px !important;
        margin: 4px 0 8px 0 !important;
    }

        .navbar-collapse .mega-dropdown::before {
            display: none;
        }

        .mega-dropdown .row {
            margin: 0 !important;
            gap: 8px;
        }

        .mega-dropdown .col-md-4 {
            width: 100%;
            margin-bottom: 4px;
            padding: 0 !important;
        }

            .mega-dropdown .col-md-4:last-child {
                margin-bottom: 0;
            }

        .mega-dropdown .p-2 {
            padding: 10px 12px !important;
            border-radius: 10px;
            transition: background-color 0.15s ease;
        }

            .mega-dropdown .p-2:active {
                background: #f0f4ff;
            }

        .mega-dropdown .fw-semibold {
            font-size: 14px;
            display: block;
            margin-bottom: 2px;
            color: var(--primary-color);
            font-weight: 600;
        }

        .mega-dropdown .text-muted.small {
            font-size: 12px !important;
            color: #667085 !important;
        }

    .navbar .d-none.d-md-block {
        display: none !important;
    }

    .navbar-collapse .close-menu-area {
        display: block;
        text-align: center;
        padding: 12px 0 6px;
        margin-top: 8px;
        border-top: 1px solid #e8ecf2;
        color: #667085;
        font-size: 13px;
        touch-action: manipulation;
        cursor: pointer;
    }

        .navbar-collapse .close-menu-area:active {
            opacity: 0.6;
        }
}

@media (max-width: 575.98px) {
    .navbar {
        min-height: 54px;
        padding: 0.25rem 0;
    }

        .navbar .container {
            gap: 4px;
            padding-left: 8px;
            padding-right: 8px;
        }

    .navbar-logo {
        height: 34px;
    }

    .navbar.scrolled .navbar-logo {
        height: 30px;
    }

    .navbar-collapse {
        top: 54px;
        height: calc(100dvh - 54px);
        padding: 12px 12px 20px;
    }

    .navbar-toggler {
        padding: 0.5rem 0.6rem;
        min-width: 44px;
        min-height: 44px;
    }

    .navbar-toggler-icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .nav-link {
        padding: 12px 14px !important;
        font-size: 14px;
        min-height: 46px;
        gap: 10px;
    }

        .nav-link i {
            font-size: 16px;
            width: 20px;
        }

    .dropdown-item {
        padding: 10px 12px;
        font-size: 13px;
        min-height: 42px;
    }

    .btn-login {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 46px;
        border-radius: 10px;
    }

    .mega-dropdown .fw-semibold {
        font-size: 13px;
    }

    .mega-dropdown .text-muted.small {
        font-size: 11px !important;
    }

    .mega-dropdown .p-2 {
        padding: 8px 10px !important;
    }

    /* Mobile search input */
    #searchInputMobile {
        height: 40px;
        font-size: 14px;
        padding: 6px 12px 6px 40px;
        background-position: 14px center;
        border-radius: 8px;
    }

    .search-dropdown-mobile {
        max-height: 240px !important;
        border-radius: 8px;
    }

        .search-dropdown-mobile li {
            padding: 10px 12px;
            font-size: 13px;
        }
}

@media (min-width: 992px) {
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .searchdata {
        flex: 1 1 auto;
        max-width: 440px;
        margin: 0 20px;
    }

    .navbar-brand-with-logo {
        flex: 0 0 auto;
    }

    .navbar-collapse {
        flex: 0 0 auto;
    }

        .navbar-collapse .close-menu-area {
            display: none !important;
        }

    .navbar-nav {
        align-items: center;
    }

    .nav-link {
        padding: 0.5rem 0.9rem !important;
        font-size: 15px;
        font-weight: 500;
        border-radius: 6px;
        color: #1a1a1a !important;
        transition: all 0.2s ease;
        text-wrap: nowrap;
    }

        .nav-link:hover,
        .nav-link:focus {
            color: var(--primary-color) !important;
            background-color: rgba(26, 58, 95, 0.04);
        }

        .nav-link.active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

    .dropdown-hover {
        position: static;
    }

        .dropdown-hover .dropdown-menu {
            display: block;
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            transform: translateY(8px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
            margin-top: 0.5rem;
        }

        .dropdown-hover:hover .dropdown-menu,
        .dropdown-hover.show .dropdown-menu {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

    .navbar-nav .dropdown-toggle::after {
        display: none !important;
    }

    .mega-dropdown {
        position: absolute !important;
        left: 50% !important;
        width: 100vw !important;
        max-width: 100vw !important;
        transform: translateX(-50%) translateY(8px) !important;
        overflow: visible;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .dropdown-hover:hover .mega-dropdown {
        transform: translateX(-50%) translateY(0) !important;
    }

    .mega-dropdown {
        max-width: 1320px;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

        .mega-dropdown::before {
            content: "";
            position: absolute;
            top: -12px;
            left: 0;
            right: 0;
            height: 12px;
        }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Remove underline from nav and dropdown links */
.navbar .nav-link,
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link:active,
.navbar .dropdown-item,
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:active,
.mega-dropdown a,
.mega-dropdown a:hover,
.mega-dropdown a:focus,
.mega-dropdown a:active {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none;
}
.mega-dropdown .fw-semibold,
.mega-dropdown .fw-semibold:hover,
.mega-dropdown .fw-semibold:focus {
    text-decoration: none !important;
    border-bottom: none !important;
}
.navbar a,
.navbar a:visited,
.navbar a:hover,
.navbar a:focus,
.navbar a:active {
    text-decoration: none !important;
}

@media(min-width: 1199px){
    .container{
        max-width:1185px !important;
    }
}