﻿/* Table of Contents:
1. Import Statements
2. Keyframes and Property Animations    
3. Custom Properties
4. Global Styles
5. Typography Styles
6. Heading and Subheadings
7. Form and Inputs
8. Maps Elements
9. Header and Navbar
10. Section and Container
11. Background and Setting Color
12. Swiper Setting
13. Button and Links
14. Overlay
15. Utility Classes
16. Social and Contact Setting
17. Breadcrumb
18. Spesific Media Queries
19. Card Setting
20. Progress and Rating 
21. Accordion
*/

/* ---------------------------- */
/* Import Statements            */
/* ---------------------------- */
@import url('../css/vendor/fontawesome/all.css');
@import url('../css/vendor/fontawesome/all.min.css');
@import url('../css/vendor/fontawesome/brands.css');
@import url('../css/vendor/fontawesome/brands.min.css');
@import url('../css/vendor/fontawesome/fontawesome.css');
@import url('../css/vendor/fontawesome/fontawesome.min.css');
@import url('../css/vendor/fontawesome/regular.css');
@import url('../css/vendor/fontawesome/regular.min.css');
@import url('../css/vendor/fontawesome/solid.css');
@import url('../css/vendor/fontawesome/solid.min.css');
@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/swiper-bundle.min.css');
@import url('../css/vendor/rtmicons.css');
@import url('../css/vendor/font-icons/bootstrap-icons.css');
@import url('../css/vendor/font-icons/bootstrap-icons.min.css');
@import url('../css/vendor/font-icons/bootstrap-icons.scss');
@import url('../css/vendor/manrope/stylesheet.css');


/* ---------------------------- */
/* Keyframes and Property Animations            */
/* ---------------------------- */
@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}

/* ---------------------------- */
/*  Custom Properties            */
/* ---------------------------- */
:root {
    --primary: #001B44;
    --text-color: #FFFFFF;
    --text-color-2: #B3B8C4;
    --accent-color: #C89B2D;
    --accent-color-2: #E8C97A;
    --accent-color-3: #000D22;
    --accent-color-4: #003366;
    --accent-color-5: #F3F3F3;
    --accent-color-6: linear-gradient(90deg, rgba(200, 155, 45, 1) 0%, rgba(232, 201, 122, 0.8) 100%);
    --accent-color-7: radial-gradient(50% 50% at 50% 50%, #E8C97A 0%, #C89B2D 100%);
    --accent-color-8: ;
    --font-1: "Manrope", sans-serif;
}


/* ---------------------------- */
/* Global Styles                */
/* ---------------------------- */
body {
    font-family: var(--font-1);
    color: var(--text-color);
    background-color: var(--primary);
}


/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
    font-size: 72px;
    font-weight: 600;
}

h2 {
    font-size: 64px;
    font-weight: 600;
}

h3 {
    font-size: 48px;
    font-weight: 600;
}

h4 {
    font-size: 32px;
    font-weight: 600;
}

h5 {
    font-size: 24px;
    font-weight: 600;
}

h6 {
    font-size: 20px;
    font-weight: 600;
}

button,
a {
    font-size: 16px;
    font-family: var(--font-1);
}

p {
    font-size: 16px;
    font-family: var(--font-1);
    color: var(--text-color-2);
}

ul {
    list-style: none;
}

ol li {
    color: var(--text-color);
    font-family: var(--font-1);
    font-size: 20px;
    font-weight: 500;
}

.list-circle li {
    list-style-type: disc;
}

.list-circle li::marker {
    color: var(--text-color);
}

li {
    font-size: 16px;
}

img {
    object-fit: cover;
}

.small-text {
    font-size: 14px;
    font-weight: 500;
}

.extra-small-text {
    font-size: 12px;
}

.step-text {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bolder;
    color: rgba(200, 155, 45, 0.3);
    font-style: italic;
}

.counter-text {
    font-size: 72px;
    font-weight: 600;
}

.text-404 {
    font-size: 320px;
    font-weight: 600;
}

.large-text {
    font-size: 100px;
    font-weight: bold;
    text-transform: uppercase;
}

.text-accent {
    background: linear-gradient(50deg,
            rgba(200, 155, 45, 1) 0%,
            rgba(232, 201, 122, 1) 50%,
            rgba(200, 155, 45, 1) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: moveGradienttext 5s ease-in-out infinite alternate;
}

@keyframes moveGradienttext {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 100% center;
    }
}


h3 span {
    position: relative;
    color: var(--text-color);
    transition: all 0.75s;
    transition-delay: 0.6s;
}

h3 span.active {
    color: var(--accent-color-5);
}

h3 span.active_.text {
    visibility: hidden;

}

/* ---------------------------- */
/* Headings and Subheadings      */
/* ---------------------------- */
.banner-heading {
    font-size: 5.5rem;
}

.sub-heading {
    color: var(--accent-color);
    background-color: var(--accent-color-2);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.06);
    border-radius: 40px;
    padding: 8px 16px;
}

.sub-heading.footer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8.3px);
    color: var(--accent-color-3);
}

.text-color {
    color: var(--text-color);
}

.text-color-2 {
    color: var(--text-color-2);
}

.p-banner {
    color: var(--primary);
}

/* ---------------------------- */
/* Forms and Inputs             */
/* ---------------------------- */
.form-control {
    padding: 15px 24px;
    border: none;
}

.form input,
.form select,
.form textarea {
    background-color: transparent;
    border: solid 1px var(--text-color);
    border-radius: 12px;
    color: var(--text-color);
    outline: none;
    font-family: var(--font-2);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    background-color: var(--text-color);
    box-shadow: none;
    border: 1px solid transparent;
    color: var(--primary);
    font-weight: 500;
}

.form input:autofill,
.form input:autofill:focus {
    color: var(--primary);
    transition: background-color 5000s ease-in-out;
    box-shadow: 0 0 0px 1000px var(--text-color) inset !important;
    -webkit-text-fill-color: var(--primary);
    font-family: var(--font-2);
    font-weight: 700;
    border-radius: 12px;
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-color-2);
    font-family: var(--font-2);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="#032B44" class="bi bi-check-xl" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid #C89B2D;
}

.form input.form-check-input:checked {
    border: 1px solid #032B44;
    color: #032B44;
}

.custom-input-group {
    border: 1px solid var(--accent-color-3);
    border-radius: 12px;
    background: var(--accent-color-3);
    padding: 4px;
}

.custom-email-input {
    border: none !important;
    background: var(--accent-color-3) !important;
    color: var(--text-color) !important;
    padding-block: 5px !important;
    padding-left: 24px !important;
    padding-right: 0;
    font-size: 18px;
}

.custom-email-input::placeholder {
    color: var(--text-color);
}

/* ---------------------------- */
/* Map Elements       */
/* ---------------------------- */
.maps {
    width: 100%;
    height: 100%;
    transition: filter 0.5s;
    display: block;
}


/* ---------------------------- */
/* Header and Navbar       */
/* ---------------------------- */
#header {
    transition: all 0.5s ease;
}


.offcanvas-header {
    justify-content: end;
}

.offcanvas-fullwidth {
    width: 25vw !important;
    max-width: 100vw;
    overflow-y: auto;
}

.offcanvas-body {
    overflow: visible;
    padding: 3rem;
    padding-top: 0;
}

.logo-container {
    max-width: 220px;
    flex-shrink: 0;
    overflow: hidden;
}
.logo-container img {
    max-width: 210px;
    height: 48px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}
.navbar-brand {
    max-width: 220px;
    flex-shrink: 0;
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.logo-partner {
    filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.5s;
}

.logo-partner:hover {
    filter: none;
}

.navbar .container-fluid {
    width: 100%;
    max-width: 1400px;
    gap: 0.5rem;
    padding-inline: 14px;
    padding-block: 6px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(45px) !important;
    -webkit-backdrop-filter: blur(11px);
    border-radius: 16px;
}

.navbar {
    padding-block: 0.75rem;
}

.navbar-expand-xl .navbar-nav .nav-link {
    padding: 6px 12px;
    font-size: 13px;
}

.navbar-nav.gap-xl-1 {
    gap: 0.25rem !important;
}

.mega-dropdown {
    position: relative;
}

.mega-dropdown .mega-menu {
    width: 360px;
    position: absolute;
    top: 100%;
    left: 0;
    display: none !important;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    background: rgba(0, 27, 68, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(200, 155, 45, 0.3) !important;
    border-radius: 12px !important;
    padding: 12px;
    margin-top: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mega-dropdown .mega-menu[style*="width:260px"] {
    width: 240px !important;
}

.mega-dropdown:hover .mega-menu,
.mega-dropdown.open .mega-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:focus {
    color: var(--accent-color);
    text-align: center;
}

.navbar-nav .nav-link.show {
    color: var(--accent-color);
}

.navbar-nav {
    padding: 5px;
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 13.5px;
    font-family: var(--font-1);
    color: var(--text-color);
    text-align: end;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    text-align: center;
}

.nav-link.active {
    color: var(--accent-color) !important;
    text-align: center;
}

.navbar-toggler {
    border: none;
    color: var(--accent-color);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
    color: var(--accent-color-2);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    padding: 0;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    padding-block: 0.75rem;
    color: var(--text-color);
    font-family: var(--font-1);
    font-size: 16px;
    padding-inline: 2rem;
    background-color: var(--primary);
}

.dropdown-item.active {
    color: var(--text-color);
    background-color: var(--accent-color);
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.dropdown-item:focus {
    color: var(--text-color);
}

/* ---------------------------- */
/* Section and Container       */
/* ---------------------------- */
.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.r-container {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

.doubleContain {
    padding-bottom: 12em;
}


/* ---------------------------- */
/* Background and Setting Color      */
/* ---------------------------- */
.bg-accent-primary {
    background-color: var(--primary);
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.bg-accent-color-2 {
    background-color: var(--accent-color-2);
}

.bg-accent-color-3 {
    background-color: var(--accent-color-3);
}

.bg-accent-color-4 {
    background-color: var(--accent-color-4);
}

.bg-accent-color-5 {
    background-color: var(--accent-color-5);
}

.bg-accent-color-6 {
    background-color: var(--accent-color-6);
}

.bg-accent-color-7 {
    background: var(--accent-color-7);
}

.bg-accent {
    background-color: var(--background-color);
}

.bg-text-color {
    background-color: var(--text-color);
}

.bg-text-color-2 {
    background-color: var(--text-color-2);
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.heading-bg {
    padding: 32px;
    background-color: var(--primary);
    margin-left: -7em;
}

.accent-color-primary {
    color: var(--primary);
}

.accent-color {
    color: var(--accent-color);
}

.accent-color-2 {
    color: var(--accent-color-2);
}

.accent-color-3 {
    color: var(--accent-color-3);
}

.accent-color-4 {
    color: var(--accent-color-4);
}

.accent-color-5 {
    color: var(--accent-color-5);
}

.accent-color-6 {
    color: var(--accent-color-6);
}

.accent-color-7 {
    color: var(--accent-color-7);
}

.accent {
    color: var(--background-color);
}

.border-text-accent {
    border-color: var(--text-color) !important;
}

.border-accent {
    border-color: var(--accent-color) !important;
}

.border-accent-3 {
    border-color: var(--accent-color-3);
}

.border-accent-6 {
    border-color: var(--accent-color-6) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-testimonial {
    border-right: 5px solid var(--accent-color-2);
}

.border-bottom-hover:hover {
    border-bottom: 2px solid var(--accent-color);
}

.border-accent-color {
    border-color: var(--accent-color-3) !important;
}

.custom-border {
    border-width: 5px;
    border-style: solid;
    border-color: white;
    border-radius: 20px;
}

.outline {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--accent-color);
}

.text-gray {
    color: #B3B8C4 !important;
}

/* ---------------------------- */
/* Swiper Setting              */
/* ---------------------------- */
.container-wrapper-marquee {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.container-wrapper-marquee .marquee-container {
    padding-block: 0;
}

.container-wrapper-marquee .marquee-item {
    padding-inline: 0.5rem;
    margin-right: 0;
}

.container-wrapper-marquee::before,
.container-wrapper-marquee::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.container-wrapper-marquee::before {
    right: 0;
    background: linear-gradient(to right, rgba(0, 27, 68, 1), transparent 70%);
}

.container-wrapper-marquee::after {
    left: 0;
    background: linear-gradient(to left, rgba(0, 27, 68, 1), transparent 70%);
}

.marquee-container {
    overflow: hidden;
    /* white-space: nowrap; */
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-block: 1.5rem;
    --gap: 1rem;
    --speed: 20;
    /* gap: var(--gap); */
}

.marquee-container.partner::before,
.marquee-container.partner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container.partner::before {
    right: 0;
    background: linear-gradient(to right, rgba(0, 27, 68, 1), transparent);
}

.marquee-container.partner::after {
    left: 0;
    background: linear-gradient(to left, rgba(0, 27, 68, 1), transparent);
}

.marquee {
    animation: marquee calc(700s / var(--speed)) infinite linear;
}

.reverse .marquee {
    animation-direction: reverse;
}

.marquee-content {
    display: inline-flex;
}

.marquee-item {
    text-wrap: nowrap;
    padding-inline: var(--gap);
    margin-right: 1rem;
}

.marquee-container.partner .marquee-item {
    width: 300px;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.marquee-vertical-container {
    overflow: hidden;
    height: 1400px;
    display: flex;
    flex-direction: column;
    --gap: 1rem;
    --speed: 20;
    position: relative;
}

.marquee-vertical {
    display: flex;
    flex-direction: column;
    animation: marquee-vertical calc(500s / var(--speed)) infinite linear;
}

.reverse-vertical .marquee-vertical {
    animation-direction: reverse;
}

.marquee-vertical-content {
    display: inline-flex;
    flex-direction: column;
}

.marquee-vertical-item {
    padding-block: var(--gap);
    width: 100%;
}

.marquee-vertical-item img {
    display: block;
    height: auto;
    border-radius: 10px;
}

@keyframes marquee-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.service-scroll {
    height: 610px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 3rem;
}

/* width */
.service-scroll::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.service-scroll::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

/* Handle */
.service-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

/* Handle on hover */

.swiper-slide {
    background-color: transparent;
}

.swiperImage {
    position: relative;
}

.swiperTeam {
    position: relative;
    padding-top: 5rem;
}

.swiperTestimonials {
    position: relative;
}

.swiperTestimonials3 {
    position: relative;
    padding-bottom: 2rem;
}

.swiperTestimonials.singlepage {
    position: relative;
    padding-bottom: 1px;
}

.swiper-pagination {
    margin-block: 1rem;
    position: relative;
}

.swiper-slide {
    padding: 0.5rem;
}

.swiper-pagination {
    margin-block: 1rem;
    position: relative;
}


.swiper-pagination-bullet {
    background: var(--accent-color-4);
    margin: 0 5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    top: 18rem;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color-4);
    background-color: var(--accent-color-4);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    border: 1px solid var(--text-color);
    background-color: var(--text-color);
    color: var(--accent-color-4);
}

.swiper-button-next {
    top: 5px;
    right: 0%;
    transform: translateY(20px);
}

.swiper-button-prev {
    top: 5px;
    left: 87%;
    transform: translateY(20px);
}

.swiperProject .swiper-button-next {
    right: 0%;
    transform: translateY(20px);
}

.swiperProject .swiper-button-prev {
    left: 95%;
    transform: translateY(20px);
}

.swiperProject {
    padding-top: 3rem;
}

/* ---------------------------- */
/* Buttons & Links              */
/* ---------------------------- */
button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

button:hover {
    color: var(--accent-color-2);
}

a {
    text-decoration: none;
}

.w-max-content {
    width: max-content;
}

.read-more {
    color: var(--text-color);
    transition: all 0.5s;
    font-weight: 500;
}

.read-more:hover {
    color: var(--accent-color);
}

.tags {
    background: rgba(250, 250, 250, 0.08);
    border: 1px solid #323232;
    border-radius: 90px;
    padding: 4px 24px 4px 4px;
    font-family: var(--font-1);
    color: var(--text-color);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.tags.accent {
    background: transparent;
    border: 1px solid #C89B2D;
    border-radius: 90px;
    padding: 8px 16px;
    font-family: var(--font-1);
    color: var(--text-color);
    width: max-content;
    transition: all 0.5s ease;
}

.card-blog:hover .tags {
    background-color: var(--accent-color-4);
    border: 1px solid var(--accent-color-4);
}

.tags.service {
    background: var(--accent-color-4);
    border: none;
    border-radius: 90px;
    padding: 8px 16px;
    font-family: var(--font-1);
    color: var(--text-color);
    width: max-content;
    transition: all 0.5s ease;
}

.tags.service.active {
    background-color: var(--accent-color);
}

.tags.service:hover {
    background-color: var(--accent-color);
}

.tags.study {
    border: none;
    border-radius: 90px;
    padding: 8px 16px;
    font-family: var(--font-1);
    color: var(--text-color);
    width: max-content;
    transition: all 0.5s ease;
    background: rgba(250, 250, 250, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(250, 250, 250, 0.2);
}

.btn {
    font-size: 18px;
    padding: 14px 24px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-1);
    position: relative;
    pointer-events: auto;
    cursor: pointer;
}

.btn::before,
.btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-close {
    color: var(--text-color);
}

.btn-close:hover {
    color: var(--text-color);
}

.btn-toggler-accent {
    font-size: 22px;
    width: 3rem;
    height: 3rem;
    padding: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-color);
}

.btn-toggler-accent:hover {
    background-color: var(--text-color);
    color: var(--primary);
}

.btn-accent {
    background: hsla(43, 63%, 44%, 1) !important;
    color: var(--text-color);
    transition: all 0.5s;
    overflow: hidden;
    border-radius: 12px !important;
    border: 4px solid rgba(255, 255, 255, 0.08);
}

.btn-accent.line {
    background: transparent !important;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.btn-accent:hover {
    color: var(--text-color);
    border: 4px solid transparent;
    box-shadow: 0 4px 20px rgba(200, 155, 45, 0.5);
}

.btn-accent.line:hover {
    background: var(--accent-color-6);
    color: var(--text-color);
    border: 1px solid var(--accent-color);
}

.btn-accent:hover i {
    color: var(--primary);
}

.btn-accent span {
    display: block;
    position: relative;
    z-index: 10;
}

.btn-accent:hover i {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

.btn-accent i {
    display: block;
    position: relative;
    z-index: 10;
}

.btn-accent:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.btn-accent::before {
    content: '';
    background: transparent;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.btn-accent.line::before {
    background: var(--accent-color);
}

.btn-accent:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-accent::after {
    content: '';
    background: transparent;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-accent.line::after {
    background: var(--accent-color);
}

.btn-accent:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

.btn-accent-underline {
    background-color: transparent;
    border-bottom: 1px solid var(--text-color);
    color: var(--text-color);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.btn-accent-underline:hover {
    color: var(--accent-color);
}

.btn-accent-underline::before {
    transform-origin: 0% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.btn-accent-underline:hover::before {
    transform: scale3d(1, 1, 1);
}

.btn-accent-underline::after {
    content: '';
    top: calc(100% + 4px);
    transition: transform 0.3s;
    transform-origin: 100% 50%;
}

.btn-accent-underline::before,
.btn-accent-underline::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
}

.btn-accent-underline:hover::after {
    transform: scale3d(0, 1, 1);
}

.btn-play {
    cursor: pointer;
    border: none;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--accent-color-2);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: grid;
    place-content: center;
    transition:
        background 300ms,
        transform 200ms;
    font-weight: normal;
    margin-bottom: -5rem;
    margin-left: -5rem;
    z-index: 3;
}

.btn-play__text {
    position: absolute;
    inset: 0;
    animation: text-rotation 15s linear infinite;
    margin: 0.25rem;

}

.btn-play__text>span {
    position: absolute;
    transform: rotate(calc(10.5deg * var(--index)));
    inset: 1px;
    color: var(--text-color);
    font-size: 16px;
}

.btn-play__circle {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.btn-play__circle i {
    font-weight: bold;
}

.btn-play__icon--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.btn-play:hover {
    transform: scale(1.05);
}

.btn-play:hover .btn-play__icon {
    color: var(--background-color);
}

.btn-play:hover .btn-play__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.btn-play:hover .btn-play__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

@keyframes text-rotation {
    to {
        rotate: 360deg;
    }
}

.card .link {
    color: var(--accent-color);
    transition: color 0.5s;
}

.card .link:hover {
    color: var(--primary);
}

.link.accent-color {
    color: var(--accent-color);
    transition: color 0.5s;
}

.link.accent-color:hover {
    color: var(--dark-bg);
}

.link {
    color: var(--text-color);
    font-family: var(--font-1);
    font-weight: 600;
    transition: all 0.5s;
}

.link.menu {
    text-decoration: none;
}

.link.active {
    color: var(--accent-color);
}

.link:hover {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Overlay                      */
/* ---------------------------- */
.blog-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 27, 68, 0.6) 100%);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 27, 68, 0.8) 100%)
}

.overlay {
    color: var(--accent-color-2);
    opacity: 0.3;
}

.bg-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) -78.74%, #001B44 99.63%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-overlay-footer {
    background: linear-gradient(to top, #C89B2D 0%, rgba(200, 155, 45, 0.6) 10%, rgba(200, 155, 45, 0.2) 50%, transparent 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    border-radius: 1rem;

}

.testimonial-overlay {
    background: linear-gradient(0deg, rgba(243, 243, 243, 0.96), rgba(243, 243, 243, 0.96));
    position: absolute;
    width: 75%;
    height: 100%;
    top: 0;
    right: 0;
}

.bg-accent-opacity {
    background: linear-gradient(0deg, rgba(43, 43, 43, 0.86), rgba(43, 43, 43, 0.86));
}

.linear-gradient {
    padding: 14px 42px;
    background-color: var(--accent-color-2);
    border-radius: 50px;
    width: max-content;
}

.cta-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* ---------------------------- */
/* Utility Classes              */
/* ---------------------------- */
.devider {
    border-left: 2px solid var(--black-1);
    margin-bottom: 1rem;
    height: 10rem;
    margin-left: 0;
}

.devider-progress {
    height: 5rem;
    border-left: 2px solid var(--text-color);
    display: block;
    margin-left: 2.6rem;
}

.hover-transform:hover {
    transform: translateY(-10px);
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-1);
}

.font-3 {
    font-family: var(--font-1);
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.fs-very-large {
    font-size: 4.125rem;
}

.fw-black {
    font-weight: 900 !important;
}

.team-detail {
    background-color: var(--background-color);
    color: var(--accent-color);
    transition: all 0.5s;
}

.team-detail:hover {
    background-color: var(--accent-color);
    color: var(--primary);
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid #C89B2D;
    max-width: 30px;
    min-width: 30px;
}


.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.bg-attach-fixed {
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100%;
}

.bg-attach-cover {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-container.column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.character-img {
    position: relative;
    z-index: 2;
}

.masked-img {
    object-fit: cover;
    aspect-ratio: 3/2;
    width: 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: transparent;
}

.masked-img.first {
    mask-image: url("../image/mask-shape.svg");
    -webkit-mask-image: url("../image/mask-shape.svg");
}

.masked-img.second {
    mask-image: url("../image/mask-shape2.svg");
    -webkit-mask-image: url("../image/mask-shape2.svg");
}

.masked-img.third {
    mask-image: url("../image/mask-shape3.svg");
    -webkit-mask-image: url("../image/mask-shape3.svg");
}

.masked-img.fourth {
    mask-image: url("../image/mask-shape4.svg");
    -webkit-mask-image: url("../image/mask-shape4.svg");
}

.masked-img.fifth {
    mask-image: url("../image/mask-shape5.svg");
    -webkit-mask-image: url("../image/mask-shape5.svg");
}

.masked-img.sixth {
    mask-image: url("../image/mask-shape6.svg");
    -webkit-mask-image: url("../image/mask-shape6.svg");
}

.masked-img.seventh {
    mask-image: url("../image/mask-shape7.svg");
    -webkit-mask-image: url("../image/mask-shape7.svg");
}

.masked-img.eighth {
    mask-image: url("../image/mask-shape8.svg");
    -webkit-mask-image: url("../image/mask-shape8.svg");
}

.masked-img.ninth {
    mask-image: url("../image/mask-shape9.svg");
    -webkit-mask-image: url("../image/mask-shape9.svg");
}

.masked-img.tenth {
    mask-image: url("../image/mask-shape10.svg");
    -webkit-mask-image: url("../image/mask-shape10.svg");
}

.masked-img.eleventh {
    mask-image: url("../image/mask-shape11.svg");
    -webkit-mask-image: url("../image/mask-shape9.svg");
}

.masked-img.twelveth {
    transform: rotate(180deg);
}

.w-70 {
    width: 70%;
}

.stock-img {
    position: relative;
    z-index: 20;
}

.customer-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 52px;
    height: 52px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color-2);
    color: var(--text-color);
    margin-left: -15px;
    overflow: hidden;
}

.testimonial-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 5rem;
    height: 5rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    margin-left: -6px;
    overflow: hidden;
}

.button-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 23px;
    padding: 12px;
    aspect-ratio: 1/1;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: var(--primary);
    background-color: var(--accent-color);
    transition: 0.5s all;
}

.icon-box {
    display: flex;
    justify-content: center;
    font-size: 24px;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 12px;
    color: var(--text-color);
    background: var(--accent-color-6);
    padding: 16px;
    width: max-content;
    height: max-content;
}

.icon-box svg {
    fill: var(--text-color);
}

.icon-box.circle-white {
    background: var(--text-color);
    color: var(--primary);
    border-radius: 50%;
}

.icon-box.circle-gradient {
    background: var(--accent-color-7);
    color: var(--primary);
    border-radius: 50%;
}

.icon-box.circle-glass {
    color: var(--primary);
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(200, 155, 45, 0.4) 0%, rgba(232, 201, 122, 0.3) 100%);
    backdrop-filter: blur(10px);
}

/* Infrastructure Section Bullseye Rings */
.infrastructure-section {
    position: relative;
    overflow: visible;
}

.bullseye-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 1;
    pointer-events: none;
}

.bullseye-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.bullseye-ring.ring-inner {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 155, 45, 0.4) 0%, rgba(0, 27, 68, 0.9) 60%, rgba(0, 27, 68, 0.7) 100%);
    border: 2px solid rgba(200, 155, 45, 0.5);
    box-shadow: 0 0 60px rgba(200, 155, 45, 0.4), inset 0 0 40px rgba(200, 155, 45, 0.15);
    animation: innerPulse 3s ease-in-out infinite;
}

.bullseye-ring.ring-middle {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 27, 68, 0.95) 0%, rgba(0, 27, 68, 0.8) 50%, rgba(0, 27, 68, 0.4) 80%, transparent 100%);
    border: 1px solid rgba(200, 155, 45, 0.25);
    animation: middlePulse 3s ease-in-out infinite 0.5s;
}

.bullseye-ring.ring-outer {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 27, 68, 0.9) 0%, rgba(0, 27, 68, 0.7) 40%, rgba(0, 27, 68, 0.3) 70%, transparent 100%);
    border: 1px solid rgba(200, 155, 45, 0.2);
    animation: outerPulse 3s ease-in-out infinite 1s;
}

/* Radiating Glow Animations */
@keyframes innerPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(200, 155, 45, 0.3), inset 0 0 30px rgba(200, 155, 45, 0.1);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(200, 155, 45, 0.6), inset 0 0 50px rgba(200, 155, 45, 0.25);
        transform: translate(-50%, -50%) scale(1.02);
    }
}

@keyframes middlePulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(200, 155, 45, 0);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% {
        box-shadow: 0 0 60px rgba(200, 155, 45, 0.2);
        transform: translate(-50%, -50%) scale(1.01);
        opacity: 1;
    }
}

@keyframes outerPulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(200, 155, 45, 0);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        box-shadow: 0 0 40px rgba(200, 155, 45, 0.15);
        transform: translate(-50%, -50%) scale(1.005);
        opacity: 0.95;
    }
}

/* Radiating wave effect */
.bullseye-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(200, 155, 45, 0.3);
    animation: radiateWave 3s ease-out infinite;
    pointer-events: none;
}

.bullseye-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(200, 155, 45, 0.2);
    animation: radiateWave 3s ease-out infinite 1.5s;
    pointer-events: none;
}

@keyframes radiateWave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
        border-width: 2px;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
        border-width: 0;
    }
}

@media (max-width: 1200px) {
    .bullseye-container {
        width: 350px;
        height: 350px;
    }
    .bullseye-ring.ring-outer {
        width: 350px;
        height: 350px;
    }
    .bullseye-ring.ring-middle {
        width: 250px;
        height: 250px;
    }
    .bullseye-ring.ring-inner {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .bullseye-container {
        width: 280px;
        height: 280px;
    }
    .bullseye-ring.ring-outer {
        width: 280px;
        height: 280px;
    }
    .bullseye-ring.ring-middle {
        width: 200px;
        height: 200px;
    }
    .bullseye-ring.ring-inner {
        width: 110px;
        height: 110px;
    }
}

.icon-box.cta {
    position: relative;
    padding: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 107px;
    height: 107px;
    border-radius: 8px;
    background: var(--primary);
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Card Graphics Styles */
.card-graphic {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(0, 27, 68, 0.6) 0%, rgba(0, 13, 34, 0.4) 100%);
    border: 1px solid rgba(200, 155, 45, 0.15);
}

/* Cyber Range Graphic - Server Rack */
.cyber-range-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 15px;
    background: rgba(0, 27, 68, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(200, 155, 45, 0.2);
    animation: rackSlide 4s ease-in-out infinite;
}

@keyframes rackSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.server-row {
    display: flex;
    gap: 8px;
}

.server-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(200, 155, 45, 0.2);
    transition: all 0.3s ease;
}

.server-light.active {
    background: #C89B2D;
    box-shadow: 0 0 8px rgba(200, 155, 45, 0.6);
}

.server-light.blink {
    animation: blinkRandom 1.5s ease-in-out infinite;
}

.server-light.blink-slow {
    animation: blinkRandom 2.5s ease-in-out infinite 0.5s;
}

.server-light.blink-fast {
    animation: blinkRandom 0.8s ease-in-out infinite 0.2s;
}

.server-light.pulse {
    animation: pulseBright 2s ease-in-out infinite;
}

@keyframes blinkRandom {
    0%, 100% { background: rgba(200, 155, 45, 0.2); box-shadow: none; }
    50% { background: #C89B2D; box-shadow: 0 0 10px rgba(200, 155, 45, 0.8); }
}

@keyframes pulseBright {
    0%, 100% { background: #C89B2D; box-shadow: 0 0 8px rgba(200, 155, 45, 0.6); }
    50% { background: #E8C97A; box-shadow: 0 0 15px rgba(232, 201, 122, 0.9); }
}

.data-packets {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.packet {
    width: 8px;
    height: 8px;
    background: #C89B2D;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(200, 155, 45, 0.6);
    animation: packetFlow 2s ease-in-out infinite;
}

.packet:nth-child(2) {
    animation-delay: 0.6s;
}

.packet:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes packetFlow {
    0% { transform: translateX(20px); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateX(-60px); opacity: 0; }
}

/* Accelerator Graphic - Growth Chart */
.accelerator-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.growth-chart {
    width: 100%;
    margin-bottom: 15px;
    animation: chartGrow 3s ease-in-out infinite;
}

@keyframes chartGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.05); }
}

.progress-rings {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.prog-ring {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(200, 155, 45, 0.3);
    transition: all 0.5s ease;
}

.prog-ring {
    animation: ringGlow 2s ease-in-out infinite;
}

.prog-ring.ring-1 {
    animation-delay: 0s;
}

.prog-ring.ring-2 {
    animation-delay: 0.3s;
}

.prog-ring.active {
    background: #C89B2D;
    border-color: #C89B2D;
    box-shadow: 0 0 20px rgba(200, 155, 45, 0.8);
    animation: ringPulse 1.5s ease-in-out infinite;
}

@keyframes ringGlow {
    0%, 100% { border-color: rgba(200, 155, 45, 0.3); box-shadow: 0 0 5px rgba(200, 155, 45, 0.2); }
    50% { border-color: rgba(200, 155, 45, 0.6); box-shadow: 0 0 12px rgba(200, 155, 45, 0.4); }
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(200, 155, 45, 0.5); }
    50% { transform: scale(1.15); box-shadow: 0 0 25px rgba(200, 155, 45, 0.9); }
}

/* Network Graphic - Hub & Nodes */
.network-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center {
    position: relative;
    z-index: 2;
    animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(200, 155, 45, 0.3); }
    50% { transform: scale(1.08); box-shadow: 0 0 35px rgba(200, 155, 45, 0.6); }
}

.hub-center svg {
    animation: hubRotate 8s linear infinite;
}

@keyframes hubRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.network-node {
    position: absolute;
    z-index: 1;
}

.network-node.node-1 {
    top: 20px;
    left: 30px;
    animation: nodeFloat 4s ease-in-out infinite;
}

.network-node.node-2 {
    top: 40px;
    right: 40px;
    animation: nodeFloat 4s ease-in-out infinite 1s;
}

.network-node.node-3 {
    bottom: 30px;
    left: 50px;
    animation: nodeFloat 4s ease-in-out infinite 2s;
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-10px) scale(1.1); opacity: 1; }
}

.network-node svg {
    animation: nodePulse 2s ease-in-out infinite;
}

.network-node.node-1 svg { animation-delay: 0s; }
.network-node.node-2 svg { animation-delay: 0.5s; }
.network-node.node-3 svg { animation-delay: 1s; }

@keyframes nodePulse {
    0%, 100% { stroke-width: 1.5; }
    50% { stroke-width: 2.5; }
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.conn-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 45, 0.4), transparent);
    animation: linePulse 3s ease-in-out infinite;
}

.conn-line.line-1 {
    width: 80px;
    top: 45%;
    left: 15%;
    transform: rotate(-25deg);
}

.conn-line.line-2 {
    width: 70px;
    top: 35%;
    right: 20%;
    transform: rotate(35deg);
}

.conn-line.line-3 {
    width: 60px;
    bottom: 40%;
    left: 25%;
    transform: rotate(-45deg);
}

@keyframes linePulse {
    0%, 100% { opacity: 0.2; width: 60px; }
    50% { opacity: 0.9; width: 80px; }
}

.conn-line::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #C89B2D;
    border-radius: 50%;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(200, 155, 45, 0.8);
    animation: dataPacket 2s ease-in-out infinite;
}

.conn-line.line-1::before { animation-delay: 0s; }
.conn-line.line-2::before { animation-delay: 0.7s; }
.conn-line.line-3::before { animation-delay: 1.4s; }

@keyframes dataPacket {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.icon-box.cta:has(svg):before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: var(--accent-color-7);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.icon-box.cta svg {
    fill: var(--primary);
    position: relative;
    z-index: 1;
    transition: fill 0.5s ease;
}

.icon-box.cta.active::before {
    opacity: 1;
    /* fade-in gradient */
}

.icon-box.cta.active svg {
    fill: var(--text-color);
}

.author-box {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 15rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -6px;
    overflow: hidden;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.position-xl-absolute {
    position: absolute;
}

.w-60 {
    width: 60% !important;
}

.shadow-double {
    box-shadow: 40px -40px 0px -4px var(--accent-color), -54px 44px 0px -3px var(--accent-color-4);
}

.shadow-single-left {
    box-shadow: -54px 44px 0px -3px var(--accent-color-4);
}

.shadow-single-right {
    box-shadow: 40px -40px 0px -4px var(--accent-color-4);
}

.shadow-accent-2 {
    -webkit-box-shadow: -90px -23px 0px 0px var(--accent-color-4);
    -moz-box-shadow: -90px -23px 0px 0px var(--accent-color-4);
    box-shadow: -90px -23px 0px 0px var(--accent-color-4);
}

.rounded-end {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.floating-blog {
    margin-top: -9rem;
}

.image-container {
    position: relative;
    display: inline-block;
}

.hotspot {
    position: absolute;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    width: max-content;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary) transparent transparent transparent;
}

.hotspot:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hotspot.active .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip img {
    width: 20px;
    height: auto;
    border-radius: 3px;
}

.d-inline-block {
    display: inline-block;
}

.position-responsive {
    position: absolute;
}

.list .icon-box {
    width: 4.3rem;
    height: 4.3rem;
}

.list-flush-horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.list-flush-horizontal .list-item:first-child,
.list-flush-horizontal .list-item {
    border-right: 1px solid white;
}

.list-flush-horizontal .list-item:last-child {
    border-left: 1px solid white;
    border-right: none;
}

.list-flush-horizontal .list-item:nth-last-child(2) {
    border: none;
}

.list-group-item {
    background-color: transparent;
    border-radius: 10px;
}

.list-group .list-group-item .link {
    background-color: transparent;
    border: none;
    color: var(--text-color);
    transition: all 0.5s;
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-1);
}

.list-group .list-group-item .link:hover {
    color: var(--accent-color) !important;
}

.list-group .list-group-item i {
    color: var(--text-color);
    transition: all 0.5s;
}

.list-group .list-group-item:hover i {
    color: var(--accent-color);
    transform: rotate(-45deg);
}

.list-group .list-group-item.active {
    background-color: var(--accent-color-2);
    color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color-2);
    color: white;
}

.list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    padding-inline: 0.5rem;
}

.list .link {
    font-weight: 400;
    text-wrap: nowrap;
}

.list li {
    padding: 0;
    font-size: 16px;
    font-family: var(--font-1);
}

.list li .link {
    transition: all 0.5s;
    color: var(--text-color-2);
}

.list li i {
    transition: all 0.5s;
    color: var(--accent-color);
}

.list.text-black i {
    color: #131313;
}

.list li .link:hover,
.list li .link:hover i {
    color: var(--accent-color);
}

.countdown {
    display: flex;
    gap: 20px;
}

.countdown-box {
    background-color: var(--accent-color-3);
    color: var(--text-color);
    text-align: center;
    padding: 30px;
    width: 200px;
    border-radius: 8px;
}

.countdown-box h2 {
    margin: 0;
}

.countdown-box p {
    margin: 0;
}

/* ---------------------------- */
/* Social and Contact Setting    */
/* ---------------------------- */
.customer-container {
    display: flex;
}

.customer-item:nth-child(1) {
    z-index: 3;
    margin-left: 0;
}

.customer-item:nth-child(2) {
    z-index: 4;
}

.customer-item:nth-child(3) {
    z-index: 5;
}

.customer-item:nth-child(4) {
    z-index: 6;
}

.subscribe-container {
    box-sizing: border-box;
    margin-bottom: -8em;
}

.contact-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 40px;
    height: 2rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}


.social-item {
    border-radius: 8px;
    aspect-ratio: 1/1;
    font-size: 20px;
    width: 2.3rem;
    height: 2.3rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    background: var(--primary);
}

.social-item:hover {
    background: var(--accent-color-6);
    color: var(--text-color);
    border: solid 1px var(--accent-color);
}

.social-item.team {
    border: none;
    background: transparent;
}

.social-item.team:hover {
    background: var(--accent-color-6);
    color: var(--text-color);
    border: solid 1px var(--accent-color);
}

.social-container .share-button {
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.share-button:hover {
    background-color: var(--accent-color-2);
}

/* ---------------------------- */
/* Breadcrumb    */
/* ---------------------------- */
.breadcrumb {
    align-items: center;
    font-family: var(--font-1);
    color: var(--text-color);
    font-size: 20px;
}

.breadcrumb .breadcrumb-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.breadcrumb .breadcrumb-item>a {
    color: var(--text-color);
    font-family: var(--font-1);
    text-decoration: none;
    font-size: 20px;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--text-color);
    font-size: 20px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: none;
    color: var(--text-color-2);
}


/* ---------------------------- */
/* Specific Media Queries       */
/* ---------------------------- */
.video-e119 {
    width: 60%;
    margin-bottom: -3rem;
    margin-left: -3rem;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.video-container {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 5px solid white;
    border-radius: 10px;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 4rem;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
    color: white;
    border: none;
    opacity: 0.7;
}

.video-btn:hover {
    opacity: 1;
    color: white;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    border: solid 1px var(--accent-color);
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 24px;
    aspect-ratio: 1/1;
}

.request-loader.banner {
    position: relative;
    height: 90px;
    width: 90px;
    border-radius: 50% !important;
    border: solid 6px var(--primary);
    background-color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 45px;
    aspect-ratio: 1/1;
}

.request-loader:hover {
    border: solid 2px var(--primary);
    color: var(--accent-color);
    background-color: var(--primary);
}

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;

}

.request-loader:hover::after,
.request-loader:hover::before {
    color: var(--primary);
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.request-loader.accent {
    width: 40px;
    height: 40px;
    font-size: 16px;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: var(--primary);
}

.request-loader.accent:hover {
    border: solid 2px var(--text-color);
    color: var(--accent-color-4);
    background-color: var(--text-color);
}


/* ---------------------------- */
/* card Setting       */
/* ---------------------------- */
.card {
    border: none;
    transition: all 0.5s;
    background-color: unset;
}

.card:hover {
    transform: translateY(-10px);
    width: 100%;
    top: 0;
    left: 0;
}

.card-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-title p {
    max-width: 400px;
}

.card-title.middle {
    align-items: center;
    text-align: center;
}

.card-service {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
    color: var(--text-color);
    background-color: var(--accent-color-3);
    border-radius: 16px;
}

.card-service svg {
    fill: var(--text-color);
}

.card-feature {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    align-items: flex-start;
    background-color: var(--accent-color-3);
    border-radius: 16px;
    height: 100%;
    min-height: 380px;
    justify-content: space-between;
    overflow: hidden;
}

/* Card feature graphics */
.card-feature-graphic {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    opacity: 0.6;
    pointer-events: none;
}

/* SOC Readiness - Shield with pulsing rings */
.soc-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.soc-shield {
    width: 60px;
    height: 70px;
    position: relative;
}

.soc-shield svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(200, 155, 45, 0.5));
}

.soc-ring {
    position: absolute;
    border: 2px solid rgba(200, 155, 45, 0.3);
    border-radius: 50%;
    animation: socPulse 2s ease-in-out infinite;
}

.soc-ring:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: 0.3s;
}

.soc-ring:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: 0.6s;
}

@keyframes socPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

/* Employer Deployment - Connected nodes */
.deployment-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deploy-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #C89B2D;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(200, 155, 45, 0.6);
}

.deploy-node:nth-child(1) {
    top: 30%;
    left: 30%;
    animation: deployFloat 3s ease-in-out infinite;
}

.deploy-node:nth-child(2) {
    top: 50%;
    right: 25%;
    background: #E8C97A;
    animation: deployFloat 3s ease-in-out infinite 0.5s;
}

.deploy-node:nth-child(3) {
    bottom: 30%;
    left: 50%;
    animation: deployFloat 3s ease-in-out infinite 1s;
}

.deploy-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 45, 0.5), transparent);
    animation: deployLinePulse 2s ease-in-out infinite;
}

.deploy-line:nth-child(4) {
    width: 40px;
    top: 38%;
    left: 35%;
    transform: rotate(25deg);
}

.deploy-line:nth-child(5) {
    width: 35px;
    top: 55%;
    left: 35%;
    transform: rotate(-20deg);
    animation-delay: 0.5s;
}

@keyframes deployFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

@keyframes deployLinePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Scalable Infrastructure - Growing network */
.scalable-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scalable-hub {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #E8C97A 0%, #C89B2D 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px rgba(200, 155, 45, 0.6);
    animation: hubPulse 2s ease-in-out infinite;
}

.scalable-orbits {
    position: absolute;
    border: 1px dashed rgba(200, 155, 45, 0.3);
    border-radius: 50%;
}

.scalable-orbits:nth-child(2) {
    width: 60px;
    height: 60px;
    animation: orbitRotate 8s linear infinite;
}

.scalable-orbits:nth-child(3) {
    width: 90px;
    height: 90px;
    animation: orbitRotate 12s linear infinite reverse;
}

.scalable-satellite {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #C89B2D;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(200, 155, 45, 0.8);
}

.scalable-orbits:nth-child(2) .scalable-satellite {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.scalable-orbits:nth-child(3) .scalable-satellite {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(200, 155, 45, 0.6); }
    50% { transform: scale(1.15); box-shadow: 0 0 25px rgba(200, 155, 45, 0.9); }
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.card-feature.animated-gradient {
    background-image: none;
    background-color: var(--accent-color-3);
    transition: all 0.5s;
}

/* SOC Dashboard Visual - Cybersecurity Theme */
.soc-dashboard-visual {
    position: relative;
    width: 100%;
    min-height: 280px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0.7;
    overflow: hidden;
}

/* Main Shield Monitor */
.soc-shield-monitor {
    position: relative;
    width: 120px;
    height: 120px;
    z-index: 10;
    transform: scale(0.85);
}

.shield-frame {
    position: relative;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(200, 155, 45, 0.3));
}

.shield-svg {
    width: 100%;
    height: 100%;
    animation: shieldPulse 3s ease-in-out infinite;
}

.shield-bg {
    fill: rgba(0, 27, 68, 0.9);
    stroke: none;
}

.shield-border {
    stroke: #C89B2D;
    stroke-width: 2;
    filter: drop-shadow(0 0 4px rgba(200, 155, 45, 0.4));
    animation: borderGlow 2s ease-in-out infinite;
    opacity: 0.8;
}

.shield-check {
    stroke: #E8C97A;
    stroke-width: 4;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 2s ease-out forwards, checkGlow 2s ease-in-out infinite 2s;
}

.circuit-line {
    stroke: #C89B2D;
    stroke-width: 1;
    opacity: 0.3;
    animation: circuitPulse 1.5s ease-in-out infinite;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E8C97A, transparent);
    animation: scanDown 3s ease-in-out infinite;
    opacity: 0.6;
}

.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(200,155,45,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes borderGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(200, 155, 45, 0.4)); }
    50% { filter: drop-shadow(0 0 15px rgba(200, 155, 45, 0.8)); }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

@keyframes checkGlow {
    0%, 100% { filter: drop-shadow(0 0 3px rgba(232, 201, 122, 0.5)); }
    50% { filter: drop-shadow(0 0 10px rgba(232, 201, 122, 0.9)); }
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes scanDown {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Server Clusters */
.server-cluster {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.left-rack {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.right-rack {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.server-unit {
    width: 60px;
    height: 30px;
    background: linear-gradient(180deg, rgba(0,27,68,0.7) 0%, rgba(0,13,34,0.8) 100%);
    border: 1px solid rgba(200, 155, 45, 0.2);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    opacity: 0.6;
}

.server-lights {
    display: flex;
    gap: 6px;
}

.light {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.light.blink-green {
    background: #00ff00;
    box-shadow: 0 0 5px #00ff00;
    animation: blinkGreen 0.8s ease-in-out infinite;
}

.light.solid-green {
    background: #00ff00;
    box-shadow: 0 0 5px #00ff00;
}

.light.blink-amber {
    background: #C89B2D;
    box-shadow: 0 0 5px #C89B2D;
    animation: blinkAmber 1.2s ease-in-out infinite;
}

.light.solid-amber {
    background: #C89B2D;
    box-shadow: 0 0 5px #C89B2D;
}

.light.solid-red {
    background: #ff3333;
    box-shadow: 0 0 5px #ff3333;
}

@keyframes blinkGreen {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes blinkAmber {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Security Alerts */
.security-alert {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    background: rgba(0, 27, 68, 0.7);
    border: 1px solid rgba(200, 155, 45, 0.25);
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #C89B2D;
    z-index: 8;
    animation: alertPulse 2s ease-in-out infinite;
    opacity: 0.7;
}

.alert-1 {
    top: 15%;
    right: 10%;
    border-left: 3px solid #ff3333;
}

.alert-2 {
    bottom: 20%;
    left: 10%;
    border-left: 3px solid #00ff00;
}

.alert-icon svg {
    filter: drop-shadow(0 0 3px rgba(200, 155, 45, 0.6));
}

@keyframes alertPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(200, 155, 45, 0.2); }
    50% { box-shadow: 0 0 15px rgba(200, 155, 45, 0.5); }
}

/* Binary Data Streams */
.data-stream {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(200, 155, 45, 0.25);
    letter-spacing: 2px;
    z-index: 3;
    animation: streamFlow 8s linear infinite;
    opacity: 0.5;
}

.data-stream span {
    animation: binaryBlink 1s ease-in-out infinite;
}

.data-stream span:nth-child(odd) {
    animation-delay: 0.2s;
}

.stream-1 {
    top: 10%;
    left: 20%;
}

.stream-2 {
    bottom: 15%;
    right: 15%;
    animation-direction: reverse;
}

@keyframes streamFlow {
    0% { opacity: 0.2; transform: translateX(-10px); }
    50% { opacity: 0.6; }
    100% { opacity: 0.2; transform: translateX(10px); }
}

@keyframes binaryBlink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; color: #E8C97A; }
}

/* Secure Connection Lines */
.secure-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(200,155,45,0.6) 50%, transparent 100%);
    opacity: 0.4;
    animation: connPulse 2s ease-in-out infinite;
}

.conn-1 {
    width: 100px;
    top: 40%;
    left: 22%;
    transform: rotate(-5deg);
}

.conn-2 {
    width: 100px;
    top: 60%;
    left: 22%;
    transform: rotate(5deg);
    animation-delay: 0.5s;
}

.conn-3 {
    width: 100px;
    top: 50%;
    right: 22%;
    animation-delay: 1s;
}

@keyframes connPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

/* Floating Lock */
.floating-lock {
    position: absolute;
    top: 25%;
    right: 25%;
    animation: lockFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(200, 155, 45, 0.3));
    z-index: 7;
    opacity: 0.6;
    transform: scale(0.8);
}

@keyframes lockFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Firewall Indicator */
.firewall-indicator {
    position: absolute;
    bottom: 25%;
    right: 20%;
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 6;
    opacity: 0.5;
    transform: scale(0.8);
}

.firewall-bar {
    width: 25px;
    height: 3px;
    background: rgba(200, 155, 45, 0.2);
    border-radius: 2px;
    animation: firewallActive 1s ease-in-out infinite;
}

.firewall-bar:nth-child(1) { animation-delay: 0s; }
.firewall-bar:nth-child(2) { animation-delay: 0.2s; width: 25px; }
.firewall-bar:nth-child(3) { animation-delay: 0.4s; width: 35px; }
.firewall-bar:nth-child(4) { animation-delay: 0.6s; width: 20px; }

@keyframes firewallActive {
    0%, 100% { background: rgba(200, 155, 45, 0.3); box-shadow: none; }
    50% { background: rgba(232, 201, 122, 0.8); box-shadow: 0 0 8px rgba(232, 201, 122, 0.6); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .soc-dashboard-visual {
        min-height: 300px;
    }
    .soc-shield-monitor {
        transform: scale(0.7);
    }
    .server-cluster {
        display: none;
    }
    .security-alert {
        font-size: 8px;
        padding: 5px 8px;
    }
}

.card-feature:hover.animated-gradient {
    width: 100%;
    background-color: hsla(210, 100%, 7%, 1);
    background-image:
        radial-gradient(at 100% 53%, hsla(43, 63%, 44%, 0.42) 0px, transparent 50%),
        radial-gradient(at 87% 99%, hsla(43, 79%, 70%, 0.35) 0px, transparent 50%);
    background-size: 130% 130%;
    animation: moveGradient 5s ease-in-out infinite alternate;
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
}

.card-feature.active.animated-gradient {
    width: 100%;
    background-color: hsla(210, 100%, 7%, 1);
    background-image:
        radial-gradient(at 100% 53%, hsla(43, 63%, 44%, 0.42) 0px, transparent 50%),
        radial-gradient(at 87% 99%, hsla(43, 79%, 70%, 0.35) 0px, transparent 50%);
    background-size: 130% 130%;
    animation: moveGradient 5s ease-in-out infinite alternate;
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
}

.stack-container {
    position: relative;
    width: 70%;
    height: 300px;
    margin-top: 5rem;
}

.card-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    background: var(--accent-color-3);
    color: var(--text-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
    border-radius: 16px;
}

.animated-gradient {
    background-color: hsla(43, 63%, 44%, 1);
    background-image:
        radial-gradient(at 82% 16%, hsla(43, 79%, 91%, 1) 0px, transparent 50%),
        radial-gradient(at 16% 86%, hsla(43, 63%, 44%, 1) 0px, transparent 50%);
    background-size: 200% 200%;
    animation: moveGradient 3s ease-in-out infinite alternate;
}

.section.animated-gradient.heroheader {
    overflow: visible;
}

.animated-gradient.heroheader {
    width: 100%;
    min-height: 520px;
    height: auto !important;
    padding-top: 130px !important;
    padding-bottom: 4rem !important;
    overflow-x: hidden;
    overflow-y: visible;
    background-color: hsla(210, 100%, 13%, 1);
    background-image:
        radial-gradient(ellipse 30% 60% at 100% 0%, hsla(43, 63%, 44%, 0.6) 0%, transparent 100%),
        radial-gradient(ellipse 60% 50% at 0% 10%, hsla(43, 79%, 70%, 0.5) 0%, transparent 100%),
        radial-gradient(ellipse 60% 60% at 100% 100%, hsla(43, 63%, 44%, 0.8) 0%, transparent 100%);
    background-size: 130% 130%;
}

.animated-gradient.card-image-single {
    width: 100%;
    background-color: hsla(210, 100%, 7%, 1);
    background-image:
        radial-gradient(ellipse 100% 70% at 100% 100%, hsla(43, 63%, 44%, 1) 0%, transparent 100%),
        radial-gradient(ellipse 80% 50% at 0% 100%, hsla(43, 79%, 70%, 1) 0%, transparent 100%);
    background-size: 160% 110%;
    animation: moveGradient 3s ease-in-out infinite alternate;
}

.animated-gradient.card-service {
    width: 100%;
    background-color: hsla(210, 100%, 7%, 1);
    background-image:
        radial-gradient(ellipse 100% 70% at 100% 100%, hsla(43, 63%, 44%, 1) 0%, transparent 100%),
        radial-gradient(ellipse 80% 50% at 0% 100%, hsla(43, 79%, 70%, 1) 0%, transparent 100%);
    background-size: 160% 110%;
    animation: moveGradient 3s ease-in-out infinite alternate;
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
}

.animated-gradient.cta {
    width: 100%;
    background-color: hsla(210, 100%, 13%, 1);
    background-image:
        radial-gradient(ellipse 50% 40% at 100% 50%, hsla(43, 63%, 44%, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 50% 45% at 0% 46%, hsla(43, 79%, 70%, 0.5) 0%, transparent 100%);
    background-size: 150% 100%;
    animation: moveGradient 5s ease-in-out infinite alternate;
}

.animated-gradient.middle {
    width: 100%;
    background-color: hsla(210, 100%, 13%, 1);
    background-image:
        radial-gradient(ellipse 40% 15% at 100% 50%, hsla(43, 63%, 44%, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 60% 20% at 0% 50%, hsla(43, 79%, 70%, 0.5) 0%, transparent 100%);
    background-size: 150% 100%;
    animation: moveGradient 5s ease-in-out infinite alternate;
}

.animated-gradient.team {
    width: 100%;
    background-color: hsla(210, 100%, 13%, 1);
    background-image:
        radial-gradient(ellipse 60% 40% at 0% 46%, hsla(43, 63%, 44%, 0.25) 0%, transparent 100%),
        radial-gradient(ellipse 50% 60% at 100% 50%, hsla(43, 79%, 70%, 0.30) 0%, transparent 100%);
    background-size: 130% 100%;
    animation: moveGradient 2s ease-in-out infinite alternate;
}

.animated-gradient.footer {
    width: 100%;
    background-color: hsla(210, 100%, 13%, 1);
    background-image:
        radial-gradient(ellipse 60% 40% at 10% 0%, hsla(43, 63%, 44%, 0.5) 0%, transparent 100%);
    background-size: 160% 100%;
    animation: moveGradient 5s ease-in-out infinite alternate;
}


@keyframes moveGradient {
    0% {
        background-position: 20% 0%;
    }

    50% {
        background-position: 90% 40%;
    }

    100% {
        background-position: 20% 100%;
    }
}

.glass-box {
    position: relative;
    color: var(--accent-color-2);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.blog {
    display: flex;
    flex-direction: column;
}

.card-blog {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 16px;
    background-color: var(--accent-color-3);
    transition: all 0.5s;
    padding: 32px;
    color: var(--text-color);
}

.card-blog:hover {
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
}

.card-team {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    padding-inline: 32px;
}

.card-image {
    background-color: var(--accent-color-3);
    aspect-ratio: 1/1;
    border-radius: 50%;
    transition: all 0.5s;
    overflow: hidden;
}

.card-image:hover {
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
}

.card-team h6 {
    color: var(--text-color);
    transition: all 0.5s;
}

.card-team:hover h6 {
    color: var(--accent-color);
}

.card-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    background: var(--primary);
    color: var(--text-color);
    border-radius: 16px;
    transition: all 0.5s;
    gap: 32px;
}

.card-about:hover {
    background: var(--accent-color-3);
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
}

.card-about svg {
    fill: var(--text-color);
}

.card-about:hover svg {
    fill: var(--accent-color);
}

.card-about p {
    max-width: 250px;
}

.card-404 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background: rgba(250, 250, 250, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 32px;
    margin-top: -10rem;
}

.card-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background-color: var(--accent-color-3);
    border-radius: 12px;
    height: 100%;
    transition: all 0.5s;
}

.card-contact:hover {
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
}

.tab-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.tabs {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    width: max-content;
    cursor: pointer;
}

.tab {
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-color);
    transition: all 0.5s;
}

.tab.active {
    color: var(--text-color);
    background: var(--accent-color-6);
    border: 1px solid var(--accent-color);
}

.tab:hover {
    color: var(--text-color);
    background: var(--accent-color-6);
    border: 1px solid var(--accent-color);
}

.tab-content {
    width: 100%;
    padding: 10px;
    background-color: var(--accent-color-2);
    border-radius: 16px;
}

.content {
    display: none;
    transition: all 0.5s;
}

.content.active {
    display: block;
}

.background-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.image-hover {
    opacity: 0;
    position: absolute;
}

.image-swiper {
    overflow: hidden;
    transition: all 0.5s;
}

.image-swiper:hover {
    transform: translateY(-8px);

}

.card-pricing {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    padding: 37px;
    border-radius: 16px;
    background-color: var(--accent-color-3);
    transition: all 0.5s;
}

.card-pricing.animated-gradient {
    background-image: none;
    background-color: var(--accent-color-3);
    transition: all 0.5s;
}

.card-pricing:hover.animated-gradient {
    width: 100%;
    background-color: hsla(210, 100%, 7%, 1);
    background-image:
        radial-gradient(at 100% 53%, hsla(43, 63%, 44%, 0.42) 0px, transparent 50%),
        radial-gradient(at 87% 99%, hsla(43, 79%, 70%, 0.35) 0px, transparent 50%);
    background-size: 130% 130%;
    animation: moveGradient 5s ease-in-out infinite alternate;
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
}

.card-pricing.active.animated-gradient {
    width: 100%;
    background-color: hsla(210, 100%, 7%, 1);
    background-image:
        radial-gradient(at 100% 53%, hsla(43, 63%, 44%, 0.42) 0px, transparent 50%),
        radial-gradient(at 87% 99%, hsla(43, 79%, 70%, 0.35) 0px, transparent 50%);
    background-size: 130% 130%;
    animation: moveGradient 5s ease-in-out infinite alternate;
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
}

.card-pricing .btn-accent {
    background-color: var(--text-color);
}

.card-overlay {
    position: relative;
}

.card-overlay i {
    font-size: 23px;
    padding: 12px;
    display: inline-block;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: var(--primary);
    background-color: var(--accent-color);
    transition: 0.5s all;
}

.card-overlay i:hover {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--accent-color);
    transform: rotate(45deg);
    transition: 0.5s all;
}

.card-overlay .card-body {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    padding: 3rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s;
    background: linear-gradient(0deg, rgba(0, 27, 68, 0.75), rgba(0, 27, 68, 0.75));
}


.card-overlay:hover .card-body {
    transform: scaleY(1);
    opacity: 1;
}

.card:hover .icon-box.bg-accent-color {
    background-color: white;
    color: var(--accent-color);
}

.card:hover p {
    transition: all 0.5s;
}

.testimonial-container {
    background-color: var(--accent-color-3);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: inset 0px 0px 45px rgba(200, 155, 45, 0.12);
    border-radius: 16px;
    height: 250px;
    justify-content: space-between;
}

.card-counter {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding-inline: 2rem;
    transition: all 0.5s;
}

/* Counter Line - Animated Progress Bar */
.counter-line {
    border: none;
    height: 3px;
    background: rgba(200, 155, 45, 0.2);
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.counter-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C89B2D 0%, #E8C97A 50%, #C89B2D 100%);
    border-radius: 2px;
    animation: progressFill 2s ease-out forwards;
    box-shadow: 0 0 10px rgba(200, 155, 45, 0.5);
}

.counter-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 2px;
    animation: progressFill 2s ease-out forwards, progressShine 2s ease-in-out infinite 1s;
    z-index: 1;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes progressShine {
    0% { left: -20%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Counter number animations */
.card-counter h2.number {
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(200, 155, 45, 0.2); }
    50% { text-shadow: 0 0 20px rgba(200, 155, 45, 0.5); }
}

/* Card counter hover effects */
.card-counter:hover {
    transform: translateY(-5px);
}

.card-counter:hover .counter-line::after {
    box-shadow: 0 0 20px rgba(200, 155, 45, 0.9);
    filter: brightness(1.2);
}

.card-counter:hover .counter-line::before {
    animation: progressShine 0.8s ease-in-out infinite;
}

/* Corner Neural Network Canvases */
.corner-neural-network {
    position: absolute;
    width: 300px;
    height: 300px;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

#neural-canvas-bottom-left {
    bottom: -50px;
    left: -50px;
}

#neural-canvas-top-right {
    top: -50px;
    right: -50px;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .corner-neural-network {
        width: 200px;
        height: 200px;
    }
    #neural-canvas-bottom-left {
        bottom: -30px;
        left: -30px;
    }
    #neural-canvas-top-right {
        top: -30px;
        right: -30px;
    }
}

/* ---------------------------- */
/* Progress and Rating       */
/* ---------------------------- */
.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: var(--accent-color-3);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 5px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 8px;
    /* overflow: hidden; */
}

.r-progress-bar .progress-value {
    height: 100%;
    border-radius: 8px;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%));
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    font-size: 16px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
    bottom: calc(100% + 0.5rem);
}

.rating {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.rating li {
    color: #C89B2D;
}

.rating li.inactive {
    color: #B3B8C4;
}

.glass-effect {
    background: transparent;
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion {
    --bs-accordion-bg: transparent;
}

.accordion .accordion-item {
    border: 1px solid var(--accent-color-3);
    background-color: var(--accent-color-2);
    color: var(--text-color-2);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.accordion .accordion-item:hover {
    transform: scale(1.06) translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 155, 45, 0.35), 0 0 0 2px rgba(200, 155, 45, 0.5), inset 0 0 20px rgba(200, 155, 45, 0.1);
    border-color: rgba(200, 155, 45, 0.7);
    background-color: rgba(0, 27, 68, 0.85);
    z-index: 10;
}

.accordion .accordion-item:hover .accordion-button {
    color: #E8C97A;
    text-shadow: 0 0 10px rgba(200, 155, 45, 0.4);
}

.accordion .accordion-item:hover .accordion-button::after {
    filter: drop-shadow(0 0 10px rgba(200, 155, 45, 1)) brightness(1.3);
    transform: scale(1.2);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button {
    background-color: transparent;
    padding: 1.25rem 3rem 1.25rem 1.25rem !important;
    color: var(--text-color);
    outline: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    justify-content: flex-start;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
    border-radius: 16px !important;
    font-family: var(--font-1);
    white-space: normal;
    text-align: left;
    line-height: 1.45;
}

.accordion .accordion-button.accent {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23FAFAFA" class="bi bi-plus" viewBox="0 0 16 16"><path 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 4"/></svg>');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23FAFAFA" class="bi bi-dash" viewBox="0 0 16 16"><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8"/></svg>');
}

.accordion .accordion-button:not(.collapsed) {
    color: var(--text-color);
    background-color: var(--accent-color-6);
    border: none !important;
    border-radius: 8px !important;
    box-shadow: none;
}

.accordion .accordion-body {
    background-color: transparent;
    font-size: 16px;
    color: var(--text-color-2);
    font-family: var(--font-1);
    padding: 0 1.25rem 1.25rem;
    line-height: 1.75;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.accordion.hero .accordion-body {
    background-color: var(--accent-color-2);
    font-size: 16px;
    color: var(--text-color-2);
    font-family: var(--font-1);
    padding-inline: 0;
    text-align: start;
    border-radius: 16px;
    padding: 32px;
}

.accordion.hero .accordion-button {
    background-color: var(--accent-color-3);
    padding: 12px !important;
    color: var(--text-color);
    outline: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: left;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    border-radius: 16px !important;
    font-family: var(--font-1);
}

.accordion.hero .accordion-button span {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50px;
    background-color: var(--accent-color);
    color: var(--accent-color-2);
}

.accordion.hero .accordion-button .title {
    background-color: var(--accent-color-2);
    padding: 12px;
    width: 100%;
    color: var(--text-color);
}

.accordion.hero .accordion-item {
    border: 1px solid var(--accent-color-3);
    background-color: var(--accent-color-2);
    color: var(--text-color-2);
    outline: none;
    padding: 0;
    border-radius: 16px;
}

.accordion.hero .accordion-button::after {
    display: none;
}

.accordion.hero .accordion-button:not(.collapsed)::after {
    background-image: none;
}

.accordion.hero .accordion-button::after {
    background-color: var(--accent-color);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23FFFFFF" class="bi bi-plus" viewBox="0 0 16 16"><path 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 4"/></svg>');
}

.accordion.hero .accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    box-shadow: none;
    border: none;
    padding: 0;
}

@media only screen and (max-width:1023px) {

    /* ---------------------------- */
    /* Typography                   */
    /* ---------------------------- */
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    p,
    button,
    a {
        font-size: 13px;
    }

    .heading-bg {
        padding: 0;
        margin-left: 0;
    }

    .text-404 {
        font-size: 50px;
    }

    .counter-text {
        font-size: 42px;
    }

    .large-text {
        font-size: 40px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    /* ---------------------------- */
    /* Button and Links Setting     */
    /* ---------------------------- */
    .btn {
        font-size: 13px;
        width: 100%;
    }

    /* ---------------------------- */
    /* Header and Navigation Setting  */
    /* ---------------------------- */
    .logo-container {
        max-width: 180px;
        flex-shrink: 0;
    }
    .logo-container img {
        max-width: 170px;
        height: 40px !important;
        width: auto !important;
        object-fit: contain;
    }
    .animated-gradient.heroheader {
        padding-top: 100px !important;
        padding-bottom: 3rem !important;
        min-height: 480px;
    }
    .navbar-collapse {
        background: rgba(0, 15, 40, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(232, 201, 122, 0.15);
        border-radius: 12px;
        padding: 16px;
        margin-top: 10px;
    }

    .nav-link {
        padding-block: 0.2rem;
        text-align: center;
    }

    #header {
        background: transparent;
    }

    .offcanvas-fullwidth {
        width: 100vw !important;
        max-width: 100vw;
    }

    /* ---------------------------- */
    /* Utility Classes              */
    /* ---------------------------- */
    .p-banner {
        color: var(--text-color);
    }

    .w-max-content {
        width: 100%;
    }

    .section {
        padding: 4em 2em 4em 2em;
    }

    .doubleContain {
        padding-bottom: 8em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .text-404 {
        font-size: 8rem;
        font-weight: 700;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }


    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .outer-margin {
        margin-right: 0;
    }

    .banner-image {
        margin: 0;
        transform: none;
    }

    .testimonial-img {
        margin: 0;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        width: 100%;
        box-shadow: none;
    }

    .video-e119 {
        width: 85%;
        margin-left: -1.5rem;
    }

    .dropdown-item {
        padding-block: 0.35rem;
        text-align: center;
        background-color: var(--accent-color-4);
    }

    .floating-image {
        margin-left: 0;
    }

    .floating-price {
        top: -2.5rem;
        right: -7.5rem;
    }

    .floating-heading {
        margin-left: 0;
    }

    .floating-banner {
        top: 0;
        left: 0;
        right: 0;
        margin-right: 1rem;
        margin-left: 1rem;
        margin-top: -10rem;
    }

    .floating-top {
        margin-top: 0;
    }

    .floating-testi {
        margin-bottom: 1rem;
        margin-top: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .floating-services {
        position: relative;
        z-index: 9999;
        margin-top: 3rem;
        margin-bottom: 1rem;
    }

    .floating-services-2 {
        margin-left: 0;
    }

    .floating-services-2 .padding {
        padding-left: 3rem;
    }

    .floating-services-3 {
        position: relative;
        margin-top: 1rem;
        margin-bottom: -3rem;
    }

    .floating-services-3 .padding {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .floating-bottom {
        position: initial;
        top: 0;
        left: 0;
    }

    .floating-bottom-1 {
        position: initial;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .floating-bottom-2 {
        position: initial;
        bottom: 0;
        right: 0;
        left: 0;
        margin-top: 1rem;
    }

    .floating-contact {
        margin-left: 0rem;
    }

    .floating-counter {
        position: relative;
        margin-top: -5rem;
        z-index: 9999;
    }

    .floating-blog {
        margin-top: 0;
    }

    .border-testimonial {
        border-right: none;
    }

    .card-counter {
        align-items: start;
    }

    .card-content {
        flex-direction: column;
    }

    .service-container {
        background-color: transparent;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .navigation {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
        gap: 1rem;
    }

    .navigation img {
        margin-block: 0;
        height: 0;
    }

    .navigation:hover img {
        height: 100%;
    }

    .appointment-box {
        top: -2rem;
        bottom: 0;
        left: 0;
        right: 0;
        height: 8rem;
    }

    .w-md-70 {
        width: 70%;
    }

    .w-md-60 {
        width: 60%;
    }

    .position-responsive {
        position: relative;
    }

    .form-appointment-container {
        position: relative;
        transform: translateY(0);
    }

    .list-flush-horizontal {
        flex-direction: column;
    }

    .list-flush-horizontal .list-item:first-child,
    .list-flush-horizontal .list-item {
        border-right: none;
        border-bottom: 1px solid white;
    }

    .list-flush-horizontal .list-item:last-child {
        border-left: none;
        border-bottom: none;
        border-top: 1px solid white;
    }

    .position-xl-absolute {
        position: static;
    }

    .banner-heading {
        font-size: 2.5rem;
    }

    .tab-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .class-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    footer .d-flex.flex-column {
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        padding: 0 0 0 0;
    }

    footer .link.d-flex.flex-row {
        text-align: center;
        justify-content: center;
        align-items: center;

    }

    footer .list {
        padding: 0 0 0 0;
    }

    .footer {
        position: relative;
    }

    .footer-img {
        position: relative;
    }

    .features-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .testimonial-container {
        background-color: var(--accent-color-2);
        padding: 1rem;
        border-radius: 10px;

    }

    .swiperTestimonials2 {
        height: 500px;
    }

    .swiperImage {
        padding-bottom: 0;
    }

    .service-scroll {
        padding-right: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        visibility: hidden;
        display: none;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        visibility: hidden;
        display: none;
    }

    .btn-play {
        margin-left: 70%;
    }

    .card-feature {
        margin-left: 0px;
        max-width: 100%;
    }

    .cta p {
        color: var(--text-color-2);
    }

    .cta h2 {
        color: var(--text-color);
    }

}

/* 3D Gold Cybersecurity Element - FAQ Section */
.cyber-3d-container {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    cursor: pointer;
}

.gold-shield-3d {
    position: relative;
    width: 280px;
    height: 330px;
    transform-style: preserve-3d;
    animation: shieldFloat3d 6s ease-in-out infinite;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.gold-shield-3d:hover {
    animation-play-state: paused;
    filter: drop-shadow(0 0 40px rgba(200, 155, 45, 0.6));
}

.shield-core {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.shield-icon {
    width: 220px;
    height: 260px;
    filter: drop-shadow(0 0 30px rgba(200, 155, 45, 0.4));
    animation: iconPulse 4s ease-in-out infinite;
    transition: filter 0.3s ease;
}

.shield-ring {
    position: absolute;
    border: 2px solid rgba(200, 155, 45, 0.3);
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.ring-outer {
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.ring-inner {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
}

/* Floating Security Nodes */
.security-node {
    position: absolute;
    animation: nodeOrbit 8s linear infinite;
    filter: drop-shadow(0 0 15px rgba(200, 155, 45, 0.5));
}

.node-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200,155,45,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

.node-a {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.node-b {
    bottom: 20%;
    left: 10%;
    animation-delay: 2.5s;
}

.node-c {
    top: 60%;
    right: 5%;
    animation-delay: 5s;
}

/* Data Particles */
.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #C89B2D;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(200, 155, 45, 0.8);
    animation: particleFlow 5s linear infinite;
}

.p1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.p2 {
    top: 50%;
    right: 25%;
    animation-delay: 1.5s;
}

.p3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 3s;
}

/* Animations */
@keyframes shieldFloat3d {
    0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(0deg); }
    25% { transform: translateY(-10px) rotateY(5deg) rotateX(2deg); }
    50% { transform: translateY(0) rotateY(0deg) rotateX(0deg); }
    75% { transform: translateY(-5px) rotateY(-5deg) rotateX(-2deg); }
}

@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(200, 155, 45, 0.3)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 40px rgba(200, 155, 45, 0.6)); transform: scale(1.02); }
}

@keyframes ringExpand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    50% { opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

@keyframes nodeOrbit {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -10px) scale(1.1); }
    50% { transform: translate(0, -15px) scale(1); }
    75% { transform: translate(-10px, -5px) scale(0.95); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes particleFlow {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(15px, -15px) scale(1.3); opacity: 0.7; }
    100% { transform: translate(30px, -30px) scale(1); opacity: 0; }
}

/* Responsive for 3D element */
@media (max-width: 991px) {
    .cyber-3d-container {
        height: 320px;
    }
    .gold-shield-3d {
        width: 200px;
        height: 240px;
    }
    .shield-icon {
        width: 160px;
        height: 190px;
    }
    .ring-outer { width: 280px; height: 280px; }
    .ring-inner { width: 220px; height: 220px; }
    .security-node {
        transform: scale(0.8);
    }
}
/* FAQ Section Accordion Override */
#faqAccordion1 .accordion-item {
    background-color: rgba(0, 13, 34, 0.75) !important;
    border: 1px solid rgba(200, 155, 45, 0.35) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

#faqAccordion1 .accordion-item:hover {
    background-color: rgba(0, 20, 50, 0.9) !important;
    border-color: rgba(200, 155, 45, 0.7) !important;
    box-shadow: 0 8px 32px rgba(200, 155, 45, 0.2), 0 0 0 1px rgba(200, 155, 45, 0.3);
}

#faqAccordion1,
#faqAccordion1 .accordion-item,
#faqAccordion1 .accordion-collapse,
#faqAccordion1 .accordion-body {
    width: 100%;
    max-width: 100%;
}

#faqAccordion1 .accordion-button {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    background-color: transparent !important;
    white-space: normal !important;
    text-align: left !important;
    line-height: 1.5 !important;
    padding: 1rem 2.75rem 1rem 1rem !important;
}

#faqAccordion1 .accordion-button:not(.collapsed) {
    color: #E8C97A !important;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(200, 155, 45, 0.2) !important;
    box-shadow: none !important;
}

#faqAccordion1 .accordion-body {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    background-color: transparent !important;
    padding: 0.75rem 1rem 1.25rem !important;
    text-align: left !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

#faqAccordion1 .accordion-item:hover {
    transform: none;
}

@media (max-width: 767.98px) {
    .accordion .accordion-button {
        font-size: 15px !important;
        padding: 0.875rem 2.5rem 0.875rem 0.875rem !important;
    }

    .accordion .accordion-body {
        font-size: 14px;
        padding: 0.5rem 0.875rem 1rem;
        line-height: 1.7;
    }

    .accordion .accordion-item:hover {
        transform: none;
    }

    #faqAccordion1 .accordion-button {
        font-size: 15px !important;
        padding: 0.875rem 2.5rem 0.875rem 0.875rem !important;
    }

    #faqAccordion1 .accordion-body {
        font-size: 14px !important;
        padding: 0.5rem 0.875rem 1rem !important;
    }
}



/* About Page Marquee Badges */
.about-badge {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    padding: 6px 16px;
    border: 1px solid rgba(200, 155, 45, 0.25);
    border-radius: 100px;
    background: rgba(0, 13, 34, 0.4);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.about-badge:hover {
    color: #E8C97A;
    border-color: rgba(200, 155, 45, 0.6);
    background: rgba(200, 155, 45, 0.08);
}

.about-badge.text-accent {
    color: #E8C97A;
}

/* About Page - Ecosystem & Framework Badges */
.eco-badge {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    padding: 10px 20px;
    border: 1px solid rgba(200,155,45,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    min-width: 130px;
    justify-content: center;
}
.eco-badge:hover {
    border-color: rgba(200,155,45,0.55);
    background: rgba(200,155,45,0.08);
    color: #E8C97A;
}

.fw-badge {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    padding: 10px 22px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    cursor: default;
}
.fw-badge.active-fw {
    color: #E8C97A;
    border-color: rgba(200,155,45,0.45);
    background: rgba(200,155,45,0.07);
}
.fw-badge:hover {
    border-color: rgba(200,155,45,0.6);
    color: #E8C97A;
    background: rgba(200,155,45,0.1);
}

/* Why Choose ManyTek - Card Icons */
.why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,155,45,0.2), rgba(200,155,45,0.05));
    border: 1.5px solid rgba(200,155,45,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon {
    color: #E8C97A;
    font-size: 20px;
}

/* Card 1: Shield - radar pulse */
@keyframes shieldPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(232,201,122,0)); }
    50% { transform: scale(1.18); filter: drop-shadow(0 0 8px rgba(232,201,122,0.8)); }
}
.shield-pulse { animation: shieldPulse 2.4s ease-in-out infinite; }

/* Card 2: Network - connection beat */
@keyframes networkBeat {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    25% { transform: scale(1.12) rotate(-6deg); opacity: 0.85; }
    75% { transform: scale(1.12) rotate(6deg); opacity: 0.85; }
}
.network-beat { animation: networkBeat 2s ease-in-out infinite; }

/* Card 3: Globe - slow spin */
@keyframes globeSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
.globe-spin { animation: globeSpin 5s linear infinite; transform-style: preserve-3d; }

/* About Page Counter HR lines - gold theme */
.card-counter hr.accent-color-5 {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, rgba(200,155,45,0.8) 0%, rgba(200,155,45,0.15) 100%);
    opacity: 1;
}

/* Story / Mission / Purpose Card Icons */
.story-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,155,45,0.2), rgba(200,155,45,0.04));
    border: 1.5px solid rgba(200,155,45,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.story-icon {
    font-size: 19px;
    color: #E8C97A;
}

/* Card 1 - Our Story: book flip */
@keyframes bookFlip {
    0%, 100% { transform: rotateY(0deg); }
    40% { transform: rotateY(-20deg); }
    60% { transform: rotateY(20deg); }
}
.icon-story { animation: bookFlip 3s ease-in-out infinite; transform-style: preserve-3d; }

/* Card 2 - Our Mission: bullseye ripple expand */
@keyframes targetPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.7; filter: drop-shadow(0 0 6px rgba(232,201,122,0.7)); }
}
.icon-mission { animation: targetPulse 2s ease-in-out infinite; }

/* Card 3 - Our Purpose: globe slow spin */
@keyframes globeRotate {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}
.icon-vision { animation: globeRotate 6s linear infinite; transform-style: preserve-3d; }

/* Team/Service page marquee badges */
.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border: 1.5px solid rgba(232, 201, 122, 0.55);
    border-radius: 40px;
    background: rgba(232, 201, 122, 0.10);
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.3px;
    box-shadow: 0 0 12px rgba(232, 201, 122, 0.12);
    transition: all 0.3s ease;
}
.team-badge i {
    color: #E8C97A;
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(232,201,122,0.5));
}
.team-badge:hover {
    background: rgba(232, 201, 122, 0.20);
    border-color: #E8C97A;
    color: #E8C97A;
    box-shadow: 0 0 20px rgba(232, 201, 122, 0.25);
}
/* Marquee section background strip */
.marquee-container.partner {
    background: rgba(232, 201, 122, 0.04);
    border-top: 1px solid rgba(232, 201, 122, 0.15);
    border-bottom: 1px solid rgba(232, 201, 122, 0.15);
    padding: 18px 0;
}

/* Service page card icon animations */
.svc-hero-icon {
    color: rgba(232, 201, 122, 0.9) !important;
    filter: drop-shadow(0 0 12px rgba(232, 201, 122, 0.6));
    position: relative;
    z-index: 1;
}
@keyframes msspPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(232,201,122,0.5)); }
    50% { transform: scale(1.18); filter: drop-shadow(0 0 28px rgba(232,201,122,1)); }
}
@keyframes socRadar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes workforceBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes threatScan {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(232,201,122,0.4)); }
    50% { transform: scale(1.2); filter: drop-shadow(0 0 28px rgba(232,201,122,0.95)); }
}
@keyframes pipelineFlip {
    0%, 70%, 100% { transform: rotateY(0deg); }
    35% { transform: rotateY(180deg); }
}
.mssp-pulse { animation: msspPulse 2.5s ease-in-out infinite; }
.soc-radar { animation: socRadar 5s linear infinite; }
.workforce-bounce { animation: workforceBounce 2s ease-in-out infinite; }
.threat-scan { animation: threatScan 2.8s ease-in-out infinite; }
.pipeline-flip { animation: pipelineFlip 4s ease-in-out infinite; transform-style: preserve-3d; }
@keyframes msspPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(232,201,122,0.4)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 18px rgba(232,201,122,0.9)); }
}
@keyframes socRadar {
    0% { transform: rotate(0deg); filter: drop-shadow(0 0 6px rgba(232,201,122,0.4)); }
    100% { transform: rotate(360deg); filter: drop-shadow(0 0 14px rgba(232,201,122,0.7)); }
}
@keyframes workforceBounce {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}
@keyframes threatScan {
    0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 6px rgba(232,201,122,0.3)); }
    25% { transform: scale(1.1) rotate(-8deg); filter: drop-shadow(0 0 16px rgba(232,201,122,0.8)); }
    75% { transform: scale(1.1) rotate(8deg); filter: drop-shadow(0 0 16px rgba(232,201,122,0.8)); }
}
@keyframes pipelineFlip {
    0%, 80%, 100% { transform: rotateY(0deg); }
    40% { transform: rotateY(180deg); }
}
.mssp-pulse { animation: msspPulse 2.5s ease-in-out infinite; }
.soc-radar { animation: socRadar 4s linear infinite; }
.workforce-bounce { animation: workforceBounce 2s ease-in-out infinite; }
.threat-scan { animation: threatScan 3s ease-in-out infinite; }
.pipeline-flip { animation: pipelineFlip 3.5s ease-in-out infinite; transform-style: preserve-3d; }

/* ── 3D Testimonial Cards ── */
.card-testimonial-3d {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,155,45,0.18);
    border-radius: 14px;
    padding: 24px 28px;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateZ(0);
    transition: transform 0.35s cubic-bezier(.17,.67,.36,1.2),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    box-shadow:
        0 4px 24px rgba(0,0,0,0.35),
        0 1px 0 rgba(200,155,45,0.08) inset;
    cursor: default;
    will-change: transform;
    overflow: hidden;
}
.card-testimonial-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg,
        rgba(200,155,45,0.07) 0%,
        transparent 50%,
        rgba(0,100,255,0.04) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.card-testimonial-3d::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,155,45,0.5), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 14px 14px 0 0;
}
.card-testimonial-3d:hover {
    transform: perspective(900px) rotateX(-4deg) rotateY(3deg) translateZ(18px);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.55),
        0 0 30px rgba(200,155,45,0.12),
        0 1px 0 rgba(200,155,45,0.15) inset;
    border-color: rgba(200,155,45,0.45);
}
.card-testimonial-3d:hover::before { opacity: 1; }
.card-testimonial-3d:hover::after  { opacity: 1; }

/* ── Mega Menu Active Nav Link ── */
.mega-dropdown > .nav-link.active {
    color: #E8C97A !important;
}

/* ── Mega Menu Item: icon + description layout ── */
.mega-menu-item {
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 6px 8px !important;
    font-size: 12.5px !important;
}
.mega-menu-item i {
    font-size: 14px !important;
}
.mega-menu-item .small {
    font-size: 11px !important;
}
.mega-menu-item i {
    margin-top: 2px;
    flex-shrink: 0;
}
.mega-menu-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.mega-menu-item strong {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.mega-menu-item:hover strong {
    color: #C89B2D;
}

/* ── Mega Menu Mobile Fix ── */
@media (max-width: 1199px) {
    .mega-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(0, 15, 40, 0.6) !important;
        border: none !important;
        border-left: 2px solid rgba(200, 155, 45, 0.4) !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        margin: 4px 0 4px 12px !important;
        padding: 10px 12px !important;
        display: none;
    }
    .mega-dropdown.open .mega-menu {
        display: block !important;
    }
    .mega-menu-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }
    .mega-menu-item {
        padding: 8px 8px !important;
        font-size: 13px !important;
    }
    .mega-menu-item .small {
        display: none;
    }
    .mega-dropdown > .nav-link::after {
        content: ' ▾';
        font-size: 10px;
        opacity: 0.7;
    }
    .mega-dropdown.open > .nav-link::after {
        content: ' ▴';
    }
}

/* ── Scroll To Top Button ── */
#scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C89B2D 0%, #E8C97A 50%, #C89B2D 100%);
    background-size: 200% 200%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(200, 155, 45, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.3s ease;
    pointer-events: none;
    animation: scrollBtnGradient 3s ease infinite;
}
#scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#scroll-to-top:hover {
    box-shadow: 0 6px 30px rgba(200, 155, 45, 0.8);
    transform: translateY(-3px);
}
#scroll-to-top svg {
    width: 20px;
    height: 20px;
    fill: #001B44;
    transition: transform 0.2s ease;
}
#scroll-to-top:hover svg {
    transform: translateY(-2px);
}
@keyframes scrollBtnGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@media (max-width: 768px) {
    #scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}


/* Contact form select dropdown options */
.form select option {
    background-color: #001B44;
    color: rgba(255, 255, 255, 0.9);
}
.form select option:hover,
.form select option:checked {
    background-color: rgba(232, 201, 122, 0.2);
    color: #E8C97A;
}
