@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root
{
    --poppins: "Poppins", sans-serif;
}

::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track
{
    background: #ffffff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb
{
    background: #f44b1e !important;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover
{
    background: #f44b1e !important;
}

body
{
    margin-top: 70px;
    font-family: var(--poppins);
    font-style: normal;
}

.poppins
{
    font-family: var(--poppins);
    font-weight: 100;
    font-style: normal;
}

.primary-color
{
    color: var(--primary-color);
}

.secondary-color
{
    color: var(--secondary-color);
}

.tertiary-color
{
    color: var(--tertiary-color);
}

.quaternary-color
{
    color: var(--quaternary-color);
}

.bg-primary
{
    background-color: var(--primary-color) !important;
}

.bg-secondary
{
    background-color: var(--secondary-color) !important;
}

.bg-tertiary
{
    background-color: var(--tertiary-color) !important;
}

.bg-quaternary
{
    background-color: var(--quaternary-color) !important;
}

.fs-sm
{
    font-size: small;
}

.ts-justify
{
    text-align: justify;
}

.box-shadow
{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.line-clamp
{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: var(--lines, 2);
}


/* Header */
header .nav-link
{
    color: #2d3641 !important;
}

header .nav-link:hover,
header .nav-link.active,
header .nav-link:focus
{
    color: var(--secondary-color) !important;
}


header .dropdown:hover .dropdown-menu
{
    display: block;
}

.search-modal .form-control
{
    border: 2px solid var(--primary-color);
    padding: 1rem;
    font-size: 1.2rem;
}

.search-modal input[type="text"]:focus
{
    box-shadow: none;
}

.search-modal .btn-close
{
    margin-top: 2px;
}

.search-result-item
{
    transition: all 0.2s;
}

.search-result-item:hover
{
    background-color: #f8f9fa;
}

.search-result-item::after
{
    content: '>';
    font-size: 30px;
    margin-right: 10px;
    margin-left: 5px;
    opacity: 0;
    position: absolute;
    right: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
}

.search-result-item:hover::after
{
    opacity: 1;
    transform: translateX(0);
}

.search-result-item img
{
    width: auto;
    height: 40px;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 4px;
}

.no-results
{
    padding: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

/* Footer */
footer
{
    background-color: var(--primary-color) !important;
    color: white;
}

footer .list-group-item
{
    background-color: transparent !important;
    border: none;
    color: white;
    font-weight: 400;
    line-height: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .5s ease;
}

footer .list-group-item:hover
{
    color: var(--secondary-color) !important;
    margin-left: 7px;
}


.floating-call-box
{
    background-color: #ffffff;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.floating-call-box .call-label
{
    background-color: var(--tertiary-color);
    color: black;
    font-size: 14px;
    padding: 4px 8px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.floating-call-box .call-number a
{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color) !important;
}


.floating-wrapper
{
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.floating-wrapper .floating-btn
{
    z-index: 10;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.floating-wrapper .floating-btn:hover
{
    box-shadow: 0 15px 30px rgba(16, 1, 36, 0.4);
}

.floating-wrapper::before
{
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.2;
    z-index: -1;
    animation: pulse 2s infinite ease-out;
}

.floating-wrapper::after
{
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.15;
    z-index: -2;
    animation: pulse 2s infinite 0.5s ease-out;
}

@keyframes pulse
{
    0%
    {
        transform: scale(0.8);
        opacity: 0.4;
    }

    50%
    {
        opacity: 0.2;
    }

    100%
    {
        transform: scale(1.4);
        opacity: 0;
    }
}

.floating-wrapper .floating-btn:active
{
    transform: scale(0.95);
}

.floating-wrapper .floating-btn i
{
    transition: all 0.4s ease-in-out;
}

.floating-wrapper .floating-btn.open
{
    transform: rotate(360deg);
}

.floating-wrapper .floating-btn.open i
{
    transform: rotate(-360deg);
}

.floating-wrapper .floating-item
{
    width: 45px;
    height: 45px;
    transform: scale(0) translateY(0);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    z-index: 5;
}

.floating-wrapper .floating-item.messenger
{
    background: #0084ff;
}

.floating-wrapper .floating-item.whatsapp
{
    background: #25d366;
}

.floating-wrapper .floating-item.telegram
{
    background: #0088cc;
}

.floating-wrapper .floating-item.email
{
    background: #ea4335;
}

.floating-wrapper .tooltip-text
{
    right: 55px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 0.8rem;
    transform: translateX(10px);
    transition: all 0.3s ease-in-out;
    z-index: 6;
}

.floating-wrapper .tooltip-text::after
{
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.floating-wrapper .floating-item:hover .tooltip-text
{
    opacity: 1 !important;
    transform: translateX(0);
}

.select2-container .select2-selection--single
{
    height: calc(2.375rem + 2px);
    display: flex;
    align-items: center;
    padding: 0 !important;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.form-select-lg + .select2-container .select2-selection--single
{
    height: calc(2.875rem + 2px);
    padding: 0;
    border: 1px solid #ced4da;
    border-radius: 0.575rem;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered
{
    line-height: calc(2.375rem);
    padding-left: 0.75rem;
    padding-right: 1.5rem;
}

.form-select-lg + .select2-container .select2-selection--single .select2-selection__rendered
{
    line-height: 2.875rem;
    padding-left: 0.75rem;
    padding-right: 1.5rem;
}


.select2-container--default .select2-selection--single .select2-selection__arrow
{
    height: 100%;
    top: 0;
    right: 0.75rem;
}

.form-select-lg + .select2-container .select2-selection--single .select2-selection__arrow
{
    height: 100%;
    top: 0;
    right: 0.75rem;
}

.select2-container--default .select2-search--dropdown
{
    padding: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field
{
    border: none;
    outline: 1px solid #ced4da;
}


input[type="text"],
input[type="email"],
textarea.form-control
{
    box-shadow: none;
    /* border: 1px solid var(--dark_orange); */
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea.form-control:focus
{
    box-shadow: none;
    /* border: 1px solid var(--primary-color); */
}

input:focus::placeholder
{
    color: var(--dark_blue) !important;
    transform: translateX(7px);
    transition: all 0.5s ease-in-out;
}

button[type="submit"]
{
    background-color: var(--light-dark);
    color: var(--white_smoke);
}

button[type="submit"]:hover
{
    background-color: var(--dark_orange);
}

.asterisk::after
{
    content: "*";
    color: red;
    margin-left: 3px;
}

.custom-form .form-label
{
    top: 8px;
    left: 15px;
    font-size: 0.9rem;
    color: #6c757d;
    transition: all 0.2s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
    z-index: 1;
}

.custom-form input[type="text"]:focus + .form-label,
.custom-form input[type="text"]:not(:placeholder-shown) + .form-label,
.custom-form input[type="email"]:focus + .form-label,
.custom-form input[type="email"]:not(:placeholder-shown) + .form-label,
.custom-form input[type="tel"]:focus + .form-label,
.custom-form input[type="tel"]:not(:placeholder-shown) + .form-label,
.custom-form input[type="number"]:focus + .form-label,
.custom-form input[type="number"]:not(:placeholder-shown) + .form-label,
.custom-form input[type="date"]:focus + .form-label,
.custom-form input[type="date"]:not(:placeholder-shown) + .form-label,
.custom-form textarea:focus + .form-label,
.custom-form textarea:not(:placeholder-shown) + .form-label,
.custom-form input[type="file"]:valid + .form-label,
.custom-form select:focus + .form-label,
.custom-form select:valid + .form-label
{
    top: -8px;
    left: 15px;
    font-size: 0.75rem;
    font-weight: 700px;
    color: var(--primary-color);
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form input[type="number"],
.custom-form input[type="date"],
.custom-form input[type="file"],
.custom-form textarea,
.custom-form select
{
    border: 1px solid #dbdbdb !important;
}

.custom-form input[type="text"]:focus,
.custom-form input[type="email"]:focus,
.custom-form input[type="tel"]:focus,
.custom-form input[type="number"]:focus,
.custom-form input[type="date"]:focus,
.custom-form input[type="file"]:focus,
.custom-form textarea:focus,
.custom-form select:focus
{
    box-shadow: none !important;
    border: 1px solid var(--primary-color) !important;
}

.action-btn:hover
{
    color: var(--secondary-color);
}

.reply-indicator
{
    animation: slideIn 0.3s ease;
}

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

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

.search-bar .col:nth-child(1) select + .select2-container .select2-selection--single
{
    background-color: #bff0ff;
    border: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.search-bar .col:nth-child(2) select + .select2-container .select2-selection--single
{
    background-color: #c9c9c9;
    border: none;
    border-radius: 0;
}

.search-bar .col:nth-child(3) select + .select2-container .select2-selection--single
{
    background-color: #e4e4e4;
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.search-bar:not(:has(> [class^="col"]:nth-child(4))) [class^="col"]:nth-child(3) select + .select2-container .select2-selection--single
{
    border-radius: 0;
}

.search-bar .col:nth-child(4) select + .select2-container .select2-selection--single
{
    background-color: #F9F5F0;
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.search-bar .select2-container--default .select2-selection--single .select2-selection__placeholder
{
    color: black;
    font-style: italic;
}

.select2-container--default .select2-results__option--highlighted
{
    background-color: var(--primary-color) !important;
    color: #fff;
}


.search-bar input,
.search-bar input:focus
{
    background-color: #e4e4e4;
    border: none;
    border-radius: 0;
}




.faq .accordion-item,
.faq .accordion-button
{
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed)
{
    background-color: #bff0ff;
}

.faq .accordion-button.collapsed::after
{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='darkblue' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.faq .accordion-button:not(.collapsed)::after
{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='red' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}







.video-container
{
    cursor: pointer;
}

.video-container .play-button-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.video-container .button
{
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.video-container .button.is-play
{
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

.video-container .video-container:hover .button.is-play
{
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
}

.video-container .button-outer-circle
{
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container .button-icon
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
}

@keyframes fadeInOut
{
    0%
    {
        opacity: 0.7;
    }

    50%
    {
        opacity: 1;
    }

    100%
    {
        opacity: 0.7;
    }
}

@keyframes trianglePulse
{
    0%
    {
        transform: translate(-50%, -50%) scale(1);
    }

    50%
    {
        transform: translate(-50%, -50%) scale(1.1);
    }

    100%
    {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes smallScale
{
    from
    {
        transform: scale(1);
        opacity: 1;
    }

    to
    {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-container .triangle
{
    animation: fadeInOut 2s infinite ease-in-out;
}

.video-container .path
{
    stroke-dasharray: 90;
    animation: triangleStroke 3s infinite ease-in-out;
}

@keyframes triangleStroke
{
    0%
    {
        stroke-dashoffset: 90;
    }

    50%
    {
        stroke-dashoffset: 0;
    }

    100%
    {
        stroke-dashoffset: 90;
    }
}

.video-container .has-scale-animation
{
    animation: smallScale 3s infinite;
}

.video-container .has-delay-short
{
    animation-delay: 0.5s;
}

.video-container .button-icon
{
    animation: trianglePulse 2s infinite ease-in-out;
}

.video-container .video-container video
{
    display: block;
    width: 100%;
}

/* Custom Button */
.btn-custom
{
    margin: 10px;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
    transition: 0.5s;
    background-size: 200% auto;
    color: white !important;
    border-radius: 10px;
    border: 0px;
    font-weight: 600;
    box-shadow: 0px 0px 14px -7px #3a7bd5;
    background-image: linear-gradient(45deg, #00d2ff 0%, #3a7bd5 51%, #00d2ff 100%);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-custom:hover
{
    background-position: right center;
    color: var(--secondary-color) !important;
    text-decoration: none;
}

.btn-custom:active
{
    transform: scale(0.95);
}

.btn-custom span
{
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn-custom span:after
{
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.btn-custom:hover span
{
    padding-right: 15px;
}

.btn-custom:hover span:after
{
    opacity: 1;
    right: 0;
}

.btn-effect
{
    width: 100%;
    font-size: small;
    font-weight: 500;
    text-align: right;
    transition: all 0.5s;
    cursor: pointer;
    border: none;
}

.btn-effect span
{
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn-effect span:after
{
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.btn-effect:hover span
{
    padding-right: 15px;
    color: var(--secondary-color);
}

.btn-effect:hover span:after
{
    opacity: 1;
    right: 0;
}

/* Error Page */
.error-code
{
    font-size: 6rem;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    background: linear-gradient(135deg, #ffc107 0%, #ff9100 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes float
{
    0%
    {
        transform: scale(1);
    }

    50%
    {
        transform: scale(1.05);
    }

    100%
    {
        transform: scale(1);
    }
}

@keyframes glow
{
    from
    {
        text-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
    }

    to
    {
        text-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
    }
}

.error-title
{
    color: #333446;
}

/* ----------------------Contact------------------------ */
.contact
{
    background-color: #f5f6f7;
}

.mapouter
{
    position: relative;
    text-align: right;
    height: 400px;
    width: 100%;
}

.gmap_canvas
{
    overflow: hidden;
    background: none !important;
    height: 400px;
    width: 100%;
}

.contact .contact-container
{
    background-color: #f5f6f7;
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #DFE4EA;
    border: 3px solid #f5f6f7 !important;
    transition: all .5s ease-in-out;
}

.contact .card
{
    background-color: #f5f6f7;
}

.contact h5
{
    color: var(--primary-color) !important;
}

.contact a
{
    color: #000000 !important;
}

.contact a:hover
{
    color: var(--primary-color) !important;
}

.contact a:hover span
{
    transition: all .5s ease-in-out;
    margin-left: 7px !important;
}

.contact input[type="text"],
.contact input[type="email"]
{
    border: 1px solid var(--primary-color);
    background-color: #f5f6f7;
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #dfe4ea;
}

.contact input[type="text"]:focus,
.contact input[type="email"]:focus
{
    box-shadow: none;
    border: 1px solid var(--primary-color);
}

.contact textarea.form-control
{
    border: 1px solid var(--primary-color);
    background-color: #f5f6f7;
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #dfe4ea;
}

.contact textarea.form-control:focus
{
    box-shadow: none;
    border: 1px solid var(--primary-color);
}

.contact input:focus::placeholder
{
    color: var(--primary-color) !important;
    transform: translateX(7px);
    transition: all .5s ease-in-out;
}

.asterisk::after
{
    content: "*";
    color: red;
    margin-left: 3px;
}

.contact .social-icon a
{
    background-color: #f5f6f7;
    box-shadow: inset -4px -2px 2px 0px #ffffff, inset 4px 2px 4px 0px #dfe4ea;
    border: 2px solid #f5f6f7;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.contact .social-icon a:hover
{
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #dfe4ea;
}

.contact .social-icon .bi
{
    margin-left: 6px;
}

.contact .social-icon .bi:hover
{
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.contact .bi-facebook
{
    color: #087aea;
}

.contact .bi-linkedin
{
    color: #0f8ac2;
}

.contact .bi-twitter
{
    color: #1da1f2;
}

.contact .bi-instagram
{
    color: #ff0d4e;
}

.contact .bi-youtube
{
    color: #ff0000;
}

.contact .bi-whatsapp
{
    color: #2cd43c;
}

.contact a:hover .bi
{
    color: #000000;
}

.timeline-icon
{
    color: rgb(227, 227, 238);
    background-color: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px 0px, rgba(0, 0, 0, 0.24) 0px 1px 2px 0px;
}

.contact-details .vr
{
    opacity: 1;
    border: 2px solid var(--primary-color);
}

/* ---------------------------------------------- */
.blog .card
{
    transition: all .5s ease-in-out;
}

.blog .card:hover
{
    box-shadow: 0px 9px 30px rgba(255, 149, 5, 0.3) !important;
    border: 1px solid var(--secondary-color) !important;
}

.blog-description * {
    font-family: var(--poppins) !important;
    text-decoration: none !important;
}

.blog-description p span {
    font-size: 1rem !important;
}

.blog-description ul li,
.blog-description ol li,
.blog-description ul span {
    font-size: 1rem !important;
}

.blog-description ul li,
.blog-description ol li {
    margin: 3px 3px !important;
}

.blog-description ul li b,
.blog-description ol li b {
    color: #424242;
}

.blog-description table * {
    font-size: .9rem !important;
    vertical-align: middle !important;
}
/* ---------------------------------------------- */
.team-profile .card
{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.team-profile .angled-header
{
    height: 40px;
    margin-bottom: -25px;
}

.team-profile .angled-header::after
{
    content: "";
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: skewY(-5deg);
    z-index: 1;
}

@media only screen and (max-width: 450px)
{
    .team-profile h6
    {
        font-size: small;
    }

    .team-profile p
    {
        font-size: x-small !important;
    }
}

/* ---------------------------------------------- */
.faq-section2 .accordion-item,
.faq-section2 .accordion-button
{
    background-color: white !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.faq-section2 .accordion-button i
{
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.faq-section .accordion-button.collapsed::after
{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='darkblue' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.faq-section .accordion-button:not(.collapsed)::after
{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='red' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* ---------------------------------------------- */

.comment input[type="text"],
.comment input[type="email"],
.comment textarea.form-control
{
    border: 1px solid var(--white_smoke);
    background-color: var(--white_smoke);
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #dfe4ea;
}

.comment input[type="text"]:focus,
.comment input[type="email"]:focus,
.comment textarea.form-control:focus
{
    box-shadow: none;
    border: 1px solid var(--light-green);
}

.comment input:focus::placeholder
{
    color: var(--dark_blue) !important;
    transform: translateX(7px);
    transition: all 0.5s ease-in-out;
}

.comment button[type="submit"]
{
    background-color: var(--dark-green);
    color: var(--white_smoke);
}

.comment button[type="submit"]:hover
{
    background-color: var(--light-green);
}

.asterisk::after
{
    content: "*";
    color: red;
    margin-left: 3px;
}

.bloTab
{
    background-color: var(--dark_blue);
}

.bloTab .nav-link
{
    color: var(--white_smoke);
}

.bloTab .nav-link.active
{
    background-color: var(--deep_yellow);
}

.list-style
{
    background-color: var(--white_smoke);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    transition: all 0.5s ease;
}

.list-style:hover
{
    box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.176);
}

.comment-section
{
    background-color: var(--white_smoke);
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #dfe4ea;
}

.replyModal
{
    background-color: var(--white_smoke);
}

.comment-list
{
    height: 477px;
}

.rating
{
    color: #ddd;
    cursor: pointer;
}

.rating.checked
{
    color: gold;
}

.gold-star
{
    color: gold;
}

.custom-tooltip
{
    --bs-tooltip-bg: var(--bs-info);
}

/* ---------------------------------------------- */
.glass-card
{
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(200, 200, 200, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    /* Fake rubbed glass texture */
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 240, 240, 0.1) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
    background-size: cover;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-card:hover
{
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/*--------------------Tips Start--------------------*/
.tips-item:hover .btn-effect
{
    color: var(--secondary-color) !important;
}

.tips-item
{
    transition: all 0.5s ease-in-out;
}

.tips-item:hover
{
    box-shadow: 0px 9px 30px rgba(255, 149, 5, 0.3);
    border: 1px solid var(--secondary-color) !important;
}

/*--------------------Tips End--------------------*/

/*--------------------YouTube Video Styles Start-------------------- */
.video-wrapper .media
{
    padding-top: 56.25%;
}

.video-wrapper .thumbnail
{
    transition: opacity 0.35s ease;
}

.video-wrapper .player-el
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.video-wrapper.playing .thumbnail
{
    opacity: 0;
}

.video-wrapper.playing .player-el
{
    opacity: 1;
}

.video-wrapper .play-button-overlay
{
    transition: all 0.25s ease;
}

.video-wrapper.playing .play-button-overlay
{
    opacity: 0;
    visibility: hidden;
}

.video-wrapper .button.is-play
{
    cursor: pointer;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
    backdrop-filter: blur(6px);
}

.video-wrapper .button.is-play:hover
{
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.25);
}

.video-wrapper .button-outer-circle
{
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    animation: video-wrapper-pulse 1.8s infinite ease-out;
}

.video-wrapper .button-outer-circle.has-delay-short
{
    animation-delay: 0.9s;
}

.video-wrapper .button-icon
{
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    animation: video-wrapper-iconPulse 2s infinite ease-in-out;
}

@keyframes video-wrapper-pulse
{
    0%
    {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50%
    {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }

    100%
    {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes video-wrapper-iconPulse
{
    0%
    {
        transform: translate(-50%, -50%) scale(1);
    }

    50%
    {
        transform: translate(-50%, -50%) scale(1.08);
    }

    100%
    {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 576px)
{
    .video-wrapper .button.is-play
    {
        width: 44px;
        height: 44px;
    }

    .video-wrapper .button-outer-circle
    {
        width: 60px;
        height: 60px;
    }

    .video-wrapper .button-icon
    {
        width: 22px;
        height: 22px;
    }
}

/*--------------------YouTube Video Styles End-------------------- */

/*--------------------Case Study Start-------------------- */
.case-study .card-img-overlay
{
    transition: all .3s ease;
    opacity: 0;
    inset: 0;
}

.case-study .card:hover .card-img-overlay
{
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.case-study .card-text
{
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.case-study .card:hover .card-text
{
    transform: translateY(0);
    opacity: 1;
}

.case-study .badge
{
    color: var(--primary-color);
    font-weight: 500;
}

@media screen and (max-width: 576px)
{

    .case-study-detail .float-end,
    .case-study-detail img
    {
        width: 94vw !important;
    }
}

/*--------------------Case Study End-------------------- */

/*--------------------Overview Start-------------------- */
.overview .card
{
    width: 60%;
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-bottom: 3px solid var(--tertiary);
    transition: all .5s ease-in-out;
}

.overview .card:hover
{
    box-shadow: 0px 9px 30px rgba(255, 149, 5, 0.3);
}

.overview .card:nth-of-type(even)
{
    left: 10%;
}

.overview .card:nth-of-type(odd)
{
    right: 10%;
}

@media (max-width: 992px)
{
    .overview .card:nth-of-type(even)
    {
        left: 5%;
    }

    .overview .card:nth-of-type(odd)
    {
        right: 5%;
    }
}

@media (max-width: 576px)
{
    .overview .card:nth-of-type(even)
    {
        left: 4%;
    }

    .overview .card:nth-of-type(odd)
    {
        right: 4%;
    }
}

.overview .card-body
{
    position: relative;
    padding-bottom: 35px;
}

.overview .card:nth-of-type(even) .card-body .card-title
{
    text-align: right;
}

.overview .card:nth-of-type(even) .card-body img
{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.overview .card:nth-of-type(odd) .card-body img
{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.overview img
{
    position: absolute;
    max-height: 60px;
    max-width: 60px;
}

/*--------------------Overview End-------------------- */
