.custom_logo_class {
    width: 100px;
}

.custom_background_color {
    background-color: white;
}

.custom_background_color_footer {
    background: #020626;
}

.custom_hero_margin_top {
    margin-top: 160px;
}

.custom_navbar_padding_remove {
    padding-right: 0px !important;
}

/* .custom_padding_top_footer {
    padding-top: 65px !important;
} */

.custom_logo_footer {
    width: 190px;
}

.tp-job-item:hover {
    border-color: #05DAC3 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.tp-job-title .hover-color:hover {
    color: #05DAC3 !important;
}

/* Team Listing Social Icons */
.tp-team-list-social a {
    color: #111;
    transition: color 0.3s ease;
}

.tp-team-list-social a:hover {
    color: #05DAC3 !important;
}


/* =========================================
   MEGAMENU STYLES
   ========================================= */

/* Ensure parent li allows full-width dropdown behavior */
.tp-main-menu ul li.has-megamenu {
    position: static !important;
}

/* 
   MEGAMENU CONTAINER
   - Fixed Position relative to sticky header container (or absolute)
   - Left/Right: 100px (Constraint)
   - Rounded Borders
   - Shadow & Blur
*/
/* 
   MEGAMENU CONTAINER
   - Fixed Position relative to viewport
   - Left/Right: 20px (Wider but safe)
   - Height Constraint: Max height with scrolling
*/
.megamenu {
    position: fixed;
    top: 160px;
    /* Aligned with Header Bottom (Top state) */
    left: 20px;
    right: 20px;
    width: auto;
    max-height: calc(100vh - 120px);
    /* Ensure it fits in viewport */
    overflow-y: auto;
    overflow-x: hidden;

    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border-radius: 20px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(0) scale(0.99);
    transform-origin: top center;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);

    z-index: 99999 !important;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 4px solid #05DAC3;
}

/* Sticky Header Megamenu Alignment */
.tp-header-sticky .megamenu {
    top: 103px;
    /* Align with sticky header height */
}

/* Active State */
.megamenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Megamenu Inner Layout */
.megamenu-inner {
    display: flex;
    min-height: 400px;
}

/* Left Content Area (Links) */
.megamenu-content {
    flex: 1;
    padding: 40px;
    background: linear-gradient(to right, #fff, #fafcfc);
}

/* Responsive Grid */
.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 25px;
}

/* Megamenu Item (Link) */
.megamenu-item {
    display: flex !important;
    align-items: flex-start;
    padding: 18px 22px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.megamenu-item:hover {
    background: #05DAC3 !important;
    /* Solid Brand Color on Hover */
    border-color: #05DAC3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(5, 218, 195, 0.25);
}

.megamenu-icon {
    font-size: 22px;
    color: #05DAC3;
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(5, 218, 195, 0.1), rgba(5, 218, 195, 0.05));
    /* Subtle gradient */
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(5, 218, 195, 0.1);
}

/* Hover Colors - FORCE WHITE TEXT/ICON */
.megamenu-item:hover .megamenu-title {
    color: #fff !important;
    position: relative;
    z-index: 2;
}

.megamenu-item:hover .megamenu-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative;
    z-index: 2;
}

.megamenu-item:hover .megamenu-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    /* Glassy white bg for icon */
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.megamenu-item:hover .megamenu-icon i {
    color: #020626 !important;
    /* DIRECTLY target the icon element - Dark Navy for contrast */
}

.megamenu-text {
    flex: 1;
}

.megamenu-title {
    display: block;
    font-size: 15px;
    font-weight: 500;
    /* Medium for premium look */
    color: #020626;
    margin-bottom: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.015em;
    transition: color 0.2s ease;
}

.megamenu-desc {
    display: block;
    font-size: 13px;
    color: #555E68;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Plus Jakarta Sans', sans-serif;
    opacity: 0.9;
}

/* Removed redundant hover rules to avoid conflicts */

/* Right Sidebar (CTA) */
.megamenu-sidebar {
    width: 300px;
    /* Reduced width */
    background: #020626;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Abstract Background Shapes */
.megamenu-sidebar::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(5, 218, 195, 0.2), rgba(5, 218, 195, 0));
    border-radius: 50%;
}

.megamenu-sidebar::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    border-radius: 50%;
}

.megamenu-sidebar-title {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.megamenu-sidebar-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 35px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.megamenu-sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: #05DAC3;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(5, 218, 195, 0.3);
}

.megamenu-sidebar-btn:hover {
    background: #fff;
    color: #020626;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.megamenu-contact-info {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.megamenu-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.megamenu-contact-item i {
    color: #05DAC3;
    margin-right: 12px;
    font-size: 18px;
}

/* Footer Redesign Styles */
.rounded-20 {
    border-radius: 20px;
}

.rounded-top-50 {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.tp-rep-card {
    transition: all 0.3s ease;
}

.tp-rep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.tp-partner-logo {
    transition: all 0.3s ease;
    filter: grayscale(1);
    opacity: 0.7;
}

.tp-partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.hover-style:hover {
    color: #05DAC3 !important;
}

.ml-50 {
    margin-left: 50px;
}

@media (max-width: 991px) {
    .ml-50 {
        margin-left: 20px;
    }
}

.cta_Footer {
    --bs-gutter-x: 0 !important;
}

.tp-main-menu ul li a i {
    margin-right: 0px !important;
}

.megamenu-item {
    padding-left: 10px !important;
}

/* =========================================
   BREADCRUMB REDESIGN
   ========================================= */
.breadcrumb__area-redesign {
    padding-top: 150px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
    background: #EBEDF5;
    /* Slightly darker base */
    background: radial-gradient(at 10% 20%, rgba(5, 218, 195, 0.12) 0px, transparent 45%),
        radial-gradient(at 90% 80%, rgba(2, 6, 38, 0.08) 0px, transparent 45%),
        radial-gradient(at 80% 10%, rgba(5, 218, 195, 0.1) 0px, transparent 40%),
        radial-gradient(at 20% 90%, rgba(2, 6, 38, 0.06) 0px, transparent 40%);
    z-index: 1;
}

.breadcrumb__bg-overlay-solid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
}

.breadcrumb__content-redesign {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.breadcrumb__text-column {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.breadcrumb__image-column {
    flex: 0 0 450px;
    text-align: right;
    position: relative;
    z-index: 2;
}

.ai-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ai-core-svg {
    filter: drop-shadow(0 0 30px rgba(5, 218, 195, 0.2));
}

.ai-center-glow {
    animation: pulseGlow 3s infinite ease-in-out;
}

.ai-nodes circle {
    animation: floatNodes 5s infinite ease-in-out;
}

.ai-nodes circle:nth-child(2n) {
    animation-delay: -2s;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        r: 35;
    }

    50% {
        opacity: 1;
        r: 45;
    }
}

@keyframes floatNodes {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-5px) translateX(2px);
    }

    66% {
        transform: translateY(3px) translateX(-4px);
    }
}

.ai-ring-slow {
    animation: rotateSlow 20s linear infinite;
    transform-origin: center;
}

.ai-ring-fast {
    animation: rotateFast 15s linear infinite reverse;
    transform-origin: center;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateFast {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.breadcrumb__custom-img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}


.breadcrumb__description {
    font-size: 19px;
    line-height: 1.6;
    color: #5A627D;
    margin-bottom: 0;
    max-width: 90%;
}

.breadcrumb__list-redesign {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb__list-redesign span {
    color: #5A627D;
}

.breadcrumb__list-redesign span a {
    color: #020626;
    transition: color 0.3s ease;
}

.breadcrumb__list-redesign span a:hover {
    color: #05DAC3;
}

.breadcrumb__list-redesign .dvdr {
    margin: 0 12px;
    font-size: 12px;
    color: #B2B7C8;
}

@media (max-width: 1199px) {
    .breadcrumb__title-redesign {
        font-size: 52px;
    }

    .breadcrumb__image-column {
        flex: 0 0 350px;
    }
}

@media (max-width: 991px) {
    .breadcrumb__area-redesign {
        padding-top: 180px;
        padding-bottom: 80px;
    }

    .breadcrumb__content-redesign {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .breadcrumb__text-column {
        max-width: 100%;
    }

    .breadcrumb__image-column {
        flex: 1;
        text-align: center;
    }

    .breadcrumb__list-redesign {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .breadcrumb__title-redesign {
        font-size: 38px;
    }
}

/* Shapes & Extras */
.breadcrumb__shape-1 {
    position: absolute;
    top: -10%;
    left: -5%;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.breadcrumb__shape-2 {
    position: absolute;
    bottom: -10%;
    right: -5%;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

/* =========================================
   HERO SECTION REDESIGN
   ========================================= */
.hero__area-redesign {
    padding-top: 200px;
    padding-bottom: 150px;
    position: relative;
    overflow: hidden;
    background: #020626 !important;
    /* Force dark background */
    background: radial-gradient(circle at 20% 30%, rgba(5, 218, 195, 0.15) 0%, #020626 70%),
        radial-gradient(circle at 80% 70%, rgba(5, 218, 195, 0.1) 0%, #020626 70%) !important;
    z-index: 1;
}

.hero__content-redesign {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero__text-column {
    flex: 1;
    max-width: 700px;
    position: relative;
    z-index: 5;
}

.hero__visual-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero__title {
    font-size: 82px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -2px;
}

.hero__title .highlight {
    color: #05DAC3;
    display: block;
}

.hero__description {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 45px;
    max-width: 90%;
}

.hero__btn-group {
    display: flex;
    gap: 20px;
}

/* Business Structure SVG Styles */
.hero-structure-svg {
    width: 100%;
    max-width: 650px;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(5, 218, 195, 0.2));
}

.node-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    fill: #ffffff;
    font-size: 14px;
    pointer-events: none;
}

.node-circle {
    transition: all 0.3s ease;
    cursor: pointer;
}

.node-circle:hover {
    fill: #05DAC3;
    r: 45;
}

.connection-line {
    stroke: rgba(5, 218, 195, 0.2);
    stroke-dasharray: 5 5;
    animation: flowLine 10s linear infinite;
}

@keyframes flowLine {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.center-hub-glow {
    animation: hubPulse 4s infinite ease-in-out;
}

@keyframes hubPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.core-pulse {
    animation: corePulse 4s infinite ease-in-out;
    transform-origin: center;
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* Shapes */
.hero-shape {
    position: absolute;
    z-index: 2;
    opacity: 0.4;
    pointer-events: none;
}

.hero-shape-1 {
    top: -10%;
    left: -5%;
    width: 40%;
}

.hero-shape-2 {
    bottom: -10%;
    right: -5%;
    width: 30%;
}

@media (max-width: 1399px) {
    .hero__title {
        font-size: 72px;
    }
}

@media (max-width: 1199px) {
    .hero__title {
        font-size: 60px;
    }

    .hero__content-redesign {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hero__area-redesign {
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .hero__content-redesign {
        flex-direction: column;
        text-align: center;
    }

    .hero__text-column {
        max-width: 100%;
    }

    .hero__btn-group {
        justify-content: center;
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .hero__title {
        font-size: 42px;
    }

    .hero__description {
        font-size: 18px;
    }
}

/* Offcanvas Gallery Hover Styles */
.offcanvas__gallery-hover {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.offcanvas__gallery-item:hover .offcanvas__gallery-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.offcanvas__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

/* =========================================
   404 ERROR PAGE STRUCTURE REDESIGN
   ========================================= */
.error-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-structure-svg {
    filter: drop-shadow(0 0 40px rgba(5, 218, 195, 0.15));
    max-width: 100%;
    height: auto;
}

.core-pulse-error {
    animation: corePulseError 4s infinite ease-in-out;
}

@keyframes corePulseError {

    0%,
    100% {
        r: 70;
        opacity: 0.9;
        stroke-width: 3;
    }

    50% {
        r: 75;
        opacity: 1;
        stroke-width: 5;
    }
}

.node-glitch {
    animation: nodeGlitch 3s infinite ease-in-out;
}

.node-glitch-delayed {
    animation: nodeGlitch 4s infinite ease-in-out -1.5s;
}

@keyframes nodeGlitch {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.8;
    }

    20% {
        transform: translate(-3px, 2px);
        opacity: 1;
    }

    40% {
        transform: translate(2px, -3px);
    }

    60% {
        transform: translate(-1px, 1px);
    }

    80% {
        transform: translate(3px, -2px);
    }
}

.connection-line-broken {
    animation: lineFlicker 5s infinite step-end;
}

@keyframes lineFlicker {

    0%,
    100% {
        opacity: 0.2;
        stroke-dashoffset: 0;
    }

    50% {
        opacity: 0.1;
        stroke-dashoffset: 10;
    }

    25%,
    75% {
        opacity: 0.4;
    }
}

.error__content-text .error__title {
    font-size: 42px;
    font-weight: 700;
    color: #020626;
}

.error__content-text p {
    font-size: 18px;
    color: #5A627D;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}