:root {
    --navy-dark: #000050;
    --navy-gradient: radial-gradient(circle at top right, #1a1a5e 0%, #000037 100%);
    --accent-yellow: #f5af32;
    --text-muted: #717a84;
}
:root {
    --bg-navy: #000050;
    --card-bg: #11114d;
    --accent-orange: #f5af32;
    --accent-cyan: #00d4ff;
    --silver: #a8b2d1;
}

.bg-dark-navy {
    background-color: var(--bg-navy);

}
.text-accent-orange {
    color: var(--accent-orange);
}
.text-accent-cyan {
    color: var(--accent-cyan);
}
.text-silver {
    color: var(--silver);
}
body {
    font-family: 'roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
}
.hero-section {
    background: var(--navy-dark);
    position: relative;
    /* padding-top: 100px; */
}
/* .hero-bg-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../img/gradient-bg.svg) no-repeat top center;
} */
.hero-bg-glow {

    background: #eee url(../img/gradient-bg.svg) no-repeat top center;
    background-size: cover;
}
.dark-bg-glow {

    background: url(../img/gradient-bg-2.svg) no-repeat top center;
    background-size: cover;
}
.dark-bg-glow-1 {

    background: url(../img/gradient-bg-3.svg) no-repeat top center;
    background-size: cover;
}
.dark-bg-glow-2 {

    background: url(../img/gradient-bg-4.svg) no-repeat top center;
    background-size: cover;
}
.placeholder-img {
    height: 120px;
    width: 100%;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1) !important;
}

.floating-img {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Nav Styles */
.navbar.scrolled {
    background: var(--navy-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    min-height: 70px;
}

.footer-cta {
    background: var(--navy-dark);
}

/* Animation Classes */
.animate-up,
.animate-left,
.animate-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-up {
    transform: translateY(50px);
}

.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.pos-rel {
    position: relative;
}

.pos-ab {
    position: absolute;
}

.arkos-banner {
    top: -290px;
    right: -100px;
}

.text-cap {
   
    font-weight: 700;
    color: #BBB0FF !important;
    font-size: 20px !important;
}

.hero-section .lead {
    font-size: 16px;
}

.mt-100 {
    margin-top: -100px;
}

.gradient-text {
    background: linear-gradient(35deg, #d00a73, #7326F1, #030d54);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

}

.title-sub {
    color: #f5af32;
    font-size: 20px;
    font-weight: bold;
}

.bg-light-gray {
    background: #eee;
}

/* Ensure the sticky container has a top offset */

.sticky-content {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    /* Offset from the top of the viewport */
    height: fit-content;
}

/* Optional: Smooth the transition for mobile */
@media (max-width: 991px) {
    .sticky-content {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 40px;
    }
}

.item-block {
    min-height: 60vh;
    /* Ensures the right side is long enough to pin the left side */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Stacking Card Logic */
.stack-card-container {
    padding-top: 20px;
    /* Offset to stack from top */
    transition: transform 0.3s ease-out;
}

/* Increase top offset for each subsequent card so they peek out or stack */
#card-1 {
    top: 50px;
}

#card-2 {
    top: 80px;
}

#card-3 {
    top: 110px;
}


.stack-card {
    /* 1. Semi-transparent background (Glass base) */
    background: rgba(43, 43, 88, 0.4);

    /* 2. The "Frozen" Blur Effect */
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    /* Safari Support */

    /* 3. Frosty Border (Simulates light hitting the glass edge) */
    border: 1px solid rgba(255, 255, 255, 0.15);

    /* 4. Soft Shadow for Depth */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Keep your existing properties */
    border-radius: 10px;
    min-height: 380px;
    transform-origin: top center;
    transition: transform 0.5s ease, background 0.3s ease;
}

/* Optional: Add a subtle inner glow */
.stack-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(9, 0, 78, 0.2) 0%, rgba(60, 0, 82, 0) 100%);
    pointer-events: none;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-yellow);
    opacity: 1;
}

.card-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .stack-card {
        min-height: auto;
    }

    .stack-card-container {
        position: relative !important;
        top: 0 !important;
    }
}

.number-outline {
    font-size: 10rem;
    bottom: -70px;
}

.phase-sidebar {
    background-color: #d1d5db;
}

.header-label {
    font-size: 20px;
    color: #000050;
    text-transform: none;
    font-weight: 700;
}

.fabric-circle {
    width: 55px;
    height: 55px;
    background-color: #f5af32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000037;
    flex-shrink: 0;
}

/* Bullet Styles */
.fabric-list {
    padding-left: 1rem;
    margin: 0;
}

.fabric-list li {
    margin-bottom: 0.6rem;
    position: relative;
    font-size: 0.85rem;
    line-height: 1.4;
}



.list-cyan li {
    color: #d1d5db;
}

.list-cyan li::before {
    color: #00d4ff;
}

.list-white li {
    color: #ffffff;
}

.list-white li::before {
    color: #ffffff;
}

/* Content Block Height & Borders */
.content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.border-bottom-cyan {
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.border-bottom-white {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .h-25 {
        height: auto !important;
    }

    .col-lg-3 {
        margin-bottom: 2rem;
    }

    .header-label {
        text-align: left;
        padding-left: 1rem;
    }
}

.fabric-box {
    columns: #fff;
    background-color: var(--bg-navy);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1) !important;
}

.fabric-box-light {
    columns: #fff;
    background-color: #3e3e8a
}

.fabric-box-light ul li,
.fabric-box ul li {
    color: #fff;
}

.fabric-box-light ul,
.fabric-box ul {
    padding-top: 20px;
    padding-bottom: 20px;
}

.content-block.border-bottom {
    border-bottom: 1px solid #2b2b8c !important;
}

/* --- Interaction Effects --- */
.transition-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.transition-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 80, 0.2) !important;
    z-index: 5;
}

.stack-box {
    min-height: 300px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #000037;
}

/* 1. Background Image Animation: Blur and Fade */
.stack-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1),
        filter 0.8s ease,
        opacity 0.8s ease;
    z-index: 1;
    opacity: 0.8;
    /* Slight fade in normal state */
}

/* 2. Dark Overlay Transition */
.box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 55, 0.95) 0%, rgba(0, 0, 55, 0.3) 100%);
    z-index: 2;
    transition: background 0.6s ease;
}

/* 3. Content Visibility and Creative Animation */
.default-content {
    transition: all 0.5s ease;
    transform: translateY(0);
}

.hover-content {
    position: absolute;
    bottom: 30px;
    left: 50px;
    right: 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);

}

/* Staggered Bullet Point Animation */
.stagger-item {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.6s ease-in-out;
}

/* --- THE CREATIVE HOVER TRIGGER --- */

.stack-box:hover .stack-bg {
    filter: blur(3px);
    /* Smooth Blur */
    opacity: 0.6;
    /* Fade Out */
    transform: scale(1.1);
    /* Slow Zoom */
}

.stack-box:hover .box-overlay {
    background: rgba(0, 0, 55, 0.5);
    /* Deepen background for text */
}

.stack-box:hover .default-content {
    opacity: 0;
    transform: translateY(-90px);
}

.stack-box:hover .hover-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Apply Stagger to list items */
.stack-box:hover .stagger-item:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateX(0);
}

.stack-box:hover .stagger-item:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateX(0);
}

.stack-box:hover .stagger-item:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateX(0);
}

.stack-box:hover .stagger-item:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateX(0);
}

.stack-box:hover .stagger-item:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateX(0);
}

/* Circle Icon Styling */
.reveal-btn {
    width: 45px;
    height: 45px;
    background-color: #f5af32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.check-icon {
    width: 30px;
    height: 30px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.check-icon img {
    width: 24px;
    height: 24px;
}

.stack-label {
    font-size: 20px;
}

.list-unstyled {
    list-style: disc;
    padding-left: 20px;
}

.grid-container {
    display: grid;
    /* This creates 4 columns on desktop, 2 on tablet, 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.flip-card {
    background: #fff;
    border-radius: 10px;
    height: 280px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
    /* Entrance Animation */
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Staggered delay for each card */
.flip-card:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card:nth-child(4) {
    animation-delay: 0.4s;
}

.accent-bar {
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 6px;
    background: var(--gold);
    transition: var(--transition);
    z-index: 2;
}

.card-content {
    padding: 20px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.front,
.back {
    transition: var(--transition);
}

.card-num {
    font-size: 60px;
    font-weight: 200;
    color: transparent;
    -webkit-text-stroke: 1px var(--navy);
    display: block;
    margin-bottom: 15px;
}

.card-title {
    font-size: 20px;
    color: var(--navy);
    margin: 0;
}

.back {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    opacity: 0;
    transform: translateY(20px);
    color: #fff;
}

.back p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

/* --- HOVER EFFECTS --- */

.flip-card:hover {
    background: var(--navy);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 77, 0.25);
}

.flip-card:hover .accent-bar {
    opacity: 0;
}

.flip-card:hover .front {
    opacity: 0;
    transform: translateY(-20px);
}

.flip-card:hover .back {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    width: 100%;
    max-width: 800px;
    min-height: 150px;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

/* Orange Accent Bar */
.accent-bar {
    position: absolute;
    left: 0;
    top: 30%;
    height: 40%;
    width: 10px;
    background-color: var(--accent-orange);
    transition: opacity var(--transition-speed);
}

/* Normal State Typography */
.card-header {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.card-number {
    font-size: 80px;
    font-weight: 200;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--navy-dark);
    line-height: 1;
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-dark);
    margin: 0;
    max-width: 400px;
}

/* Hover State Typography */
.card-body {
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.hover-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

/* --- UPDATED HOVER EFFECTS --- */

.info-card:hover {
    background-color: var(--navy-dark);
    transform: translateY(0px);
    /* Slightly increased lift for better shadow visibility */

    /* Added a deeper, colored shadow on hover */
    box-shadow: 0 20px 40px rgba(0, 0, 77, 0.3),
        0 15px 20px rgba(0, 0, 0, 0.1);
}

.info-card:hover .accent-bar {
    opacity: 0;
}

.info-card:hover .card-header {
    opacity: 0;
    transform: translateY(-15px);
    /* Smooth exit upward */
}

.info-card:hover .card-body {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
    /* Slight delay so it feels like the front content cleared first */
    transition: all ease-in-out .4s;
}

.slider-section {
    background-color: var(--navy-deep);
    padding: 80px 0;
    overflow: hidden;
}

.swiper {
    width: 100%;
    padding: 50px 30px !important;
    /* Extra padding for the zoom effect */
}

.swiper-slide {
    width: auto;
    /* Allows Swiper to calculate width based on slidesPerView */
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease;
}

.slide-card {
    width: 100%;
    /* Semi-transparent background */
    background: rgba(43, 43, 88, 0.4);

    /* The "Glass" blur effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Subtle border to define the edges in the dark */
    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 20px;
    /* Slightly rounder for a softer glass look */
    padding: 40px;
    color: white;
    cursor: grab;
    user-select: none;

    /* Combined transition for hover effects */
    transition:
        transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s ease,
        background 0.4s ease,
        border 0.4s ease;
}

/* Hover State for Glassmorphism */
.slide-card:hover {
    transform: scale(1.05);
    /* Brighten the glass and border on hover */
    background: rgba(43, 43, 88, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);

    /* Multi-layered shadow for depth */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.slide-card:active {
    cursor: grabbing;
}

.slide-card:active {
    cursor: grabbing;
}

/* --- HOVER ZOOM EFFECT --- */
.slide-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.slide-title {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.slide-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.slide-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #b0b3c5;
}

.slide-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
}

.slide-footer {
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.check-icon {
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* Customizing Swiper Pagination Dots */
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--accent-yellow) !important;
    opacity: 1;
}

/* Customizing Arrow Appearance */
.swiper-button-next, 
.swiper-button-prev {
    color: #ffffff; /* Adjust to Trigent's primary blue or your brand color */
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 18px; /* Makes the arrow icons smaller/cleaner */
    font-weight: bold;
}

/* Positioning them slightly outside on larger screens */
@media (min-width: 1200px) {
    .swiper-button-next { right: 0px; }
    .swiper-button-prev { left: 0px; }
}
/* Positioning them slightly outside on larger screens */
@media (max-width: 678px) {
    .swiper-button-next { right: -20px;  display: none;}
    .swiper-button-prev { left:-20px; display: none; }
}



.footer-cta p {
    font-size: 14px;
    color: #000;
}

.btn-flash-gradient {
    /* Dimensions & Radius */
    position: relative;
    padding: 20px 20px;
    border-radius: 10px;
    /* As requested */
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 18px;

    /* Typography */
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #000;

    /* 1. Animated Gradient Background */
    background: linear-gradient(45deg,
            #ffc107,
            /* Your Yellow */
            #ffdb6e,
            /* Light Flash */
            #ff8f00,
            /* Matching Theme Gold/Orange */
            #ffc107);
    background-size: 400% 400%;
    animation: gradientFlow 3s ease infinite;

    /* Initial Shadow */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

/* 2. Flashy Lighting Effect (The "Flare") */
.btn-flash-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            /* The Bright Flash */
            transparent);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- HOVER ANIMATION --- */
.btn-flash-gradient:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.6),
        0 0 50px rgba(255, 193, 7, 0.2);
}

/* Trigger the Light Flash on Hover */
.btn-flash-gradient:hover::before {
    left: 150%;
}

/* Intense Glow Pulse */
.btn-flash-gradient:hover {
    animation: pulseGlow 1.5s infinite alternate;
}

/* Keyframes for the Gradient Movement */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Keyframes for the Flashy Lighting Pulse */
@keyframes pulseGlow {
    from {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
    }

    to {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 193, 7, 0.8);
    }
}

.btn-text {
    position: relative;
    z-index: 1;
    /* Keep text above the flash */
}

.btn-flash-gradient-1 {
    /* Dimensions & Radius */
    position: relative;
    padding: 20px 20px;
    border-radius: 10px;
    /* As requested */
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 18px;

    /* Typography */
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #000;

    /* 1. Animated Gradient Background */
    background: linear-gradient(45deg,
            #ffffff,
            /* Your Yellow */
            #ffedb5,
            /* Light Flash */
            #ffffff,
            /* Matching Theme Gold/Orange */
            #fce8a9);
    background-size: 400% 400%;
    animation: gradientFlow 3s ease infinite;

    /* Initial Shadow */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

/* 2. Flashy Lighting Effect (The "Flare") */
.btn-flash-gradient-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(254, 218, 74, 0.8),
            /* The Bright Flash */
            transparent);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- HOVER ANIMATION --- */
.btn-flash-gradient-1:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6),
        0 0 50px rgba(255, 193, 7, 0.2);
}

/* Trigger the Light Flash on Hover */
.btn-flash-gradient-1:hover::before {
    left: 150%;
}

/* Intense Glow Pulse */
.btn-flash-gradient-1:hover {
    animation: pulseGlow 1.5s infinite alternate;
}

/* Keyframes for the Gradient Movement */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Keyframes for the Flashy Lighting Pulse */
@keyframes pulseGlow {
    from {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
    }

    to {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 193, 7, 0.8);
    }
}


.btn-outline-flash {
    /* Dimensions & Radius */
    position: relative;
    padding: 14px 18px;
    border-radius: 10px;
    /* Matching your 10px requirement */
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 18px;

    /* Typography */
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ffffff;
    /* Your Yellow */

    /* The static border */
    border: 2px solid rgba(255, 255, 255, 0.8);

    transition: all 0.4s ease;
}

/* 1. The Flashy Light Fill on Hover */
.btn-outline-flash::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffffff, #f9e575);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: right;
}

/* 2. The Tracing Border Effect */
.border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ffc107;
    border-radius: 10px;
    box-sizing: border-box;
    clip-path: inset(0 100% 0 0);
    /* Hidden initially */
    transition: clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- HOVER ANIMATION --- */
.btn-outline-flash:hover {
    color: #000;
    /* Text turns black when background fills */
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.btn-outline-flash:hover::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline-flash:hover .border-animation {
    clip-path: inset(0 0 0 0);
    /* Traces across the button */
}

/* Add a flashy "spark" on hover */
.btn-outline-flash:hover {
    animation: jitter 0.2s ease-in-out;
}

@keyframes jitter {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(2px);
    }

    50% {
        transform: translateX(-2px);
    }

    75% {
        transform: translateX(2px);
    }

    100% {
        transform: translateX(0);
    }
}

.title-wave-flash {
    /* 1. Create a large gradient background */
    background: linear-gradient(to right,
            #ffffff 20%,
            /* Base Text Color */
            #feda6f 40%,
            /* Flash/Wave Color (Yellow) */
            #ba90ff 60%,
            /* Flash/Wave Color (Yellow) */
            #ffffff 80%
            /* Base Text Color */
        );

    /* 2. Scale it up so it can move */
    background-size: 200% auto;

    /* 3. Clip the background to the text */
    -webkit-background-clip: text;
    background-clip: text;

    /* 4. Make the original text transparent so the background shows through */
    color: transparent;

    /* 5. Attach the animation */
    animation: textWave 4s linear infinite;

    /* Ensure the text is visible even if gradients fail to load */
    display: inline-block;
}

/* --- THE WAVE ANIMATION --- */
@keyframes textWave {
    to {
        background-position: 200% center;
    }
}

.modern-layout-section-1 {
    background-color: #eee;
    background-image: radial-gradient(circle at bottom right, rgba(135, 7, 255, 0.5), transparent 40%);
    padding: 80px 20px;
    width: 100%;
    min-height: 400px;
}

.modern-layout-section {
    /* Base background color */
    background-color: #f4f5f7;

    /* Corner Glows: Adjust opacity (0.1) or colors as needed */
    background-image:
        radial-gradient(circle at top left, rgba(135, 7, 255, 0.3), transparent 40%),
        radial-gradient(circle at bottom right, rgba(135, 7, 255, 0.5), transparent 40%);

    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    /* Keeps gradients contained */
    width: 100%;
    min-height: 400px;
}

/* Optional: Subtle animation for the corner glows to feel "alive" */
.modern-layout-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.4), transparent 50%);
    pointer-events: none;
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.navbar .btn-flash-gradient {
    font-size: 15px !important;
}


.fabric-mobile-section {
    padding: 40px 15px;
    background: #f4f5f7;
    /* Light grey base from your request */
    background-image: radial-gradient(circle at top left, rgba(168, 85, 247, 0.08), transparent 50%);
}

.mobile-header {
    text-align: center;
    margin-bottom: 30px;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.accordion-button {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-button:not(.collapsed) {
    color: #00004d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.phase-circle {
    width: 40px;
    height: 40px;
    background: #ffc107;
    /* Your Yellow */
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phase-name {
    font-weight: 700;
    font-size: 16px;
    color: #00004d;
}

.accordion-body {
    padding: 20px 10px;
}

.problem-box {
    background: rgba(43, 43, 88, 0.05);
    /* Very light navy tint */

    padding: 20px;
    border-radius: 10px;
}

.problem-box h6 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.problem-box ul {
    list-style: none;
    padding: 0;
}

.problem-box li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
}

.problem-box li::before {
    content: "•";
    color: #ffc107;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.blue-light {
    background: #3e3e8a;
    color: #fff;
}

.blue-dark {
    background: #000050;
    color: #fff;
}

.fabric-mobile-section {
    display: none;
}

.fabric-web-section {
    display: block;
}


/* Overlay Background */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 51, 0.7); /* Deep navy tint */
    backdrop-filter: blur(8px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* Glassmorphism Card */
.form-glass-card {
   
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: popupFade 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}
.close-btn:hover { opacity: 1; transform: rotate(90deg); }

/* Input Styling */
.input-group-custom {
    margin-bottom: 20px;
}

.input-group-custom input, 
.input-group-custom textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 20px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-group-custom input:focus, 
.input-group-custom textarea:focus {
    border-color: #ffc107;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

/* Animation */
@keyframes popupFade {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Show State */
.form-overlay.active {
    display: flex;
}

/* *** */
.hs-form{height:100%;display:grid;grid-template-columns:repeat(2,1fr);grid-column-gap:1rem}
.hs-form .hs-form-field{margin-bottom:1rem}
.hs-form .hs-form-field label{font-size:14px; color: #fff; margin-bottom: 10px;}
.hs-form .hs-form-field label .hs-form-required{color:#fdba33}
.hs-form .hs-error-msgs{color:#ed3c0d;text-align:left;padding:0;margin:0;font-size:12px;list-style:none}
.hs-form .hs-fieldtype-textarea{grid-column:span 2/auto}
.hs-form input,.hs-form textarea{box-shadow:none;font-size:14px;border-radius:4px;border:1px solid #d0d4fc;width:100%;outline:0}
.hs-form input:focus,.hs-form textarea:focus{border-color:#fdba33}
.hs-form input.error{border-color:#ed3c0d}
.hs-form input{padding:8px 15px}
.hs-form textarea{padding:12px 15px}
.hs-form input[type=submit]{  /* Dimensions & Radius */
    position: relative;
    padding: 20px 20px;
    border-radius: 10px;
    /* As requested */
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 18px;

    /* Typography */
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #000;

    /* 1. Animated Gradient Background */
    background: linear-gradient(45deg,
            #ffc107,
            /* Your Yellow */
            #ffdb6e,
            /* Light Flash */
            #ff8f00,
            /* Matching Theme Gold/Orange */
            #ffc107);
    background-size: 400% 400%;
    animation: gradientFlow 3s ease infinite;

    /* Initial Shadow */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;}

.hs-form input[type=submit]:hover{  transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.6),
        0 0 50px rgba(255, 193, 7, 0.2);}

.hs-form select.hs-input {display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.5rem 1.75rem .5rem .75rem;font-size:16px;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#ffffff url("data:image/svg+xml; charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3e%3cpath fill='%23404040' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3e%3c/path%3e%3c/svg%3e") no-repeat right .75rem center/12px 14px;border:1px solid #ced4da;border-radius:4px;-webkit-appearance:none;-moz-appearance:none;appearance:none;}
/* *** */

a.dark-link{ text-decoration: none; border-radius:4px; padding: 3px 10px; font-size: 18px; text-transform:none; letter-spacing: normal; margin: 0 7px;}
a.dark-link:hover{}
a.btn-flash-gradient{ display:inline-block;}






/* Optional: Smooth the transition for mobile */
@media (max-width: 991px) {
    .fabric-mobile-section {
        display: block;
    }

    .fabric-web-section {
        display: none;
    }
        html {

    overflow-x: hidden;
}


}
@media (min-width: 767px) and (max-width: 991px){
    
    .hero-bg-glow {
    background-size: unset;
}

.arkos-banner {
    top: -70px;
    width:80%;
        right: 73px;
   
}
.min-vh-100 {
    min-height: 100vh !important;
}
    .order-1 {
        order: 1 !important;
    }

    .order-2 {
        order: 2 !important;
    }

}

@media (max-width: 767px) {
    .swiper {
    width: 100%;
    padding: 50px 0 !important;
    /* Extra padding for the zoom effect */
}


    .hero-bg-glow {
    background-size: unset;
    
}


    .arkos-banner {
           top: -21px;
        width: 89%;
        right: 10px;
}

    .problem-cards img {
        margin-bottom: 24px;
    }

    .info-card {
        padding: 30px 15px;
    }

    .card-content {
        padding: 20px 10px 20px 20px;
    }

    .card-header {
        gap: 15px;
    }

    .card-number {
        font-size: 60px;
    }

    .card-body {
        left: 20px;
        right: 20px
    }

    .hover-title {
        font-size: 20px;
    }

    .info-card {
        min-height: 245px;
    }
    html {

    overflow-x: hidden;
}
.hs-form{height:100%;display:block;}
}