@font-face {
  font-family: "Neue Machina";
  src: url("../fonts/neue-machina-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Machina";
  src: url("../fonts/neue-machina-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tofino";
  src: url("../fonts/tofino-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tofino";
  src: url("../fonts/tofino-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tofino";
  src: url("../fonts/tofino-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #e20d32;
  --brand-dark: #c90a2b;
  --ink: #1d2637;
  --neutral: #4f5968;
  --muted: #647084;
  --quote-bg: #f4f8ff;
  --site-gutter: clamp(1rem, 3vw, 2.4rem);
  --site-max: 72rem;
  --content-max: 42rem;
  --header-content-max: 1492px;
  --page-container-pad: 3rem;
}

html, body {
            height: 100%;
        }

        body{
            margin:0;
            font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
        }
        a {
          color: inherit;
          text-decoration: none;
        }

        .subscribe-btn,
        .btn-red,
        .explore-btn,
        .faq-filter-chip,
        .btn-pill-dl,
        .contact-submit-btn,
        .btn-submit-subscribe,
        .media-contact-link,
        .btn-close-custom {
            transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
        }

        .subscribe-btn:hover,
        .btn-red:hover,
        .explore-btn:hover,
        .faq-filter-chip:hover,
        .btn-pill-dl:hover,
        .contact-submit-btn:hover,
        .btn-submit-subscribe:hover,
        .media-contact-link:hover,
        .btn-close-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(29, 38, 55, 0.12);
        }

        .faq-filter-chip:hover {
            background: #cfd9e8;
            color: #16325a;
        }

        .faq-filter-chip.is-active:hover {
            background: var(--brand-dark);
            color: #ffffff;
        }
        /* Header */
        .custom-header{
            background:#ffffff;
            border-bottom:1px solid #ddd;
            height:78px;
        }

        .custom-header > .container-fluid {
            max-width: var(--header-content-max);
            height: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: var(--page-container-pad) !important;
            padding-right: var(--page-container-pad) !important;
        }

        .custom-header .row {
            height: 100%;
        }

        .logo{
            font-size:26px;
            font-weight:700;
            color:#e41d3d;
            text-decoration:none;
        }

        /* Desktop Menu */
        .desktop-menu{
            display:flex;
            align-items:center;
            gap:24px;
            /*padding-left: 21px;*/
        }

        .desktop-menu a{
            color:#0c2340;
            text-decoration:none;
            font-size:17px;
            white-space:nowrap;
        }

        .logo{
            font-size:28px;
            font-weight:700;
            color:#e51b3e;
            text-decoration:none;
        }

        .custom-header .subscribe-btn{
            border:1px solid #ddd;
            border-radius:30px;
            padding:8px 20px;
            color:#e51b3e;
            text-decoration:none;
            font-size: 14px;
            margin-right: 20px;
            letter-spacing: .2px;
        }
        /* Default Desktop */
        .right-btn-wrapper{
            justify-content: flex-end;
        }
        .left-menu-wrapper{
            justify-content: flex-start;
        }

        /* 1920px and Above */
        @media (min-width: 1920px) {
            .right-btn-wrapper, .left-menu-wrapper{
                justify-content: flex-end !important;
            }

            .left-menu-wrapper{
                justify-content: flex-start !important;
            }
        }
        
        .subscribe-btn:hover{
            background:#e41d3d;
            color:#fff;
        }

        /* Mobile */
        .mobile-header{
            display:none;
            height:95px;
            background:#ffffff;
        }

        .menu-btn{
            background:none;
            border:none;
            font-size:32px;
            color:#ff385c;
        }
        .menu-btn img{
            width: 80%;
        }

        /* Mobile Sidebar */
        .mobile-sidebar{
            position:fixed;
            top:0;
            left:-100%;
            width:100%;
            max-width:480px;
            height:100%;
            background:#f5f5f5;
            z-index:9999;
            transition:.4s;
            padding:40px;
        }

        .mobile-sidebar.active{
            left:0;
        }

        .close-btn{
            position:absolute;
            right:30px;
            top:20px;
            width:35px;
            height:35px;
            border:none;
            border-radius:50%;
            background:#6b7a90;
            color:#fff;
            font-size:22px;
        }

        .mobile-sidebar ul{
            list-style:none;
            padding:0;
            margin-top:40px;
        }

        .mobile-sidebar ul li{
            margin-bottom:35px;
        }

        .mobile-sidebar ul li a{
            text-decoration:none;
            color:#0c2340;
            font-size:28px;
        }

        .mobile-header .subscribe-btn{
            border:1px solid #ddd;
            border-radius:30px;
            padding:0px 1px;
            color:#e51b3e;
            text-decoration:none;
            font-size: 12px;
            margin-right: 10px;
            letter-spacing: .2px;
        }

        /* Responsive */

        @media(max-width:1023px){

            .desktop-header{
                display:none;
            }

            .mobile-header{
                display:flex;
            }
        }

        @media(min-width:1024px){

            .mobile-header,
            .mobile-sidebar{
                display:none;
            }

            .desktop-header{
                display:flex;
            }
            
        }

        main {
            flex: 1;
        }

        .faq-page-section {
            padding: clamp(4.5rem, 8vw, 6.75rem) 0 clamp(4rem, 8vw, 6.5rem);
            background: #ffffff;
        }

        .faq-page-shell {
            max-width: 760px;
            margin: 0 auto;
            padding: 0 clamp(1.25rem, 4vw, 2rem);
        }

        .faq-page-heading {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--ink);
            font-size: clamp(1.15rem, 2vw, 1.75rem);
            line-height: 1.2;
            margin-bottom: clamp(3rem, 8vw, 4.75rem);
            font-family: "Neue Machina", ui-monospace, monospace;
        }

        .faq-page-heading-line {
            flex: 1;
            height: 1px;
            background: #ccd7e6;
            min-width: 4rem;
        }

        .faq-filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-bottom: 2.75rem;
        }

        .faq-filter-chip {
            border: 0;
            border-radius: 6px;
            padding: 0.72rem 1.15rem;
            background: #dbe3ef;
            color: #16325a;
            font-size: 0.98rem;
            line-height: 1;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .faq-filter-chip.is-active {
            background: var(--brand);
            color: #ffffff;
        }

        .faq-list-wrap {
            border-top: 1px solid #d7e0ec;
        }

        .faq-item-card {
            border-bottom: 1px solid #d7e0ec;
            padding: 0;
        }

        .faq-item-toggle {
            width: 100%;
            border: 0;
            background: transparent;
            color: var(--ink);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1rem;
            text-align: left;
            padding: 1.05rem 1.65rem 0.55rem 1.65rem;
        }

        .faq-item-question {
            display: block;
            font-size: 1.08rem;
            line-height: 1.45;
        }

        .faq-item-symbol {
            color: var(--ink);
            font-size: 1.5rem;
            line-height: 1;
            flex: 0 0 auto;
            margin-top: -0.1rem;
        }

        .faq-item-answer {
            padding: 0 3.25rem 1.2rem 1.65rem;
        }

        .faq-item-answer p {
            margin: 0 0 0.9rem;
            color: #233554;
            font-size: 0.98rem;
            line-height: 1.55;
        }

        .faq-item-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-item-card:not(.is-open) .faq-item-answer {
            display: none;
        }

        @media (max-width: 1023px) {
            .faq-page-section {
                padding-top: 2rem;
            }

            .faq-page-shell {
                max-width: 100%;
                padding: 0 1rem;
            }

            .faq-page-heading {
                font-size: 1rem;
                margin-bottom: 2.35rem;
            }

            .faq-filter-bar {
                justify-content: flex-start;
                margin-bottom: 2rem;
            }

            .faq-filter-chip {
                font-size: 0.95rem;
                padding: 0.7rem 1rem;
            }

            .faq-item-toggle {
                padding: 0.95rem 0.25rem 0.45rem;
            }

            .faq-item-question {
                font-size: 1rem;
            }

            .faq-item-answer {
                padding: 0 1.75rem 1rem 0.25rem;
            }

            .faq-item-answer p {
                font-size: 0.95rem;
                line-height: 1.6;
            }
        }

        /*.hero-section {
            background: #f8f9fa;
            padding: 80px 0;
        }*/


        .hero-section {
          position: relative;
          min-height: 100vh;
          display: flex;
          align-items: center;
          overflow: hidden;
          border-top: 1px solid rgba(59, 130, 246, .2);
          background: #fff;
        }

        #waveCanvas,
        .hero-tint {
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%;
        }

        #waveCanvas {
          z-index: 0;
        }

        .hero-tint {
          z-index: 1;
          background: linear-gradient(180deg, rgba(59, 130, 246, .05), rgba(59, 130, 246, .05) 45%, transparent);
        }

        .hero-content {
          position: relative;
          z-index: 2;
          width: min(calc(100% - var(--site-gutter) * 2), 80rem);
          margin: 0 auto;
          /*padding: clamp(5rem, 9vw, 7rem) 0 clamp(5rem, 9vw, 7.375rem);*/
          text-align: center;
        }

        .hero-headline {
          max-width: 100%;
          font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
          font-size: clamp(48px, 7vw, 89.6px);
          font-weight: 700;
          line-height: 1.35;
          letter-spacing: -2.6px;
          color: #1d2637;
          margin-top: -21px;
          font-size: 107.52px;
          font-weight: bold;
        }

        .hero-headline span {
          display: inline-block;
          opacity: 1;
          transform: translateY(0);
          animation: heroWordIn .8s cubic-bezier(.16, 1, .3, 1);
          transition: opacity .8s ease-out, transform .8s cubic-bezier(.16, 1, .3, 1);
          
        }

        .hero-headline span:nth-child(2) {
          animation-delay: .12s;
          transition-delay: .12s;
        }

        .hero-headline.in-view span {
          opacity: 1;
          transform: translateY(0);
        }

        .hero-action {
          }

        .btn-red {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 19px 39px;
          border-radius: 999px;
          color: #fff;
          background: var(--brand);
          border: 1px solid transparent;
          font-size: 19px;
          font-weight: 500;
          letter-spacing: .1px;
          transition: background .2s ease;
        }

        .btn-red:hover {
          color: #fff;
          background: var(--brand-dark);
        }

        .hero-copy {
          width: 70%;
          margin: 60px auto;
          color: #45556C;
          font-size: 28px;
          padding: 0px 10px;
          letter-spacing: .5px;
            line-height: 1.3;
        }


        .article-section {
            padding-top: 1.5rem;
            padding-bottom: 6rem;
        }
        .custom-article-section{
            padding-left: 36px;
            padding-right: 40px;
            margin-top: -30px;
        }
        .custom-heading {
            color: #45556C; /* Muted blue-grey tone */
            font-size: 29px;
            font-weight: 400; /* Lighter font weight */
            margin-bottom: 1.75rem;
            letter-spacing: 0em;
        }

        .custom-text {
            color: #212a34; /* Dark slate text color */
            font-size: 24px; /* Slightly larger than default text */
            line-height: 1.40; /* Generous line spacing for readability */
            margin-bottom: 1.5rem;
        }

        .custom-text strong {
            color: #111a22; /* Even darker color for the bold text */
            font-weight: 600;
        }


        /* The exact split background: White top, Light Blue-Grey bottom */
        .quote-section {
            /* The 30% dictates where the blue background starts behind the head */
            background: linear-gradient(to bottom, #ffffff 30%, #F4F8FF 30%);
            overflow: hidden;
            padding-top: 84px;
        }

        /* Image styling - flush to the bottom */
        .portrait-img {
            max-width: 100%;
            height: auto;
            display: block;
            /* Pushes the image nicely to the right to match the composition */
            margin-left: auto; 
        }

        /* Text area padding */
        .quote-content-wrapper {
            padding-top: 12.4rem;
            padding-bottom: 4rem;
            padding-left: 3rem;
        }

        /* Layout for Quote Mark + Text */
        .quote-flex {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
        }

        /* Exact Red Quote Mark */
        .quote-mark {
            color: #db3a34; /* Exact red from image */
            font-size: 7rem;
            line-height: 1;
            font-family: "Georgia", serif;
            font-weight: 500;
            letter-spacing: -2px;
            margin-top: -0.5rem; /* Pulls quote up to align perfectly with the first line of text */
        }

        /* Exact Typography */
        .quote-text {
            font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
            font-size: 38px;
            line-height: 1.55;
            color: #111111;
            margin-top: 10px;
            margin-bottom: 2px;
            letter-spacing: -0.01em;
        }

        .author-name {
            font-weight: 550;
            font-size: 22px;
            color: #000000;
            margin-top: 30px;
            margin-bottom: 0.1rem;
        }

        .author-title {
            font-weight: 500;
            font-size: 16px;
            color: #4a4a4a;
            margin-bottom: 0;
            letter-spacing: 0.5px;
        }

        /* Responsive adjustments for mobile */
        @media (max-width: 991px) {
            .quote-section {
                background: linear-gradient(to bottom, #ffffff 15%, #f2f6fa 15%);
            }
            .quote-content-wrapper {
                padding-top: 2rem;
                padding-left: 0;
            }
            .portrait-img {
                margin: 0 auto;
            }
        }


        /* Main Section Layout and Background */
      .tech-section {
        position: relative;
        padding: 6rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 80vh;
        overflow: hidden;
        
        background: #000 url("../images/dark-bg.webp") center / cover fixed;
      }

      /* Vignette effect to focus lighting on the center */
      .tech-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.85) 100%);
        pointer-events: none;
        z-index: 1;
      }

      /* Content Wrapper */
      .content-container {
        position: relative;
        z-index: 2; /* Keeps content above the vignette shadow */
        text-align: center;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      /* Chip Image Styling */
      .chip-image {
        width: 287px;
        height: auto;
        margin-bottom: 2rem;
        /* Optional: adds a very faint glow behind the dark chip */
        filter: drop-shadow(0 0 15px rgba(255,255,255,0.05));
        transition: transform 0.4s ease-in-out;
        cursor: pointer;
      }
      .chip-image:hover {
          transform: scale(1.1); 
        }
      /* Typography Alignments */
      .tech-heading {
        font-size: 44px;
        font-weight: 400;
        margin: 0 0 1.25rem 0;
        letter-spacing: 0px;
        color: #ffffff;
        font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
      }

      .tech-description {
        font-size: 22px;
        line-height: 1.6;
        color: #D1D1D1;
        margin: 0 0 2.5rem 0;
      }

      /* Call to Action Button */
      .explore-btn {
        display: inline-block;
        padding: 0.75rem 1.8rem;
        color: #ffffff;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50px; /* Creates the perfect pill shape */
        font-size: 18px;
        font-weight: 500;
        transition: all 0.3s ease;
        background: transparent;
        cursor: pointer;
      }

      .explore-btn:hover {
        color: #000000;
        background-color: #ffffff;
        border-color: rgba(255, 255, 255, 0.9);
      }


      /* The main white card */
        .subscribe-card {
            background-color: #F9FAFB;
            border: 1px solid #e5e5e5;
            border-radius: 4px;
            padding: 5rem 2rem;
            text-align: center;
        }

        /* Typography */
        .subscribe-title {
            color: #333333;
            font-size: 2.4rem;
            font-weight: 400;
            margin-top: 0;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
        }

        .subscribe-subtitle {
            color: #666666;
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        /* Form Layout */
        .subscribe-form {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        /* Input Field */
        .subscribe-input {
            flex: 1;
            max-width: 350px;
            padding: 0.8rem 1.5rem;
            border: 1px solid #d1d1d1;
            border-radius: 50px; /* Pill shape */
            font-size: 1rem;
            color: #333;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .subscribe-input::placeholder {
            color: #666;
        }

        .subscribe-input:focus {
            border-color: #999;
        }

        /* Submit Button */
        .subscribe-card .subscribe-btn {
            background-color: #df1b3f; /* The specific red from the image */
            color: #ffffff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px; /* Pill shape */
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .subscribe-btn:hover {
            background-color: #c41736;
        }

        /* Disclaimer Text */
        .subscribe-disclaimer {
            color: #777777;
            font-size: 0.85rem;
            margin-bottom: 1.2rem;
        }

        /* Built with Kit Badge */
        .built-with-kit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            color: #111111;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .built-with-kit span {
            font-weight: 500;
            font-size: 0.8rem;
        }

        /* Mobile responsiveness inside the card */
        @media (max-width: 576px) {
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-input {
                max-width: 100%;
            }
            .subscribe-card {
                padding: 3rem 1.5rem;
                border: none; 
            }
        }

        /* Footer Main Wrapper */
      .tech-footer {
        color: #ffffff;
        padding: 5rem 2rem 2rem;
        position: relative;
        overflow: hidden;
        background: #000 url("../images/dark-bg.webp") center / cover fixed;
        
      }

      /* Optional vignette to darken the edges slightly */
      .tech-footer::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.6) 100%);
        pointer-events: none;
      }

      /* Container to keep content centered and constrained */
      .footer-container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        padding: 0 70px;
      }

      /* Main Brand Logo area */
      .footer-brand {
        text-align: center;
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: -0.04em;
        margin: 0 0 4rem 0;
      }

      /* Grid Layout for Links */
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
      }

      /* Column Typography */
      .footer-col h4 {
        color: #ffffff;
        font-size: 1rem;
        font-weight: 700;
        margin: 0 0 .7rem 0;
      }

      .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-col li {
        margin-bottom: 5px;
      }

      .footer-col a {
        color: #E8E7E8; /* Slightly dimmed text for links */
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.2s ease;
      }

      .footer-col a:hover {
        color: #ffffff; /* Brighten on hover */
      }

      /* Bottom Copyright Section */
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08); /* Faint separator line */
        padding-top: 1.5rem;
        display: flex;
        align-items: center;
        font-size: 0.85rem;
        color: #cccccc;
      }

      /* Icons */
      .footer-icons {
        display: flex;
        gap: 0.8rem;
        margin-left: 1rem;
        align-items: center;
      }

      .footer-icons svg {
        width: 16px;
        height: 16px;
        fill: #cccccc;
        cursor: pointer;
        transition: fill 0.2s ease;
      }

      .footer-icons svg:hover {
        fill: #ffffff;
      }

      /* Responsive Adjustments */
      @media (max-width: 768px) {
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
          row-gap: 3rem;
        }
      }

      @media (max-width: 576px) {
        .tech-footer{
            padding: 5rem 1rem 1rem;
        }
        .footer-col a{
            font-size: 14px;
        }
        .footer-grid {
          grid-template-columns:repeat(2, 1fr);
        }
        .footer-bottom {
          justify-content: center;
          flex-direction: column;
          gap: 1rem;
        }
        .footer-icons {
          margin-left: 0;
        }
        .footer-container {
            padding: 0 10px;
          }

          /* Main Brand Logo area */
          .footer-brand {
            text-align: left;
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            margin: 0 0 2rem 0;
          }
          .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08); /* Faint separator line */
            padding-top: 1.5rem;
            display: flex;
            align-items: start;
            font-size: 0.85rem;
            color: #cccccc;
          }
      }

        footer {
            background: #212529;
            color: #fff;
            padding: 20px 0;
        }

        @media (min-width: 1023px) and (max-width: 1316px) {
            .desktop-menu{
                gap:15px!important;
                padding-left: 0px;
            }

            .desktop-menu a{
                font-size:14.4px;
            }
        }


        @media (max-width: 768px) and (max-width: 768px) {
            .hero-section{
                min-height: 80vh;
                margin-bottom: 5px;
            }
            .hero-headline {
              letter-spacing: -.8px;
              margin-top: -45px;
              font-size: 48px;
            }
            .btn-red {
                width: 96%;
              padding: 16px 30px;
              font-size: 16px;
              letter-spacing: .1px;
              margin-top: 0px;
            }
            .hero-copy {
              width: 100%;
              margin: 25px auto;
              color: #45556C;
              font-size: 20px;
              padding: 0px 0px;
              letter-spacing: .4px;
                line-height: 1.3;
            }
            .custom-heading {
                color: #45556C; /* Muted blue-grey tone */
                font-size: 24px;
                font-weight: 400; /* Lighter font weight */
                margin-bottom: 1.75rem;
                letter-spacing: 0em;
            }
            .custom-text {
                font-size: 18px; /* Slightly larger than default text */
                line-height: 1.60; /* Generous line spacing for readability */
                margin-bottom: 1.5rem;
            }

            .quote-section-mobile {
                background-color: #F4F8FF; /* Light blue background from your theme */
                overflow: hidden;
            }

            .quote-text-mobile {
                font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
                font-size: 20px;
                line-height: 1.6;
                color: #111111;
                margin-bottom: 30px;
                letter-spacing: -0.01em;
            }

            .author-name-mobile {
                font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
                font-weight: 700;
                font-size: 18px;
                color: #000000;
                margin-bottom: 2px;
            }

            .author-title-mobile {
                font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
                font-weight: 500;
                font-size: 15px;
                color: #4a4a4a;
            }

            .mobile-img-wrapper {
                /* Ensures there is no gap below the image */
                line-height: 0;
                margin-bottom: -2px; 
            }

            .portrait-img-mobile {
                max-width: 100%;
                height: auto;
                display: block;
                margin: 0 auto;
            }

            .tech-heading {
                font-size: 36px;
              }

              .tech-description {
                font-size: 18px;
              }

              /* Call to Action Button */
              .explore-btn {
                font-size: 14px;
              }

               .subscribe-card {
                    padding: 3rem 2rem;
                    border: none;
                    margin-left: -24px;
                    margin-right: -24px;
                    border: 1px solid #e4e2e2;
                }
              .subscribe-title {
                    font-size: 40px;
                    line-height: 1.5;
                }

                .subscribe-subtitle {
                    font-size: 18px;
                }

                /* Form Layout */
                .subscribe-form {
                    display: flex;
                    gap: 1rem;
                    justify-content: center;
                    margin-bottom: 1.5rem;
                    width: 100%;
                    flex-direction: column;
                }

                /* Input Field */
                .subscribe-input {
                    flex: 1;
                    max-width: 100%;
                    padding: 0.8rem 1.5rem;
                    border: 1px solid #d1d1d1;
                    border-radius: 50px; /* Pill shape */
                    font-size: 1rem;
                    color: #333;
                    outline: none;
                    transition: border-color 0.2s ease;
                }
               
        }

        @media (max-width: 576px) {
            .hero-section{
                min-height: 80vh;
                margin-bottom: 60px;
            }
            .hero-headline {
              max-width: 100%;
              font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
              font-weight: 700;
              line-height: 1;
              letter-spacing: -1.2px;
              color: #1d2637;
              margin-top: 23px;
              font-size: 48px;
              font-weight: bold;
            }
            .btn-red {
              display: inline-flex;
              align-items: center;
              justify-content: center;
              padding: 16px 80px;
              border-radius: 999px;
              color: #fff;
              background: var(--brand);
              border: 1px solid transparent;
              font-size: 16px;
              font-weight: 500;
              letter-spacing: .1px;
              transition: background .2s ease;
              margin-top: 20px;
            }
            .hero-copy {
              width: 100%;
              margin: 20px auto;
              color: #45556C;
              font-size: 20px;
              padding: 0px 0px;
              letter-spacing: -.5px;
                line-height: 1.6;
            }
            .custom-heading {
                color: #45556C; /* Muted blue-grey tone */
                font-size: 24px;
                font-weight: 400; /* Lighter font weight */
                margin-bottom: 1.75rem;
                letter-spacing: 0em;
            }
            .custom-text {
                font-size: 18px; /* Slightly larger than default text */
                line-height: 1.60; /* Generous line spacing for readability */
                margin-bottom: 1.5rem;
            }

            .quote-section-mobile {
                background-color: #F4F8FF; /* Light blue background from your theme */
                overflow: hidden;
            }

            .quote-text-mobile {
                font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
                font-size: 20px;
                line-height: 1.45;
                color: #111111;
                margin-bottom: 30px;
                letter-spacing: -0.01em;
            }

            .author-name-mobile {
                font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
                font-weight: 700;
                font-size: 20px;
                color: #000000;
                margin-bottom: 2px;
            }

            .author-title-mobile {
                font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
                font-weight: 500;
                font-size: 15px;
                color: #4a4a4a;
            }

            .mobile-img-wrapper {
                /* Ensures there is no gap below the image */
                line-height: 0;
                margin-bottom: -2px; 
            }

            .portrait-img-mobile {
                max-width: 100%;
                height: auto;
                display: block;
                margin: 0 auto;
            }

            .tech-heading {
                font-size: 36px;
              }

              .tech-description {
                font-size: 18px;
              }

              /* Call to Action Button */
              .explore-btn {
                font-size: 14px;
              }

               .subscribe-card {
                    padding: 3rem 2rem;
                    border: none;
                    margin-left: -24px;
                    margin-right: -24px;
                    border: 1px solid #e4e2e2;
                }
              .subscribe-title {
                    font-size: 40px;
                    line-height: 1.5;
                }

                .subscribe-subtitle {
                    font-size: 18px;
                }

                /* Form Layout */
                .subscribe-form {
                    display: flex;
                    gap: 1rem;
                    justify-content: center;
                    margin-bottom: 1.5rem;
                }

                /* Input Field */
                .subscribe-input {
                    flex: 1;
                    max-width: 350px;
                    padding: 0.8rem 1.5rem;
                    border: 1px solid #d1d1d1;
                    border-radius: 50px; /* Pill shape */
                    font-size: 1rem;
                    color: #333;
                    outline: none;
                    transition: border-color 0.2s ease;
                }
        }




/* ==========================================================================
   STORY PAGE - TIMELINE SECTION
   ========================================================================== */
.story-page-section {
    padding-top: 52px;
    padding-bottom: 120px;
    background-color: #ffffff;
    padding-left: 0;
    padding-right: 0;
}

.story-page-section > .container-fluid {
    max-width: var(--header-content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-container-pad);
    padding-right: var(--page-container-pad);
}

/* Make the left side fixed while scrolling */
.story-sticky-left {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    max-width: 640px;
}

.story-section-label {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: var(--ink, #1d2637);
    margin-bottom: 20px;
    margin-top: 7px;
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
}

/* Magic line that perfectly touches the vertical timeline */
.story-horizontal-line {
    height: 1px;
    background-color: #cfd6e2;
    flex-grow: 1;
    margin-right: calc(var(--bs-gutter-x) * -0.5); 
}

.story-main-heading {
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(34px, 2.75vw, 44px);
    font-weight: 400;
    line-height: 1.18;
    color: var(--ink, #1d2637);
    margin-bottom: 30px;
    letter-spacing: 0;
}

.story-typewriter,
.split-typewriter {
    display: block;
}

.story-typewriter {
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    animation: storyTyping 2.35s steps(55, end) 0.25s forwards;
}

.type-line {
    display: table;
    overflow: hidden;
    max-width: none;
    clip-path: inset(0 100% 0 0);
    white-space: nowrap;
}

.type-line-first {
    animation: typeLineReveal 1.35s steps(28, end) 0.2s forwards;
}

.type-line-second {
    animation: typeLineReveal 1.35s steps(28, end) 1.45s forwards;
}

@keyframes typeLineReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes storyTyping {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.story-paragraph {
    font-size: 19px;
    line-height: 1.56;
    color: var(--neutral, #4f5968);
    margin-bottom: 24px;
    max-width: 610px;
}

/* Timeline Layout */
.timeline-container {
    border-left: 1px solid #e5e5e5; /* The vertical line */
    padding-left: 45px;
    margin-top: 12px;
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
}

/* Red Square Marker */
.timeline-marker {
    position: absolute;
    /* Aligns the square perfectly center on the border-left */
    left: -20px; /* -45px padding + -6px (half of 12px width) */
    top: 6px;
    width: 12px;
    height: 12px;
    background-color: var(--brand, #e20d32); 
}

.timeline-marker-line{
    width: 25px;
    border: 1px solid #c2c2c2;
    height: 1px;
    position: absolute;
    left: -45px;
    top: 11.5px;
}
.timeline-year {
    font-size: 18px;
    color: var(--muted, #647084);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
}

/* Image Card Styling */
.timeline-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background-color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.timeline-card img {
    max-width: 100%;
    height: auto;
}

.timeline-desc {
    font-size: 19px;
    line-height: 1.6;
    color: var(--neutral, #4f5968);
}

.timeline-desc strong {
    color: var(--ink, #1d2637);
    font-weight: 600;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (Max Width: 991px)
   ========================================================================== */
@media (max-width: 991px) {
    .story-page-section {
        padding: 56px 0 0 0;
    }
    .story-page-section > .container-fluid {
        max-width: none;
        padding-left: 32px;
        padding-right: 32px;
    }
    .custom-header > .container-fluid,
    .investors-sub-nav > .container-fluid,
    .investors-grid-section > .container-fluid,
    .media-press-section > .container-fluid {
        max-width: none;
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
    .story-main-heading{
        font-size: 25px;
        line-height: 1.18;
        margin-bottom: 28px;
        max-width: 310px;
    }
    .story-main-heading.split-typewriter {
        overflow: hidden;
        clip-path: inset(0 100% 0 0);
        animation: mobileStoryHeadingReveal 2s steps(58, end) 0.2s forwards;
    }
    .story-main-heading.split-typewriter .type-line {
        display: inline;
        overflow: visible;
        clip-path: none;
        white-space: normal;
        animation: none;
    }
    .story-section-label{
        font-size: 16px;
        gap: 16px;
        margin-bottom: 20px;
    }
    .story-paragraph{
        font-size: 17px;
        line-height: 1.43;
        margin-bottom: 22px;
        max-width: 310px;
    }
    .timeline-marker-line{
        display: none;
    }
    .story-sticky-left {
        position: static;
        margin-bottom: 62px;
    }
    .story-horizontal-line {
        display: block;
        margin-right: 0;
    }
    .timeline-container {
        border-left: 1px solid #eef1f6;
        padding-left: 38px;
        margin-left: 0;
        margin-top: 0;
        max-width: 340px;
    }
    .timeline-marker {
        left: -24px;
        top: 3px;
        width: 12px;
        height: 12px;
    }
    .timeline-item {
        margin-bottom: 34px;
    }
    .timeline-year {
        font-size: 15px;
        line-height: 1;
        letter-spacing: 1.6px;
        margin-bottom: 24px;
    }
    .timeline-card {
        width: min(270px, 100%);
        min-height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-color: #9eb0c9;
        border-radius: 7px;
        margin-bottom: 12px;
        overflow: hidden;
    }
    .timeline-card img {
        max-width: 100%;
        height: 150px;
        object-fit: cover;
    }
    .timeline-desc {
        max-width: 270px;
        font-size: 17px;
        line-height: 1.42;
        color: #263b5d;
    }
    .timeline-desc p {
        margin-bottom: 0;
    }
    .timeline-desc p + p {
        margin-top: 16px;
    }
}

@keyframes mobileStoryHeadingReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

@media (max-width: 575px) {
    .story-page-section {
        padding-top: 58px;
    }
    .story-page-section > .container-fluid {
        padding-left: 32px;
        padding-right: 32px;
    }
    .story-sticky-left {
        max-width: 100%;
    }
    .story-main-heading,
    .story-paragraph {
        max-width: 305px;
    }
    .timeline-container {
        margin-left: 0;
    }
}


/* ==========================================================================
   INVESTORS PAGE DESIGN
   ========================================================================== */

    /* Sub Navigation Bar Styling */
    .investors-sub-nav {
        background-color: #ffffff;
        border-bottom: 1px solid #eef1f6;
        padding: 10px 0;
    }

    .investors-sub-nav > .container-fluid,
    .investors-grid-section > .container-fluid {
        max-width: var(--header-content-max);
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--page-container-pad);
        padding-right: var(--page-container-pad);
    }

    .sub-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
    }

    .sub-nav-links a {
        color: #2E3030;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease;
        letter-spacing: .4px;
    }

    .sub-nav-links a.active {
        color: #111111;
        font-weight: 700; /* Active links have heavier text as seen in image */
    }
    .sub-nav-links a:hover {
        color: #C4112E;
    }

    /* Page Layout Content */
    .investors-grid-section {
        background-color: #ffffff;
        padding-left: 0;
        padding-right: 0;
    }

    .investors-main-title {
        font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
        font-size: 28px;
        font-weight: 400;
        color: #1d2637;
        margin-bottom: 0;
        padding-left: 5px;
    }

    /* Card General Blocks */
    .investor-card {
        background: #ffffff;
        border-radius: 4px; /* Soft small rounding matching image */
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); /* Soft subtle glow shadow */
        border: 1px solid #f0f2f5;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .investor-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    /* Height of the gradient top block */
    .card-gradient-top {
        height: 250px; /* Adjust if you want smaller/larger blocks */
        width: 100%;
    }

    .card-body-content {
        padding: 30px 25px;
        background-color: #ffffff;
        flex-grow: 1;
    }

    .card-body-content h3 {
        font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
        font-size: 24px;
        color: #0c1e36;
        margin-bottom: 12px;
    }

    .card-body-content p {
        font-size: 19px;
        color: #647084;
        margin-bottom: 0;
        line-height: 1.4;
    }

    /* ==========================================================================
       EXACT IMAGE MATCH GRADIENTS (CSS code replacing colored areas)
       ========================================================================== */
    .gradient-yellow {
        background: linear-gradient(135deg, #fca34d 0%, #fcd600 100%);
    }

    .gradient-pink {
        background: linear-gradient(135deg, #ef1a49 0%, #f05494 100%);
    }

    .gradient-red {
        background: linear-gradient(135deg, #ff3614 0%, #f65376 100%);
    }

    .gradient-lime {
        background: linear-gradient(135deg, #e1ee00 0%, #fca44a 100%);
    }

    .gradient-blue {
        background: linear-gradient(135deg, #4bdcf7 0%, #176ef5 100%);
    }

    /* ==========================================================================
       MOBILE VIEW OPTIMIZATIONS
       ========================================================================== */
    @media (max-width: 991px) {
        .sub-nav-links {
            gap: 15px;
        }
        .sub-nav-links a {
            font-size: 14px;
        }
        .card-gradient-top {
            height: 200px; /* Reduced height on mobile view for compact view */
        }
    }


    /* ==========================================================================
   FAQ ACCORDION DESIGN (Line Based Minimal Layout)
   ========================================================================== */

    .faq-accordion-section {
        background-color: #ffffff;
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .faq-main-title {
        font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
        color: #45556C; /* Specific slate blue tint from image */
        font-size: 28px;
        font-weight: 400;
        line-height: 1.4;
        margin-bottom: 3.5rem;
    }

    /* Base structural row overrides */
    .custom-faq-accordion .accordion-item {
        background-color: transparent;
        border: none;
        /*border-top: 1px solid #eef1f6;*/
        border-bottom: 1px solid #eef1f6;
        /*margin-top: -1px;*/
        margin-bottom: 20px;
    }

    /* Button Adjustments */
    .custom-faq-accordion .accordion-button {
        font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
        background-color: transparent !important;
        color: #1d2637;
        font-size: 16px;
        font-weight: 500;
        padding: 16px 30px; /* Generous gap spacing matching image */
        box-shadow: none !important;
    }

    /* Active Open Question Bold tweak */
    .custom-faq-accordion .accordion-button:not(.collapsed) {
        color: #111111;
    }

    /* Replacing the default Bootstrap dropdown arrow icon with '+' and '-' signs */
    .custom-faq-accordion .accordion-button::after {
        content: "+";
        background-image: none !important;
        font-family: monospace, sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #111111;
        transform: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    }

    /* Changing to '-' when open */
    .custom-faq-accordion .accordion-button:not(.collapsed)::after {
        content: "\2212"; /* Perfect mathematical minus sign */
        font-size: 24px;
    }

    /* Answer Body content spacing */
    .custom-faq-accordion .accordion-body {
        padding: 0px 30px 24px 30px; /* Aligns left flush under the question */
        color: #4f5968;
        font-size: 14px;
        line-height: 1.6;
        font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    }

    /* Mobile responsiveness adjustments */
    @media (max-width: 768px) {
        .faq-main-title {
            font-size: 24px;
            margin-bottom: 2.5rem;

        }
        .custom-faq-accordion .accordion-button {
            font-size: 14px;
            padding: 18px 0;
            font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
            padding: 5px 20px;
        }
        .custom-faq-accordion .accordion-body {
            padding-left: 20px;
        }
    }

    /* ==========================================================================
   LEADERSHIP & GOVERNANCE SUB-PAGE STYLES
   ========================================================================== */

.governance-section {
    background-color: #ffffff;
}

.governance-section > .container-fluid {
    max-width: var(--header-content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-container-pad);
    padding-right: var(--page-container-pad);
}

.governance-content-col {
    padding: 10px 0;
}

.gov-section-title {
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    color: #0c2340;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0px;
}

/* --- Document Table Architecture --- */
.gov-table {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
}

.gov-table-row {
    padding: 12px 0;
    border-bottom: 1px solid #eef1f6;
}

.gov-table-row.header-row {
    border-bottom: 2px solid #0c2340; /* Dark prominent bar for headers */
    padding-bottom: 10px;
}

.gov-cell-header {
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0c2340;
    text-transform: capitalize;
}

.doc-icon {
    color: #1d2637; /* Dark slate document icon fill */
    opacity: 0.9;
}

.doc-name {
    font-size: 17px;
    font-weight: 500;
    color: #1d2637;
}

.download-link {
    color: #0066cc; /* Custom blue tint matching standard web download pointers */
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.15s ease;
}

.download-link:hover {
    color: #004499;
}

/* --- Board of Directors Profile Items --- */
.director-avatar {
    width: 80px;
    height: 80px;
    background-color: #cbd5e1; /* Smooth grey neutral tone */
    color: #475569;
    border-radius: 50%; /* Perfect Circle Shape */
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.director-name {
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0c2340;
}

.director-designation {
    font-size: 15px;
    color: #4f5968;
    font-weight: 400;
}

.director-bio p {
    font-size: 14px;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.profile-divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    opacity: 1;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 768px) {
    .governance-section.py-5 {
        padding-top: 20px !important;
    }
    .governance-section > .container-fluid {
        max-width: none;
        padding-left: 24px;
        padding-right: 24px;
    }
    .governance-section .row {
        --bs-gutter-x: 0;
    }
    .governance-content-col {
        padding: 0;
    }
    .gov-section-title {
        font-size: 26px;
    }
    .doc-name {
        font-size: 15px;
    }
    .gov-table {
        margin-top: 1.25rem;
    }
    .gov-table-row {
        padding-left: 0;
        padding-right: 0;
    }
    .gov-cell-content {
        min-width: 0;
        padding-right: 14px;
    }
    .gov-cell-action {
        flex-shrink: 0;
    }
    .director-profile-block > .d-flex {
        flex-direction: row !important;
        align-items: center !important;
        gap: 16px !important;
    }
    .director-meta {
        padding-top: 0 !important;
    }
    .director-avatar {
        width: 65px;
        height: 65px;
        font-size: 20px;
    }
    .director-bio p {
        font-size: 15px;
        text-align: left; /* Better readability on handheld layouts */
    }
}


/* ==========================================================================
   SEC FILINGS CUSTOM DATATABLE LOOK
   ========================================================================== */

.sec-filings-section {
    background-color: #ffffff;
}

.sec-title {
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #0c2340;
    letter-spacing: -0.01em;
}

/* Dropdown Filters Override */
.sec-dropdown {
    max-width: 220px;
    font-size: 14px;
    color: #4f5968;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 8px 36px 8px 12px;
    background-color: #ffffff;
    box-shadow: none !important;
}

/* Custom Data Grid Table Structure */
.sec-table-wrapper {
    margin-top: 1rem;
}

.sec-custom-table {
    border-collapse: collapse;
    width: 100%;
}

.sec-custom-table thead th {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.03em;
    border-bottom: 2px solid #eef1f6 !important;
    padding: 12px 12px;
}

.sec-custom-table tbody tr {
    border-bottom: 1px solid #eef1f6 !important;
    transition: background-color 0.15s ease;
}

.sec-custom-table tbody tr:hover {
    background-color: #f8fafc; /* Faint hover effect for clean scanning grid rows */
}

.sec-custom-table tbody td {
    padding: 6px 12px;
    font-size: 14px;
    color: #111111;
    border: none;
}

/* Individual Cell Variations based on visual constraints */
.form-type-cell {
    font-weight: 500;
}

.form-group-cell {
    color: #334155 !important;
}

.date-cell {
    font-family: monospace, sans-serif; /* Keeps numerals uniform and scannable */
    color: #333333;
}

/* --- Download Multi-Format Pills --- */
.download-pills-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-pill-dl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 2px 12px;
    border: 1px solid #0066cc; /* Exact signature royal blue outline */
    border-radius: 50px; /* Perfect pill architecture */
    color: #0066cc;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.2s ease;
}

.btn-pill-dl:hover {
    background-color: #0066cc;
    color: #ffffff;
}

/* Special styling tweak for specific XBRL variant pills */
.btn-pill-dl.variant-xbrl {
    border-color: #64748b;
    color: #64748b;
}

.btn-pill-dl.variant-xbrl:hover {
    background-color: #64748b;
    color: #ffffff;
}

/* --- Clean Customized Pagination Elements --- */
.custom-sec-pagination {
    gap: 4px;
}

.custom-sec-pagination .page-item .page-link {
    border: none;
    color: #647084;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 12px;
    background-color: transparent;
    transition: color 0.2s ease;
    box-shadow: none !important;
}

.custom-sec-pagination .page-item .page-link:hover {
    color: #111111;
    background-color: transparent;
}

/* Highlighted state override */
.custom-sec-pagination .page-item.active .page-link {
    color: #111111 !important;
    font-weight: 700;
    background-color: transparent !important;
    border: none;
}

.custom-sec-pagination .dots-item {
    color: #94a3b8;
    padding: 6px 4px;
}

.custom-sec-pagination .arrow-nav {
    font-family: monospace, sans-serif;
    font-size: 18px;
    color: #94a3b8 !important;
}

/* ==========================================================================
   TABLE RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 768px) {
    .sec-filters-row {
        flex-direction: column;
    }
    .sec-dropdown {
        max-width: 100%;
    }
    .sec-custom-table tbody td {
        padding: 14px 8px;
        font-size: 14px;
    }
    .btn-pill-dl {
        min-width: 46px;
        padding: 2px 10px;
        font-size: 12px;
    }
}




/* ==========================================================================
   PATENTS DATA VIEW ARCHITECTURE
   ========================================================================== */

.patents-section {
    background-color: #ffffff;
}

/* Header Text Alignments */
.patent-sub-label {
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #4f5968;
    text-transform: capitalize;
}

.patent-label-line {
    height: 1px;
    background-color: #e2e8f0;
}

.patent-main-title {
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.3;
    color: #1d2637;
    letter-spacing: -0.02em;
}

/* Custom Table Grid Layout Configuration */
.patent-table-wrapper {
    margin-top: 2rem;
    border-top: 1px solid #eef1f6;
}

.patent-custom-table {
    border-collapse: collapse;
}

.patent-custom-table thead th {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    padding: 20px 12px;
    border-bottom: 2px solid #eef1f6 !important;
    text-transform: capitalize;
}

.patent-custom-table tbody tr {
    border-bottom: 1px solid #eef1f6 !important;
}

.patent-custom-table tbody td {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #111111;
}

.patent-custom-table tbody td a,
.patent-custom-table tbody td a:visited,
.patent-custom-table tbody td a:hover,
.patent-custom-table tbody td a:focus {
    color: #111111 !important;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #111111;
    -webkit-text-fill-color: #111111;
}

/* Cell-Specific Typographic Weights */
.td-bold {
    font-weight: 700;
}

.td-muted {
    color: #4f5968 !important;
}

.td-status-active {
    color: #0066cc; /* Signature Blue for active status indicator */
    font-weight: 500;
}

.td-patents-num {
    font-family: monospace, sans-serif; /* Clean scannability for numeric lists */
    color: #334155;
    font-size: 11px!important;
}

.patent-link-bold {
    color: #0066cc;
    font-weight: 700;
    text-decoration: underline;
}

.patent-link-bold:hover {
    color: #004499;
}

/* ==========================================================================
   DATATABLES OVERRIDES FOR CLEAN COMPACT STYLE
   ========================================================================== */
.patents-section .dataTables_wrapper .row {
    margin-bottom: 0;
}

/* Hide default entries layout boxes */
.patents-section .dataTables_length, 
.patents-section .dataTables_filter {
    display: none;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .patent-main-title {
        font-size: 26px;
        margin-top: 1rem;
    }
    .patent-custom-table tbody td {
        padding: 16px 8px;
        font-size: 14px;
    }
}


/* ==========================================================================
   PRESS & MEDIA STANDALONE PAGE STYLES
   ========================================================================== */

.media-press-section {
    background-color: #ffffff;
}

.media-press-section > .container-fluid {
    max-width: var(--header-content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-container-pad) !important;
    padding-right: var(--page-container-pad) !important;
}

/* Header Text Alignments */
.media-sub-label {
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #1d2637;
}

.media-label-line {
    height: 1px;
    background-color: #cbd5e1;
}

.media-main-title {
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 400;
    line-height: 1.35;
    color: #0c2340;
    letter-spacing: 0px;
}

.media-title-animate {
    display: block;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    animation: mediaTitleReveal 2.25s steps(52, end) 0.25s forwards;
}

@keyframes mediaTitleReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.media-contact-link {
    color: #e20d32; /* Signature active brand red tone */
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.media-contact-link:hover {
    color: #c90a2b;
    text-decoration: underline !important;
}

.contact-page-section {
    padding: 56px 0 120px;
    background: #ffffff;
}

.contact-page-section > .container-fluid {
    max-width: var(--header-content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-container-pad);
    padding-right: var(--page-container-pad);
}

.contact-page-shell {
    max-width: 780px;
    margin: 0 auto;
}

.contact-page-copy {
    margin-bottom: 34px;
}

.contact-page-title {
    margin: 0 0 32px;
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(2.75rem, 4.4vw, 4rem);
    font-weight: 400;
    line-height: 1.08;
    color: #0c2340;
    letter-spacing: 0;
}

.contact-page-intro {
    max-width: 760px;
    margin: 0 0 14px;
    color: #0c2340;
    font-size: 22px;
    line-height: 1.5;
}

.contact-form-card {
    width: 100%;
}

.contact-form-field {
    margin-bottom: 26px;
}

.contact-form-field label,
.contact-consent-label {
    display: block;
    margin-bottom: 12px;
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    color: #0c2340;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}

.contact-form-field label span,
.contact-consent-label span {
    color: #df1b3f;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    border: 1px solid #1d3557;
    border-radius: 6px;
    background: #ffffff;
    color: #0c2340;
    font-size: 20px;
    line-height: 1.4;
    padding: 16px 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-field input {
    min-height: 62px;
}

.contact-form-field textarea {
    min-height: 210px;
    resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: #df1b3f;
    box-shadow: 0 0 0 3px rgba(223, 27, 63, 0.08);
}

.contact-consent-check {
    display: inline-flex !important;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0 !important;
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    color: #0c2340 !important;
}

.contact-consent-check input {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    accent-color: #df1b3f;
    flex-shrink: 0;
}

.contact-form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
}

.contact-submit-btn {
    border: 0;
    border-radius: 4px;
    background: #df1b3f;
    color: #ffffff;
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 18px 28px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-submit-btn:hover {
    background: #c41736;
    transform: translateY(-1px);
}

.contact-form-alert {
    border-radius: 8px;
    padding: 14px 16px;
    margin: 0 0 20px;
}

.contact-form-alert p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.contact-form-alert p + p {
    margin-top: 6px;
}

.contact-form-alert-error {
    background: rgba(223, 27, 63, 0.08);
    border: 1px solid rgba(223, 27, 63, 0.18);
    color: #9f1239;
}

.contact-form-alert-success {
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.16);
    color: #166534;
}

@media (max-width: 991px) {
    .contact-page-section {
        padding: 52px 0 96px;
    }

    .contact-page-section > .container-fluid {
        padding-left: 32px;
        padding-right: 32px;
    }

    .contact-page-intro {
        font-size: 19px;
    }

    .contact-form-field label,
    .contact-consent-label {
        font-size: 20px;
    }

    .contact-form-field input,
    .contact-form-field textarea,
    .contact-consent-check {
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    .contact-page-section {
        padding: 44px 0 88px;
    }

    .contact-page-section > .container-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }

    .contact-page-copy {
        margin-bottom: 28px;
    }

    .contact-page-title {
        margin-bottom: 22px;
        font-size: 2.6rem;
    }

    .contact-page-intro {
        font-size: 17px;
        line-height: 1.55;
    }

    .contact-form-field {
        margin-bottom: 22px;
    }

    .contact-form-field label,
    .contact-consent-label {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact-form-field input {
        min-height: 56px;
        padding: 14px 16px;
    }

    .contact-form-field textarea {
        min-height: 180px;
        padding: 14px 16px;
    }

    .contact-consent-check {
        gap: 10px;
        font-size: 16px !important;
    }

    .contact-form-actions {
        justify-content: flex-start;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
        min-height: 56px;
    }
}

/* --- Media Cards Structural System --- */
.media-card-block {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.media-card-block:hover {
    transform: translateY(-5px);
}

.media-img-box {
    width: 100%;
    aspect-ratio: 1.5 / 1; /* Perfect rectangular canvas dimension ratio matching image */
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    overflow: hidden;
}

.media-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    transform-origin: center;
}

.media-card-block:hover .media-img-box img {
    transform: scale(1.08);
}

/* Specific Corporate Identity Branding Backgrounds */
.bg-yahoo {
    background-color: #d1d5db; /* Clean concrete grey background block */
}

.bg-morningstar {
    background-color: #ff0000; /* Flat bright premium brand red */
}

/* Recreated Brand Text Logos styling */
.yahoo-logo-text {
    font-family: 'Arial Black', sans-serif;
    font-size: 21px;
    font-weight: 900;
    color: #400090; /* Classic Yahoo Purple */
    letter-spacing: -2px;
}

.yahoo-logo-text span {
    display: block;
    font-size: clamp(16px, 2.5vw, 32px);
    text-align: right;
    margin-top: -15px;
    font-weight: 700;
    letter-spacing: 0;
}

.morningstar-logo-text {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: clamp(24px, 4.2vw, 48px);
    color: #ffffff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.m-logo-circle {
    width: clamp(24px, 4.2vw, 44px);
    height: clamp(24px, 4.2vw, 44px);
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: inline-block;
}

/* Card Body Context Typographies */
.media-card-body {
    padding-top: 24px;
}

.media-card-title {
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: #0c2340;
    margin-bottom: 12px;
    max-width: 90%;
}
.media-card-body a:hover{
    color: #C4112E;
    text-decoration: underline;
}

.media-card-date {
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
}

/* Visual offset logic matching the original masonry layout grid stack */
@media (min-width: 768px) {
    .m-top-offset {
        margin-top: 140px; /* Shifts the second card downward exactly like the original design */
    }
}

/* ==========================================================================
   MOBILE SCREENVIEW OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 991px) {
    .media-press-section > .container-fluid {
        max-width: none;
    }
    .media-main-title {
        font-size: 26px;
    }
    .media-card-title {
        font-size: 17px;
        max-width: 100%;
    }
}


/* ==========================================================================
   LICENSING & OPPORTUNITIES STANDALONE PAGE STYLES
   ========================================================================== */

.licensing-page-section {
    background-color: #ffffff;
}

/* Banner Container Layout */
.licensing-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f2f5;
}

/* Perfect Responsive Image Handling */
.banner-pure-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image bina stretch ya crop hue auto-adjust hogi */
    object-position: center;
    display: block;
}

/* Mobile Screens View Adjustment */
@media (max-width: 768px) {
    .licensing-banner {
        height: 200px; /* Mobile devices par banner height auto-shrink ho jayegi */
    }
}

/* --- Centered Copywritten Text Controls --- */
.licensing-main-heading {
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: 50px;
    font-weight: 400;
    color: #1d2637; /* Matte corporate slate blue fill */
    letter-spacing: -0.5px;
    margin-top: 1.5rem;
}

.licensing-description-text {
    max-width: 90%; /* Keeps text length optimized for continuous reading readability */
}

.licensing-description-text p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (Max Width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
    .licensing-banner {
        height: auto;
        padding: 3rem 0!important;
    }
    .licensing-banner img{
        margin-left: 20px;
    }
    .licensing-main-heading{
        font-size: 28px;
    }
    .licensing-content-wrapper{
        padding: 2px 15px;
    }
    .banner-brand-title {
        font-size: 56px;
    }
    .licensing-description-text {
        max-width: 100%;
    }
    .licensing-description-text p {
        font-size: 16px;
        text-align: left; /* Better rendering constraints for vertical rows */
    }
}



/* ==========================================================================
   BREAKTHROUGH EFFICIENCY SECTION STYLES
   ========================================================================== */

.breakthrough-efficiency-section {
    background-color: #ffffff; /* Premium white background canvas */
    padding-top: 100px !important;
    padding-bottom: 120px !important;
}

.breakthrough-container {
    max-width: var(--header-content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-container-pad);
    padding-right: var(--page-container-pad);
}

.breakthrough-copy-col {
    padding: 3rem;
}

.efficiency-content {
    max-width: 720px;
}

/* Heading Styling */
.efficiency-title {
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    color: #45556C; /* Soft corporate slate blue tint from image */
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* Descriptive Paragraphs Layout and Weights */
.efficiency-text {
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    color: #1d2637; /* Crisp dark slate contrast */
    font-size: 24px; /* Specific sizing matching your text weights layout scale */
    line-height: 1.55; /* Generous breathing line height spacing */
    font-weight: 400;
    max-width: 80%; /* Prevents paragraph lines from becoming overly stretched on widescreen monitors */
}

/* ==========================================================================
   MOBILE & TABLET VIEW RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991px) {
    .breakthrough-efficiency-section {
        padding-top: 60px !important;
        padding-bottom: 18px !important;
    }

    .breakthrough-container {
        max-width: none;
        padding-left: 32px;
        padding-right: 24px;
    }

    .breakthrough-copy-col {
        padding: 0;
    }

    .efficiency-content {
        max-width: 340px;
    }
    
    .efficiency-title {
        font-size: 24px;
        text-align: left;
        margin-bottom: 18px !important;
    }

    .efficiency-text {
        font-size: 18px;
        line-height: 1.5;
        max-width: 100%; /* Spans full columns width safely on small handhelds layout views */
        text-align: left;
    }
}


/* ==========================================================================
   TECH FEATURES SECTION STYLES (Worldwide Access & Human-scale)
   ========================================================================== */

.tech-features-section {
    background-color: #ffffff;
    padding-bottom: 120px !important;
}

/* Feature Image Wrappers */
.feature-img-box {
    width: 100%;
    overflow: hidden;
}

.feature-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Titles Configurations */
.feature-heading {
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    color: #45556C; /* Slate blue color tone matching other subsections headers */
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
    min-width: 190px; /* Constrains heading block width to perfectly structure side text split */
}

/* Descriptions Context Adjustments */
.feature-description {
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    color: #1d2637; /* Dark charcoal text contrast */
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
}

/* ==========================================================================
   MOBILE & TABLET BREAKPOINTS VIEW MODIFICATIONS
   ========================================================================== */
@media (max-width: 767px) {
    .tech-features-section {
        padding-top: 8px !important;
        padding-bottom: 60px !important;
    }

    .tech-features-section .container-fluid {
        padding-left: 32px !important;
        padding-right: 15px !important;
    }

    .tech-features-section .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 26px;
    }

    .feature-img-box {
        margin-bottom: 20px !important;
    }
    
    .feature-heading {
        font-size: 22px;
        min-width: 100%; /* Pushes text stack underneath header lines smoothly on mobile screens */
    }
    
    .feature-description {
        font-size: 16px;
    }
}
/* ==========================================================================
   AMERICA FIRST INNOVATION SECTION STYLES
   ========================================================================== */

.innovation-america-section {
    background-color: #ffffff;
    padding-bottom: 120px !important;
}

/* Fluid Wide Banner Controls */
.innovation-banner-wrapper {
    width: 100%;
    overflow: hidden;
}

.innovation-hero-img {
    width: 100%;
    height: auto;
    max-height: 520px; /* Limits excessive stretching on extreme widescreen setups */
    object-fit: cover;
    display: block;
}

/* Section Title Typography */
.innovation-sub-title {
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    color: #45556C; /* Smooth signature slate blue tint */
    font-size: 28px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

/* Descriptive Context Content Paragraph */
.innovation-description-text {
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    color: #1d2637; /* Clean high-contrast dark charcoal color */
    font-size: 24px;
    line-height: 1.55;
    font-weight: 400;
    max-width: 95%; /* Stabilizes line lengths reading matrix */
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
    .innovation-america-section {
        padding-bottom: 60px !important;
    }
    
    .innovation-sub-title {
        font-size: 24px;
        text-align: left;
    }

    .innovation-description-text {
        font-size: 18px;
        max-width: 100%;
        text-align: left;
    }
}

/* ==========================================================================
   MINIMALIST TECHNOLOGY FAQ ACCORDION STYLES
   ========================================================================== */

.tech-faq-section {
    background-color: #ffffff;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

/* Page Section Title Settings */
.tech-faq-main-title {
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    color: #45556C; /* Subtle identity slate blue color tone */
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Accordion Base Architecture Overrides */
.tech-minimal-accordion .accordion-item {
    background-color: transparent !important;
    border: none !important;
    border-top: 1px solid #eef1f6 !important; /* Elegant top separator line matching image */
    border-bottom: 1px solid #eef1f6 !important;
    margin-top: -1px; /* Overlaps continuous lines precisely */
}

/* Collapsible Activation Toggle Button Element */
.tech-minimal-accordion .accordion-button {
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    background-color: transparent !important;
    color: #1d2637 !important;
    font-size: 16px;
    font-weight: 500;
    padding: 28px 20px 28px 30px; /* Precise internal spatial alignment mapping */
    box-shadow: none !important;
    border: none !important;
}

/* Dynamic Bold title shift when element is expanded */
.tech-minimal-accordion .accordion-button:not(.collapsed) {
    color: #111111 !important;
    font-weight: 500;
}

/* Override default bootstrap rotating blue arrows icons */
.tech-minimal-accordion .accordion-button::after {
    content: "+";
    background-image: none !important;
    font-family: monospace, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-left: auto;
}

/* Swap string icon element to minus vector on open actions states */
.tech-minimal-accordion .accordion-button:not(.collapsed)::after {
    content: "\2212"; /* Mathematical unicode minus sign line */
    font-size: 24px;
}

/* Content Panel Text Spacing Architecture */
.tech-minimal-accordion .accordion-body {
    padding: 0px 40px 32px 30px; /* Indents text block cleanly right beneath header line options */
    background-color: transparent !important;
}

.faq-para {
    font-family: "Tofino", ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1d2637; /* Clean readable dark contrast formatting */
    max-width: 95%; /* Limits excessive horizontal stretched layouts paths */
}

/* ==========================================================================
   MOBILE VIEWS BREAKPOINTS RENDERING MATRIX
   ========================================================================== */
@media (max-width: 768px) {
    .tech-faq-section {
        padding-bottom: 60px !important;
    }
    .tech-faq-main-title {
        font-size: 24px;
    }
    .tech-minimal-accordion .accordion-button {
        font-size: 16px;
        padding: 20px 10px;
    }
    .tech-minimal-accordion .accordion-body {
        padding: 0 10px 20px 10px;
    }
    .faq-para {
        font-size: 15px;
        max-width: 100%;
    }
}


/* ==========================================================================
   MAILING LIST POPUP MODAL ARCHITECTURE
   ========================================================================== */

/* Outer Backdrop Overlay Dark Blur Blend style */
.custom-kit-modal.modal {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px); /* Blurred surrounding fields match styling */
}

/* Base Modal Container Wrapper Card */
.subscription-popup-content {
    background: #172026 url("../images/goANKoMRB45BjMiumHoyJ9.jpg") center / cover no-repeat !important;
    border: none !important;
    border-radius: 8px !important; /* Soft corners */
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

/* Custom Cross Dismiss Close Icon Button */
.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 5px;
    cursor: pointer;
    transition: color 0.15s ease;
    z-index: 1056;
}

.btn-close-custom:hover {
    color: #ffffff;
}

/* Content Main Elements Typographies */
.modal-main-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(36px, 5vw, 48px); /* Big heavy layout weights style */
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.modal-sub-desc {
    font-size: 18px;
    line-height: 1.5;
    color: #e2e8f0;
    font-weight: 400;
}

/* Form Controls Input Block Style Overrides */
.input-custom-email {
    height: 56px;
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 4px !important;
    font-size: 16px;
    color: #1a202c !important;
    padding: 12px 16px;
    box-shadow: none !important;
}

.input-custom-email::placeholder {
    color: #94a3b8;
    opacity: 1;
}

/* Submit Action Button Block Styling */
.btn-submit-subscribe {
    width: auto;
    min-width: 140px;
    height: 50px;
    background-color: #e20d32 !important; /* Exact deep brand red matching layout fields */
    border-color: #e20d32 !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px !important;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
}

.btn-submit-subscribe:hover {
    background-color: #c90a2b !important;
}

/* Privacy Text Notice */
.privacy-disclaimer-text {
    font-size: 14px;
    color: #64748b; /* Sleek structural slate grey */
    font-weight: 400;
}

/* --- Brand Logo Badge "Built with Kit" --- */
.kit-branding-footer {
    opacity: 0.95;
}

.branding-text {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
}

.kit-badge-logo {
    display: inline-flex;
    align-items: center;
}

.kit-bold {
    font-family: "Arial Black", sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
}

/* Handles structural width responsive bounding dimensions scale shifts */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 1.5rem;
    }
    .modal-body {
        padding: 2.5rem 1.5rem !important;
    }
    .modal-main-title {
        font-size: 32px;
    }
    .modal-sub-desc {
        font-size: 16px;
    }
}
.dy-feature-box-head{
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: 44px;
}
.dy-feature-box p{
    font-family: "Neue Machina", ui-sans-serif, system-ui, sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}
.dy-feature-box small{
    font-weight: 550;
}
