:root {
    /* Force Segoe UI throughout Bootstrap 5 globally */
    --bs-body-font-family: 'Segoe UI', 'Manrope', "Poppins", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    --bg-dark-blue: #083C57;
    --bg-deep-blue: #083C57;
    --accent-cyan: #0396E0;
    --text-muted-blue: #FFFFFFB8;
    --teal: #006876;
    --teal-dark: #004D57;
    --cyan-gradient: linear-gradient(180deg, #03DAE0 0%, #03CBE0 39.42%, #03B3E0 100%);
    --text-muted: #6B7280;
    --border-light: #E5E7EB;
    ;
}

.text-muted {
    color: var(--text-muted-blue) !important;
}

.text-cyan {
    color: #03D5E0 !important;
}

.text-teal {
    color: #00BCD4 !important;
}

html {
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
}

body {
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
}

header.sticky-top {
    z-index: 1030;
}

.hero-section {
    background:url(../assets/hero_banner.png);
    background-repeat: no-repeat;
    background-size:cover;
    /* padding: 3.5rem 0; */
}
.hero-section p {
    font-size: 16px!important;
    color: #fff !important;
    line-height: 1.5;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background-color: #03DAE0;
    border-radius: 10px;
}

html {
    scrollbar-color: #03DAE0 #ffffff;
}

/* Mouse-move glow animation */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(3, 218, 224, 0.20) 0%, rgba(3, 179, 224, 0.10) 45%, rgba(3, 179, 224, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: transform;
}

.cursor-glow.is-active {
    opacity: 1;
}

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #03DAE0;
    box-shadow: 0 0 10px 2px rgba(3, 218, 224, 0.7);
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform;
}

.cursor-trail.is-active {
    opacity: 1;
}

/* Ensure Headings explicitly respect the Segoe UI styling override */
h1,
h2,
h3,
h4,
h5,
h6,
.display-5,
.display-6 {
    font-family: 'Segoe UI', sans-serif !important;
}

.new {
    font-family: 'Manrope';
    font-weight: 500;
    font-size: 16px;
    width: 230px;
    text-align: center;
    color: #E4F6FF;
    border: 1px solid;

    padding-top: 8px;
    padding-right: 10px;
    padding-bottom: 8px;
    padding-left: 10px;
    gap: 12px;

    border-width: 1px;
    border: 1px solid transparent;
    border-radius: 50px;
    /* Adjust radius size to match design */
    background:
        linear-gradient(#012b49, #012b49) padding-box,
        /* Inner card background color */
        linear-gradient(0deg, #656F96, #656F96) border-box,
        /* Layer 1 border */
        radial-gradient(84.27% 108.75% at 4.12% 0%, #B1C1FF 0%, rgba(177, 193, 255, 0) 100%) border-box;
    /* Layer 2 glowing border */
    animation: changeBackgroundColor 3s infinite;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

@keyframes changeBackgroundColor {

    0%,
    100% {
        background:
            linear-gradient(#012b49, #012b49) padding-box,
            linear-gradient(0deg, #656F96, #656F96) border-box,
            radial-gradient(84.27% 108.75% at 4.12% 0%, #B1C1FF 0%, rgba(177, 193, 255, 0) 100%) border-box;
        box-shadow: 0 0 0 0 rgba(3, 218, 224, 0.35);
        transform: scale(0.96);
    }

    50% {
        background:
            linear-gradient(#03B3E0, #03DAE0) padding-box,
            linear-gradient(0deg, #656F96, #656F96) border-box,
            radial-gradient(84.27% 108.75% at 4.12% 0%, #B1C1FF 0%, rgba(177, 193, 255, 0) 100%) border-box;
        box-shadow: 0 0 14px 4px rgba(3, 218, 224, 0.55);
        transform: scale(1.05);
    }
}

p.text-heroText{
    color:  #FFFFFFE0!important;font-weight: 300;font-size: 17.6px!important;
}

/* Utility Styles */
.bg-dark-blue {
    background-color: var(--bg-dark-blue);
}

.bg-deep-blue {
    background-color: var(--bg-deep-blue);
}

.text-cyan {
    color: var(--accent-cyan);
}
.navbar-brand img{
    width: 215px;
}
.navbar-brand .btn-cyan{
 padding: 10px !important;
}
.btn-cyan {
    background: linear-gradient(180deg, #03DAE0 0%, #03CBE0 39.42%, #03B3E0 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 24px;
    border: none;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    font-size: 16px;
    border-bottom: none !important;
}

.btn-cyan:hover {
    background-color: #00b3cf;
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-white img {
    vertical-align: middle;
    display: inline-flex;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #039CE0;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 24px;
    background: #FFFFFF;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--bg-dark-blue);
}

/* Site Map — CSS-only vertical page-link tree */
.sm-tree-wrap {
    max-width: 640px;
    padding: 10px 4px 20px;
}

.sm-tree,
.sm-tree ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sm-tree li {
    position: relative;
    padding: 7px 0;
}

.sm-tree ul {
    position: relative;
    margin: 6px 0 0 16px;
    padding-left: 26px;
    border-left: 2px solid rgba(3, 213, 224, 0.4);
}

.sm-tree ul li::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 22px;
    width: 26px;
    height: 0;
    border-top: 2px solid rgba(3, 213, 224, 0.55);
}

/* Footer branch (Legal / Product) — dashed, muted to distinguish from main nav */
.sm-tree-footer {
    border-left-style: dashed;
    border-left-color: rgba(176, 196, 222, 0.5);
}

.sm-tree-footer > li::before {
    border-top-style: dashed;
    border-top-color: rgba(176, 196, 222, 0.6);
}

.sm-node {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #02253d 0%, #011c2e 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFFE0;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.sm-node i {
    color: #03D5E0;
    font-size: 14px;
}

a.sm-node:hover {
    transform: translateY(-4px);
    border-color: rgba(3, 218, 224, 0.6);
    color: #03D5E0;
    box-shadow: 0 12px 24px rgba(3, 218, 224, 0.25);
}

.sm-node-root {
    background: linear-gradient(180deg, #03DAE0 0%, #03CBE0 39.42%, #03B3E0 100%);
    color: #06283e;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border: none;
    box-shadow: 0 15px 30px rgba(3, 179, 224, 0.35);
}

.sm-node-root i {
    color: #06283e;
}

a.sm-node-root:hover {
    color: #06283e;
    box-shadow: 0 18px 34px rgba(3, 179, 224, 0.45);
}

.sm-node-group {
    background: transparent;
    border: 1px dashed rgba(176, 196, 222, 0.5);
    color: #b0c4de;
    cursor: default;
}

.sm-node-group:hover {
    transform: none;
    box-shadow: none;
}

.sm-node-sm {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
}

.sitemap-legend .legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #b0c4de;
}

.legend-swatch {
    width: 28px;
    height: 0;
    border-top: 2px solid #03D5E0;
    display: inline-block;
}

.legend-swatch.legend-footer {
    border-top: 2px dashed rgba(176, 196, 222, 0.7);
}

/* Navbar Styling */
.navbar-dark .nav-link {
    color: #40474A;
    font-weight: 600;
    margin: 0px 12px;
    padding-right: 0px !important;
    padding-left: 0px !important;
    font-size: 16px;
    border-bottom: 2px solid transparent;
}

.navbar-dark .nav-link.active,
.navbar-dark .nav-link:hover {
    color: var(--accent-cyan);
    border-bottom: 2px solid var(--accent-cyan);
    ;
}

/* terminologies */

.terrminologies h3 {
    margin-bottom: 5px;
}

.terrminologies .col-md-3 {
    border-right: 0.8px solid #FFFFFF1F;
    padding: 20px 0;
}

.terrminologies .row .col-md-3:last-child {
    border-right: none
}

/* about */

.tagLine-text {
    font-family: 'Segoe UI';
    font-weight: 400;
    font-size: 14px;

}

.title-text {
    font-size: 48px;
    font-family: 'Segoe UI', sans-serif;
    line-height: 113.99999999999999%;
    font-weight: Bold;
}

.about-us p.small {
    font-family: 'Inter' !important;
    font-size: 14px !important;
    color: #4E4C49 !important;
}

.about-info h5 {
    margin-bottom: 0;
}

.lh-base {
    font-size: 46px;
    line-height: 55px;
}

.clients-tag {
    font-size: 24px;

}

.enterprise-title {
    font-size: 2.25rem;
    /* Adjust sizes dynamically as needed */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Gradient masking for the first half of the string */
.enterprise-txt {
    background: linear-gradient(90.52deg, #03B3E0 4.83%, #FFFFFF 55.68%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

/* Explicit clean transition tone targeting the final word keyword */
.simplicity-txt {
    background: linear-gradient(90.52deg, #FFFFFF 0%, #03DAE0 98.02%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

/* Features/Grid Sections */
.feature-card {
    border: 1px solid transparent;
    background:
        /* Layer A: Inner content background container */
        linear-gradient(#022339, #011a2b) padding-box,

        /* Layer B: The linear subtle outline base */
        linear-gradient(180deg, rgba(101, 111, 150, 0.3), rgba(101, 111, 150, 0.05)) border-box,

        /* Layer C: Top-centered bright radial highlight on the border */
        radial-gradient(50% 100% at 50% 0%, #03b3e0 0%, rgba(3, 179, 224, 0) 100%) border-box;

    /* 4. The Card Background Fill: Dark blue base with a faint top-center radial glow */
    background-image:
        radial-gradient(100% 100% at 50% 0%, rgba(3, 179, 224, 0.12) 0%, rgba(2, 35, 57, 0) 70%),
        linear-gradient(180deg, #02253d 0%, #011c2e 100%);

    /* 5. Smooth shadow depth */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    filter: brightness(1.15);
}

.feature-card:hover .feature-card h4,
.feature-card:hover .feature-card p {
    color: #fff !important;
}

.badge-pill-custom img {
    margin-right: 8px;
}

.feature-card h4,
.feature-card p {
    color: #FFFFFFE0!important ;
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
}

.feature-card p {
    font-size: 14px;
}

/* Icon badge - matches the boxed icon look used in the Enterprise Power cards */
.icon-badge {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #0c3a52 0%, #082a3c 100%);
    border: 1px solid rgba(3, 218, 224, 0.35);
    color: #FFFFFFE0!important;
    font-size: 26px;
}
.badge-pill-custom-custome{
    background: transparent;
    border: 1px solid #0f74a8;
    border-radius: 25px;
    padding: 8px 20px;
    color: #E4F6FF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    width: auto;
}

.badge-pill-custom {
    background: linear-gradient(0deg, #03DAE0 0%, #03CBE0 39.42%, #03B3E0 100%);
    border-radius: 25px;
    padding: 8px 20px;
    color: #E4F6FF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    width: auto;
}
.terrminologies{
 border-top: 1px solid #03D5E0!important;
}

/* Back to top button with scroll progress ring */
.back-to-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1080;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    box-shadow: 0 4px 16px rgba(8, 60, 87, 0.18);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn i {
    position: relative;
    z-index: 2;
    color: var(--accent-cyan);
    font-size: 16px;
    transition: transform .3s ease;
}

.back-to-top-btn:hover i {
    transform: translateY(-2px);
}

.back-to-top-btn .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.back-to-top-btn .progress-ring__bg {
    fill: none;
    stroke: #e7eef2;
    stroke-width: 3;
}

.back-to-top-btn .progress-ring__circle {
    fill: none;
    stroke: var(--accent-cyan);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset .1s linear;
}

/* Hero heading word-by-word reveal */
.hero-animated-text .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: heroWordIn 0.5s ease forwards;
}
.hero-animated-text .word:nth-child(1) { animation-delay: .05s; }
.hero-animated-text .word:nth-child(2) { animation-delay: .25s; }
.hero-animated-text .word:nth-child(3) { animation-delay: .45s; }
.hero-animated-text .word:nth-child(4) { animation-delay: .65s; }
.hero-animated-text .word:nth-child(5) { animation-delay: .85s; }
.hero-animated-text .word:nth-child(6) { animation-delay: 1.05s; }

@keyframes heroWordIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Testimonials */
.testimonials{
    background: linear-gradient(90deg, #F3F3F5 10.52%, #F2F2F5 51.33%, #F2F2F5 94.83%);
   

}
.testimonial-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgb(0 0 0 / 32%);
    padding: 20px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial-card p {
    color: #575757;
    font-size: 14px;
    font-family: 'Segoe UI';
    font-style: Semibold;

}

.testimonial-card .startIcons i {
    color: #039AE0;
    margin-right: 10px;
}

    .testimonial-card::before {
      content: '';
      position: absolute;
      bottom: -28px;
      left: 28px;
      width: 0;
      height: 0;
      /* creates a right-angled triangle pointing down-left */
      border-right: 28px solid #fff;
      border-bottom: 28px solid #ffffff00;
      filter: drop-shadow(-2px 3px 2px rgba(0,0,0,0.10));
    }
 
    .testimonial-card::after {
      content: '';
      position: absolute;
      bottom: -36px;
      left: 20px;
      width: 0;
      height: 0;
          border-right: 34px solid rgb(255 255 255 / 6%);
    border-bottom: 34px solid #ffffff00;
    }

        /* ── Author row ── */
    .author-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 44px;
      padding-left: 52px;
    }
 
    .avatar-placeholder {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #8fafc8;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 0.85rem;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
 
    .avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
 
    .author-name {
      font-size: 12px;
      font-weight: 700;
      color: #222D35;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 3px;
    }
 
    .author-role {
      font-size: 12PX;
      color: #678398;
      font-weight: 700;
    }

/* Form Controls */
.form-custom .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-family: 'Segoe UI', sans-serif;
}

/* Brands alignment */
.brand-logo {
    filter: grayscale(100%) opacity(60%);
    transition: all 0.3s ease;
    font-size: 1.25rem;
    font-weight: 700;
    color: #6c757d;
}

.brand-logo:hover {
    filter: grayscale(0%) opacity(100%);
}

.ready-to-simplyfy {
    background-image: url(../assets/ready_to.png);
}

.ready-to-simplyfy h2 {
    font-weight: 700 !important;
    font-family: 'Segoe UI';
    font-size: 36px;
    color: #FFFFFF;
}

.ready-to-simplyfy p {
    font-weight: 400 !important;
    font-family: 'Segoe UI';
    font-size: 20px;
    color: #FFFFFF;
}

.list-unstyled li div {
    font-family: 'Poppins';
    font-weight: 500;
    color: #26292D;
    font-size: 14px;
}

.Built_for h2 {
    font-weight: 400 !important;
    font-size: 48px;
    color: #40474A;
}

.Built_for p {
    font-weight: 400;
    font-size: 14px;
    color: #727882;
}

.Built_for h2 em {
    font-weight: 300;
    font-style: Light Italic;
}
.contact-section h2, .contact-section h4{
    color: #03DAE0 !important;

}

.contact-section label{
    font-size: 16px;
    color: #E6E6E6;
}

.contact-section a.noCLass{
    text-decoration: none;
    color: inherit;
}

.contact-section i{
    color: #03B7E0;
    display: inline-block;
    border: 1px solid #03B7E0;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 100%;
    padding: 6px 0px;
}

.contact-section ul{
    color: #FEFEFE;
    font-size: 14px;
}

footer{
    background: #1A1A2E!important;
}
footer p{
    font-size: 14px!important;
}

.page-footer-bottom{
    background: #0A0A10;
    padding: 20px 0;
    color: #949494;
}

.page-footer-bottom p{
    font-size: 12.8px!important;
    padding: 0 40px;
}

button:hover, .btn-cyan:hover, .btn-outline-white:hover{
      background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
    cursor: pointer;
}

.coming-soon-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* soluation page  */
.hero-section h1{
    font-size: 38px;
}
.hero-section p{
    font-size: 16px;
}

.section-title {
    font-size: 36px;
}

.section-title-left {
    font-size: 38px;
}

.section-subtitle {
    font-size: 16px;
    color: #4E4C49;
}

.industry-card {
    border: 1px solid #03A1E0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #F3FDFF;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 21, 41, 0.08);
    border-color: rgba(0, 210, 255, 0.4);
}

.industry-icon {
    font-size: 1.75rem;
    color: #00b4db;
    background: rgba(0, 210, 255, 0.07);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.industry-card h4{
    font-size: 28px;
}

.industry-card p{
    font-size: 13px;
    border-bottom: 1px solid #03A1E0;
    color: #4E4C49;
    padding-bottom: 1rem !important;
}

.industry-list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
}

.industry-list i {
    color: #00b4db;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 0.85rem;
}

.resource-link-list {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid #E5E7EB;
}

.resource-link-list li {
    margin-bottom: 0.5rem;
}

.resource-link-list a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #006876;
    text-decoration: none;
}

.resource-link-list a:hover {
    text-decoration: underline;
}

.resource-link-list i {
    font-size: 0.7rem;
    margin-right: 6px;
    color: #00b4db;
}

.challenge-badge-list {
    width: 100%;
}

.challenge-badge-list .badge {
    font-size: 0.88rem;
    padding: 10px 18px;
    font-weight: 500;
    border-radius: 30px;
    background-color: #00b4db;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 180, 219, 0.15);
    white-space: normal;
    text-align: left;
    max-width: 100%;
}

.feature-item-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item-btn:hover, .feature-item-btn.active {
    background: rgba(255, 255, 255, 0.09);
    border-color: #00d2ff;
}

.footer-custom {
    background-color: #030a12 !important;
}

.footer-custom a:hover {
    color: #00d2ff !important;
}

.gradient-text {
  background: linear-gradient(
    0deg,
    #03DAE0 0%,
    #03CBE0 39.42%,
    #03B3E0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.challenge-timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 30px;
}

.challenge-timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 18px;
    bottom: 18px;
    width: 3px;
    background: #7ad5ff;
}

.challenge-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.challenge-item:last-child {
    margin-bottom: 0;
}

.challenge-item .dot {
    position: absolute;
    left: -44px;
    width: 14px;
    height: 14px;
    background: #0d9be9;
    border: 3px solid #7ad5ff;
    border-radius: 50%;
    z-index: 2;
}

.challenge-item .dot::after {
    content: '';
    position: absolute;
    width: 31px;
    height: 2px;
    display: block;
    background: #9EE2FF;
    top: 4px;
    left: 10px;
}

.challenge-item .badge {
    background: linear-gradient(90deg, #1699e9 0%, #1189df 100%);
    color: #fff;
    padding: 12px 28px;
    min-width: 320px;
    text-align: center;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 6px 15px rgba(0, 145, 255, 0.15);
    white-space: nowrap;
}

/* Soluations page  */

.soluationsCard .industry-card p{
    border-bottom: none;
    margin-bottom: 0!important;
    padding: 0!important;
}

.soluationsCard .industry-icon{
    margin-bottom: 0;
}

.soluationsPage ul{
    padding: 0;
    list-style: none;
    color: #ABB2B5;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    font-family: 'Segoe UI', sans-serif';
    
}
.soluationsPage .feature-item-btn{
    background: #0A112D80;

}
.soluationsPage ul li{
    padding: 8px 0;
    border-bottom: 1px solid #375066;
}

.soluationsPage ul li:last-child{
     border-bottom: none;
}
.soluationsPage .feature-item-btn:hover, .soluationsPage .feature-item-btn.active{
    box-shadow: 0px 4px 16px 0px #03CBE0;
    color: #03C7E0;
}

.soluationsPage .feature-item-btn:hover  ul, .soluationsPage .feature-item-btn.active ul{
    color: #03C7E0;
}
/* footer  */

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    opacity: 1 !important;
    transform: translateY(-3px);
}

footer .fa-x-twitter:hover {
    color: #000000 !important;
}

footer .fa-facebook:hover {
    color: #1877F2 !important;
}

footer .fa-instagram:hover {
    color: #E4405F !important;
}

/* Pricing  */

/* PRICING */

.pricing-card{
  background:#fff;
  border:1px solid var(--border-light);
  border-radius: 14px;
  padding: 32px 28px;
  position:relative;
  box-shadow: 0 10px 30px rgba(15,23,42,.04);
  display:flex;
  flex-direction:column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pricing-card:hover{
  border: 2px solid #00BCD4;
  box-shadow: 0 20px 40px rgba(0,188,212,.18);
  transform: translateY(-6px);
}

.pricing-card.featured{
  border: 2px solid #00BCD4;
  box-shadow: 0 20px 40px rgba(0,188,212,.18);
  transform: translateY(-6px);
}

.badge-popular{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background: var(--cyan-gradient);
  color:#fff;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.03em;
  padding:5px 14px;
  border-radius:20px;
  text-transform:uppercase;
}

.plan-name{
  font-weight:700;
  color:#111827;
  margin-bottom:6px;
}

.plan-desc{
  font-size:.83rem;
  color: var(--text-muted);
}

.plan-price{
  font-size:2rem;
  font-weight:800;
  color:#006876;
  margin: 0 0 20px;
}
.plan-price span{
  font-size:.9rem;
  font-weight:500;
  color: var(--text-muted);
}

.plan-features{
  list-style:none;
  padding:0;
  margin:0 0 26px;
  flex-grow:1;
}
.plan-features li{
  font-size:.87rem;
  color:#374151;
  margin-bottom:12px;
  display:flex;
  align-items:flex-start;
  gap:8px;
}
.plan-features li i{
  background:#14B8A6;
  color:#fff;
  width:21px;
  height:21px;
  border-radius:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:.65rem;
}

.btn-outline-plan{
  border:1px solid #d1d5db;
  color:#111827;
  font-weight:600;
  font-size:.9rem;
  border-radius:50px;
  padding:10px;
  background:#fff;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-outline-plan:hover{ background:#f9fafb; color:#111827; }

.pricing-card:hover .btn-outline-plan{
  background: var(--cyan-gradient);
  color:#fff;
  border-color: transparent;
}

.btn-teal-filled{
  background: var(--cyan-gradient);
  color:#fff;
  font-weight:600;
  font-size:.9rem;
  border-radius:50px;
  padding:10px;
  border:none;
}
.btn-teal-filled:hover{ background: var(--cyan-gradient); color:#fff; }

.pricing-footnote{
  color: var(--text-muted);
  font-size:.85rem;
  background:#F2F3FF;
  border-radius:50px;
  padding:16px;
  width:fit-content;
  margin:36px auto 0;
}

/* FEATURES */
.features-section{
  padding: 40px 0 80px;
}

.features-title{
  font-size:1.9rem;
  font-weight:700;
  color:#111827;
  line-height:1.3;
}

.pricing-feature-card{
  background:#F2F3FF;
  border-radius:12px;
  padding:28px 26px;
  height:100%;
}

.pricing-feature-icon{
  width:44px;
  height:44px;
  border-radius:10px;
  background:#fff;
  border:1px solid var(--border-light);
  display:flex;
  align-items:center;
  justify-content:center;
  color: #00BCD4;
  font-size:1.1rem;
  margin-bottom:16px;
}

.pricing-feature-card h6{
  font-weight:700;
  color:#111827;
  margin-bottom:8px;
}

.pricing-feature-card p{
  font-size:.86rem;
  color: var(--text-muted);
  margin:0;
}

/* CONTACT PAGE */
.contact-hero-section{
  background:#F8F9FC;
}

.contact-desc{
  color: var(--text-muted);
  font-size:1rem;
  max-width:520px;
}

.contact-info-icon{
  width:44px;
  height:44px;
  flex-shrink:0;
  border-radius:10px;
  background:#fff;
  border:1px solid var(--border-light);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00BCD4;
  font-size:1rem;
}

.contact-info-label{
  font-size:.78rem;
  color: var(--text-muted);
}

.contact-info-value{
  font-weight:700;
  color:#111827;
  font-size:.95rem;
}

.contact-form-card{
  position:relative;
  background:#fff;
  border-radius:16px;
  padding:32px;
  box-shadow: 0 10px 40px rgba(15,23,42,.06);
  border-top:4px solid transparent;
  overflow:hidden;
}

.contact-form-card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background: var(--cyan-gradient);
}

.form-label-custom{
  display:block;
  font-size:.82rem;
  font-weight:600;
  color:#111827;
  margin-bottom:6px;
}

.contact-input{
  background:#F8F9FC !important;
  border:1px solid var(--border-light) !important;
  border-radius:8px !important;
  padding:11px 14px !important;
  font-size:.9rem !important;
  color:#111827 !important;
}

.contact-input:focus{
  border-color:#00BCD4 !important;
  box-shadow: 0 0 0 .2rem rgba(0,188,212,.15) !important;
}

.contact-input::placeholder{
  color:#9CA3AF;
}

.form-disclaimer{
  font-size:.76rem;
  color: var(--text-muted);
}

.form-disclaimer a{
  color:#00BCD4;
  text-decoration:none;
}

.form-status{
  font-size:.85rem;
  font-weight:600;
  min-height:1.2em;
}

.form-status.text-success{
  color:#14B8A6 !important;
}

.form-status.text-danger{
  color:#EF4444 !important;
}

.map-section .map-wrapper{
  border-radius:20px;
  overflow:hidden;
  min-height:380px;
  box-shadow: 0 10px 40px rgba(15,23,42,.08);
}

.map-iframe{
  width:100%;
  height:380px;
  border:0;
  display:block;
}

.map-tint{
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,188,212,.12);
  pointer-events:none;
}

.map-overlay-card{
  position:absolute;
  left:24px;
  bottom:24px;
  background:#fff;
  border-radius:12px;
  padding:16px 20px;
  box-shadow: 0 10px 30px rgba(15,23,42,.12);
  max-width:280px;
}

.map-overlay-card h6{
  font-weight:700;
  color:#111827;
  margin-bottom:6px;
}

.map-overlay-card p{
  font-size:.82rem;
  color: var(--text-muted);
  margin:0;
}

/* WHY US - COMPARISON TABLE */
.comparison-wrap{
  margin:14px auto 0;
}

.comparison-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  background:#fff;
  border-radius:16px;
  box-shadow: 0 10px 40px rgba(15,23,42,.06);
}

.comparison-cell{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 14px;
  border-bottom:1px solid var(--border-light);
  font-size:.9rem;
}

.comparison-cell:nth-child(1){
  border-top-left-radius:16px;
}

.comparison-cell:nth-child(3){
  border-top-right-radius:16px;
}

.comparison-label-last{
  border-bottom:none;
  border-bottom-left-radius:16px;
}

.comparison-theirs-last{
  border-bottom-right-radius:16px;
}

.comparison-header{
  flex-direction:column;
  font-weight:700;
  color:#111827;
  padding-top:20px;
  padding-bottom:20px;
  background:#F8F9FC;
}

.comparison-recommended{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background: var(--cyan-gradient);
  color:#fff;
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  padding:5px 14px;
  border-radius:20px;
  white-space:nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.comparison-capability{
  align-items:flex-start;
  justify-content:flex-end;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: var(--text-muted);
}

.comparison-subtitle{
  font-size:.72rem;
  font-weight:500;
  opacity:.85;
  margin-top:2px;
}

.comparison-ours{
  background:#E5FBFA;
  color:#006876;
  font-weight:700;
}

.comparison-ours.comparison-header{
  position:relative;
  background: var(--cyan-gradient);
  color:#fff;
  border-radius:16px 16px 0 0;
}

.comparison-ours-last{
  border-bottom:none;
  border-radius:0 0 16px 16px;
}

.comparison-theirs{
  color: var(--text-muted);
}

.comparison-pill{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.comparison-icon{
  font-size:.8rem;
}

.comparison-pill.good .comparison-icon{
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:100%;
  background:#14B8A6;
  color:#fff;
}

.comparison-pill.bad{
  color: var(--text-muted);
}

.comparison-pill.bad .comparison-icon{
  font-size:1.2rem;
  color:#EF4444;
}

/* What Happens Next (contact page) */
.whats-next-accordion{
  max-width: 640px;
}

.whats-next-accordion .accordion-item{
  border:1px solid var(--border-light);
  border-radius:16px !important;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
}

.whats-next-arrow{
  text-align:center;
  color: var(--teal);
  opacity:.6;
  padding:6px 0;
}

.whats-next-accordion .accordion-button{
  font-weight:700;
  color:#111827;
  padding:20px 24px;
  gap:16px;
  background:#fff;
}

.whats-next-accordion .accordion-button:not(.collapsed){
  color: var(--teal);
  background:#F8F9FC;
  box-shadow:none;
}

.whats-next-accordion .accordion-button:focus{
  box-shadow:none;
  border-color: var(--border-light);
}

.whats-next-accordion .accordion-body{
  padding:0 24px 22px 78px;
}

.whats-next-accordion .accordion-body ul{
  list-style: disc;
}

.whats-next-num{
  flex:0 0 auto;
  width:38px;
  height:38px;
  border-radius:50%;
  background: var(--cyan-gradient);
  color:#fff;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* What Happens Next roadmap (contact page) */
.roadmap-wrap{
  position: relative;
  padding: 0 44px;
}

.roadmap-track{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.roadmap-track::before{
  content: "";
  position: absolute;
  top: 68px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

.roadmap-item{
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  text-align: center;
}

.roadmap-index{
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.roadmap-dot{
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--cyan-gradient);
  border: 3px solid #011c2e;
  box-shadow: 0 0 0 4px rgba(3, 218, 224, 0.2);
}

.roadmap-card{
  text-align: left;
}

.roadmap-arrow{
  position: absolute;
  top: 60px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #011c2e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.roadmap-arrow-left{ left: 0; }
.roadmap-arrow-right{ right: 0; }

/* ==========================================================================
   Responsive breakpoints (all @media rules consolidated below)
   ========================================================================== */

@media (pointer: coarse) {

    .cursor-glow,
    .cursor-trail {
        display: none;
    }
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 2.8rem;
    }
}

/* Large devices / small desktops & laptops */
@media (max-width: 1199.98px) {
    .navbar {
        position: relative;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark-blue);
        border-radius: 0 0 12px 12px;
        padding: 16px 20px;
        margin: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        z-index: 1050;
    }

    .navbar-dark .nav-link {
        color: #E4F6FF;
    }

    .navbar-dark .nav-link.active,
    .navbar-dark .nav-link:hover {
        color: var(--accent-cyan);
    }

    .title-text {
        font-size: 38px;
    }

    .lh-base {
        font-size: 36px;
        line-height: 44px;
    }

    .enterprise-title {
        font-size: 1.9rem;
    }

    .Built_for h2 {
        font-size: 38px;
    }
    .navbar-toggler {
        background-color: #03cee0;
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    .navbar-brand img {
        width: 170px;
    }
.navbar-toggler {
        background-color: #03cee0;
    }
    .new {
        width: auto;
        font-size: 14px;
    }

    .terrminologies .col-md-3 {
        border-right: none;
        border-bottom: 0.8px solid #FFFFFF1F;
    }

    .terrminologies .row .col-md-3:last-child {
        border-bottom: none;
    }

    .about-us .col-lg-7,
    .about-us .col-lg-5 {
        text-align: center;
    }

    .Built_for .col-lg-1 {
        display: none;
    }

    .contact-section .col-lg-1 {
        display: none;
    }

    .contact-section .col-lg-4 {
        margin-top: 2rem;
        padding-left: 0 !important;
    }

    .clients-tag {
        font-size: 20px;
    }

    .enterprise-title {
        font-size: 1.6rem;
    }

    .title-text {
        font-size: 32px;
    }

    .lh-base {
        font-size: 30px;
        line-height: 38px;
    }

    .roadmap-wrap {
        padding: 0;
    }

    .roadmap-arrow {
        display: none;
    }

    .roadmap-track {
        flex-wrap: wrap;
        row-gap: 32px;
    }

    .roadmap-track::before {
        display: none;
    }

    .roadmap-item {
        flex: 1 1 45%;
    }

    .roadmap-dot {
        display: none;
    }
}

/* Small devices / large phones & tablets in portrait */
@media (max-width: 767.98px) {
    .Built_for h2,
    .title-text,
    .lh-base,
    .enterprise-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .navbar-toggler {
        background-color: #03cee0;
    }

    .btn-outline-white {
        padding: 10px 18px;
    }

    .roadmap-wrap {
        padding: 0;
    }

    .roadmap-arrow {
        display: none;
    }

    .roadmap-track {
        flex-direction: column;
        gap: 32px;
    }

    .roadmap-track::before {
        display: none;
    }

    .roadmap-item {
        text-align: left;
    }

    .roadmap-index {
        margin-bottom: 8px;
    }

    .roadmap-dot {
        display: none;
    }

    .testimonials .container.py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .testimonials .text-center.mb-5.aos-init.aos-animate {
        margin-bottom: 20px !important;
    }
    .hero-section{
        padding: 0;
    }
    .hero-section,
    section {
        text-align: center;
    }

    .d-flex.flex-wrap.gap-3,
    .ready-to-simplyfy .d-flex.gap-3 {
        justify-content: center;
    }

    .ready-to-simplyfy h2 {
        font-size: 26px;
    }

    .ready-to-simplyfy p {
        font-size: 16px;
    }

    .badge-pill-custom {
        font-size: 14px;
        padding: 6px 16px;
    }

    .feature-card {
        padding: 18px;
        margin-bottom: 10px;
    }

    .author-row {
        padding-left: 0;
        margin-top: 36px;
    }

    .testimonial-card::before,
    .testimonial-card::after {
        left: 16px;
    }

    footer .col-lg-3,
    footer .col-lg-2,
    footer .col-6 {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    footer .d-flex.gap-3 {
        justify-content: center;
    }

    .page-footer-bottom .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .page-footer-bottom p {
        padding: 0 !important;
    }

    /* Solutions page mobile adjustments */
    .hero-title {
        font-size: 1.85rem !important;
    }

    .hero-desc {
        font-size: 0.95rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .section-title-left {
        font-size: 1.5rem !important;
        text-align: center;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
    }

    .section-subtitle br {
        display: none;
    }

    .industry-card h4 {
        font-size: 22px;
    }

    .challenge-badge-list {
        align-items: center !important;
    }

    .challenge-badge-list .badge {
        width: 100%;
        text-align: center;
    }

    .challenge-item .badge {
        min-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .challenge-timeline {
        padding-left: 40px;
    }

    .feature-item-btn {
        padding: 1rem;
    }

    .cta-title {
        font-size: 1.5rem !important;
    }

    .cta-desc {
        font-size: 0.9rem !important;
    }

    .mock-interface-box,
    .illustration-box {
        padding: 2rem 1rem !important;
    }

    .ready-to-simplyfy .d-flex.gap-3 {
        flex-direction: column;
        align-items: stretch;
    }

    .ready-to-simplyfy .btn-cyan,
    .ready-to-simplyfy .btn-outline-white {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Site Map vertical tree */
    .sitemap-chart-section .sm-tree,
    .sitemap-chart-section .sm-tree li {
        text-align: left;
    }

    .sm-tree-wrap {
        max-width: 100%;
    }

    .sm-tree ul {
        margin-left: 10px;
        padding-left: 20px;
    }

    .sm-tree ul li::before {
        left: -20px;
        width: 20px;
    }

    .sm-node {
        font-size: 13px;
        padding: 9px 14px;
    }

    .sm-node-root {
        font-size: 15px;
        padding: 12px 22px;
    }

  .contact-form-card{ padding:22px; }
  .map-overlay-card{ left:12px; right:12px; bottom:12px; max-width:none; }
}

/* Mobile phones */
@media (max-width: 575.98px) {
    .navbar-brand img {
        width: 140px;
    }

    /* Site Map vertical tree */
    .sm-tree ul {
        margin-left: 6px;
        padding-left: 16px;
    }

    .sm-tree ul li::before {
        left: -16px;
        width: 16px;
        top: 20px;
    }

    .sm-node {
        white-space: normal;
        font-size: 12.5px;
        padding: 8px 12px;
        gap: 6px;
    }

    .sm-node-sm {
        font-size: 12px;
        padding: 7px 10px;
    }

    .sitemap-legend {
        flex-direction: column;
        align-items: center;
        gap: 10px !important;
    }

    .new {
        font-size: 13px;
        padding: 6px 10px;
    }

    h1.display-5 {
        font-size: 1.8rem;
    }

    p.text-heroText {
        font-size: 15px !important;
    }

    .btn-cyan,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    .d-flex.flex-wrap.gap-3,
    .ready-to-simplyfy .d-flex.gap-3 {
        flex-direction: column;
    }

    .terrminologies h3 {
        font-size: 1.5rem;
    }

    .terrminologies .small {
        font-size: 11px;
    }

    .title-text {
        font-size: 22px !important;
    }

    .tagLine-text {
        font-size: 13px;
    }

    .about-info h5 {
        font-size: 1rem;
    }

    .about-us p.small {
        font-size: 13px !important;
    }

    .clients-tag {
        font-size: 16px;
    }

    .feature-card h4 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .ready-to-simplyfy h2 {
        font-size: 22px;
    }

    .testimonial-card p {
        font-size: 13px;
    }

    .author-name {
        font-size: 11px;
    }

    .author-role {
        font-size: 11px;
    }

    .contact-section i {
        width: 26px;
        height: 26px;
        padding: 4px 0;
    }

    .contact-section ul li {
        font-size: 13px;
    }

    footer img,
    .navbar-brand img {
        max-width: 100%;
    }
}

/* Extra small phones */
@media (max-width: 374.98px) {
    .navbar-brand img {
        width: 120px;
    }

    h1.display-5 {
        font-size: 1.5rem;
    }

    .enterprise-title {
        font-size: 1.3rem;
    }

    .Built_for h2 {
        font-size: 22px !important;
    }

    .page-footer-bottom p {
        font-size: 11px !important;
    }
}

/* Tablets Landscape and Small Desktop view ports */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .section-title-left {
        font-size: 1.8rem !important;
    }

    .industry-card h4 {
        font-size: 26px;
    }

    .industry-list li {
        font-size: 0.85rem;
    }
}