 :root {
     --red: #e50914;
     --dark-red: #b80009;
     --black: #121212;
     --grey: #555;
     --light: #f7f7f7;
     --white: #ffffff;
     --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);

     --yellow: #ffc400;
     --dark-yellow: #f5a900;
     --soft-yellow: #fff7d6;

     --light: #fffaf0;

     --border: #f1e5d0;
     --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
     --yellow-shadow: 0 14px 32px rgba(255, 196, 0, 0.35);
     --red-shadow: 0 14px 32px rgba(229, 9, 20, 0.25);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Montserrat', sans-serif;
     color: var(--black);
     background: var(--white);
     line-height: 1.6;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 img {
     max-width: 100%;
     display: block;
 }

 .container {
     width: min(1320px, 92%);
     margin: auto;
 }

 body {
     font-family: 'Montserrat', sans-serif !important;
 }

 header {
     position: sticky;
     top: 0;
     z-index: 1000;
     background: rgba(255, 255, 255, 0.96);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--border);
 }

 .nav-wrap {
     height: 82px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 30px;
 }

 .logo {
     font-size: 28px;
     font-weight: 900;
     letter-spacing: -1px;
     color: var(--black);
     white-space: nowrap;
 }

 .logo span {
     color: var(--red);
 }

 nav>ul {
     display: flex;
     align-items: center;
     gap: 26px;
     list-style: none;
 }

 nav li {
     list-style: none;
 }

 nav>ul>li>a {
     font-size: 14px;
     font-weight: 700;
     padding: 30px 0;
     display: inline-flex;
     align-items: center;
     gap: 6px;
 }

 .nav-actions {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 13px 22px;
     border-radius: 999px;
     font-weight: 800;
     font-size: 14px;
     border: 2px solid transparent;
     cursor: pointer;
     transition: 0.25s ease;
     font-family: inherit;
 }

 .btn-red {
     background: linear-gradient(135deg, var(--red), var(--dark-red));
     color: var(--white);
     box-shadow: var(--red-shadow);
 }

 .btn-red:hover {
     background: linear-gradient(135deg, var(--dark-red), var(--red));
     transform: translateY(-2px);
 }

 .btn-outline {
     border-color: var(--yellow);
     color: var(--black);
     background: var(--white);
     box-shadow: 0 8px 20px rgba(255, 196, 0, .14);
 }

 .btn-outline:hover {
     background: var(--yellow);
     color: var(--black);
     transform: translateY(-2px);
 }


 .has-mega {
     position: static;
 }

 .mega-menu {
     position: absolute;
     top: 82px;
     left: 50%;
     transform: translateX(-50%) translateY(12px);
     width: min(1280px, 94vw);
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 0 0 28px 28px;
     box-shadow: var(--shadow);
     padding: 28px;
     opacity: 0;
     visibility: hidden;
     transition: 0.22s ease;
 }

 .has-mega:hover .mega-menu {
     opacity: 1;
     visibility: visible;
     transform: translateX(-50%) translateY(0);
 }

 .mega-grid {
     display: grid;
     grid-template-columns: 1.2fr 1fr 1fr 1fr;
     gap: 24px;
 }

 .mega-feature {
     background: linear-gradient(135deg, #fff2f3, var(--soft-yellow), #ffffff);
     border: 1px solid #ffe58a;
     padding: 26px;
     border-radius: 24px;
 }

 .mega-feature h3 {
     font-size: 24px;
     margin-bottom: 12px;
 }

 .mega-feature p {
     color: var(--grey);
     font-size: 14px;
     margin-bottom: 18px;
 }

 .mega-col h4 {
     color: var(--red);
     margin-bottom: 14px;
     font-size: 15px;
     text-transform: uppercase;
     letter-spacing: .5px;
     border-left: 4px solid var(--yellow);
     padding-left: 10px;
 }

 .mega-link {
     display: flex;
     gap: 12px;
     align-items: flex-start;
     padding: 12px;
     border-radius: 14px;
     transition: .2s ease;
 }

 .mega-link:hover {
     background: linear-gradient(90deg, #fff3f4, var(--soft-yellow));
     transform: translateX(3px);
 }

 .mega-link i {
     color: var(--red);
     background: var(--soft-yellow);
     width: 34px;
     height: 34px;
     border-radius: 12px;
     display: grid;
     place-items: center;
     font-size: 16px;
     margin-top: 0;
     min-width: 34px;
 }

 .mega-link strong {
     display: block;
     font-size: 14px;
     margin-bottom: 3px;
 }

 .mega-link span {
     display: block;
     font-size: 12px;
     color: var(--grey);
     line-height: 1.4;
 }

 .mobile-toggle {
     display: none;
     font-size: 24px;
     cursor: pointer;
 }

 .hero {
     position: relative;
     overflow: hidden;
     padding: 92px 0 70px;
     background: radial-gradient(circle at 10% 10%, rgba(229, 9, 20, .10), transparent 30%), radial-gradient(circle at 85% 12%, rgba(255, 196, 0, .25), transparent 26%), linear-gradient(180deg, #ffffff, #fff9e8 58%, #fff4f4);
 }

 .hero:before {
     content: "";
     position: absolute;
     width: 420px;
     height: 420px;
     border-radius: 50%;
     background: rgba(255, 196, 0, .18);
     right: -120px;
     top: 90px;
     filter: blur(6px);
 }

 .hero-grid {
     display: grid;
     grid-template-columns: 1.05fr .95fr;
     gap: 55px;
     align-items: center;
 }

 .eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: var(--black);
     background: var(--yellow);
     border: 1px solid var(--dark-yellow);
     padding: 8px 14px;
     border-radius: 999px;
     font-weight: 900;
     font-size: 13px;
     margin-bottom: 18px;
     box-shadow: var(--yellow-shadow);
 }

 .hero h1 {
     font-size: clamp(42px, 6vw, 78px);
     line-height: .98;
     letter-spacing: -3px;
     margin-bottom: 24px;
 }

 .hero h1 span {
     color: var(--red);
 }

 .hero p {
     font-size: 18px;
     color: var(--grey);
     max-width: 650px;
     margin-bottom: 30px;
 }

 .hero-actions {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     margin-bottom: 34px;
 }

 .hero-stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
     max-width: 650px;
 }

 .stat-card {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 22px;
     padding: 20px;
     box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
 }

 .stat-card h3 {
     color: var(--red);
     font-size: 25px;
 }

 .stat-card:nth-child(2) h3 {
     color: var(--dark-yellow);
 }

 .stat-card {
     position: relative;
     overflow: hidden;
 }

 .stat-card:before {
     content: "";
     position: absolute;
     inset: 0 0 auto 0;
     height: 5px;
     background: linear-gradient(90deg, var(--red), var(--yellow));
 }

 .stat-card span {
     font-size: 13px;
     color: var(--grey);
     font-weight: 600;
 }


 .hero-visual {
     position: relative;
     min-height: 560px;
 }

 .dashboard-stack {
     position: relative;
     height: 560px;
 }

 .screen-card {
     position: absolute;
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 12px;
     box-shadow: var(--shadow);
     padding: 10px;
     overflow: hidden;
 }

 .screen-card.main {
     width: 84%;
     right: -42px;
     top: 98px;
     z-index: 3;
 }

 .screen-card.left {
     width: 75%;
     left: 0;
     top: 0;
     z-index: 2;
     transform: rotate(-3deg);
 }

 .screen-card.bottom {
     width: 80%;
     left: 0;
     bottom: 52px;
     z-index: 4;
     transform: rotate(2deg);
 }

 .screen-card.small {
     width: 69%;
     right: 0;
     bottom: 0;
     z-index: 5;
 }

 .screen-top {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 14px;
     font-size: 13px;
     font-weight: 900;
 }

 .screen-tag {
     background: #fff0f1;
     color: var(--red);
     border-radius: 999px;
     padding: 5px 10px;
     font-size: 11px;
     font-weight: 900;
 }

 .fake-dashboard {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
 }

 .fake-metric {
     background: #fafafa;
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 14px;
 }

 .fake-metric strong {
     display: block;
     color: var(--red);
     font-size: 22px;
     line-height: 1;
     margin-bottom: 6px;
 }

 .fake-metric span {
     color: var(--grey);
     font-size: 11px;
     font-weight: 700;
 }

 .fake-chart {
     grid-column: 1 / -1;
     height: 120px;
     background: linear-gradient(135deg, #fff4f5, #ffffff);
     border: 1px solid #ffd7da;
     border-radius: 18px;
     display: flex;
     align-items: end;
     gap: 10px;
     padding: 16px;
 }

 .bar {
     flex: 1;
     background: var(--red);
     border-radius: 8px 8px 0 0;
     opacity: .85;
 }

 .fake-list {
     display: grid;
     gap: 10px;
 }

 .fake-row {
     display: flex;
     align-items: center;
     gap: 10px;
     background: #fafafa;
     border: 1px solid var(--border);
     border-radius: 14px;
     padding: 10px;
 }

 .fake-row i {
     color: var(--red);
 }

 .fake-row div {
     flex: 1;
     height: 8px;
     border-radius: 20px;
     background: #e9e9e9;
 }

 .phone-frame {
     background: #111;
     color: white;
     border-radius: 28px;
     padding: 16px;
     min-height: 240px;
 }

 .phone-frame h4 {
     font-size: 14px;
     margin-bottom: 14px;
 }

 .phone-app-card {
     background: rgba(255, 255, 255, .1);
     border: 1px solid rgba(255, 255, 255, .14);
     border-radius: 16px;
     padding: 12px;
     margin-bottom: 10px;
     font-size: 12px;
 }

 .floating-note {
     position: absolute;
     right: -18px;
     bottom: 92px;
     background: var(--red);
     color: var(--white);
     padding: 18px;
     border-radius: 20px;
     box-shadow: 0 18px 40px rgba(229, 9, 20, .3);
     max-width: 245px;
     font-size: 13px;
     font-weight: 700;
     z-index: 7;
 }

 section {
     padding: 86px 0;
 }

 .section-head {
     text-align: center;
     max-width: 850px;
     margin: 0 auto 45px;
 }

 .section-head h2 {
     font-size: clamp(32px, 4vw, 52px);
     letter-spacing: -2px;
     line-height: 1.1;
     margin-bottom: 16px;
 }

 .section-head h2 span {
     color: var(--red);
     background: linear-gradient(90deg, var(--red), var(--dark-red), var(--yellow));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .section-head p {
     color: var(--grey);
     font-size: 17px;
 }

 .ecosystem-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 22px;
 }

 .product-card {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 28px;
     padding: 28px;
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
     transition: .25s ease;
     min-height: 260px;
     display: flex;
     flex-direction: column;
 }

 .product-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow);
     border-color: var(--yellow);
 }

 .product-icon {
     width: 58px;
     height: 58px;
     border-radius: 18px;
     background: linear-gradient(135deg, var(--soft-yellow), #fff0f1);
     color: var(--red);
     display: grid;
     place-items: center;
     font-size: 24px;
     margin-bottom: 18px;
     box-shadow: 0 10px 24px rgba(255, 196, 0, .20);
 }

 .product-card h3 {
     font-size: 21px;
     margin-bottom: 10px;
 }

 .product-card p {
     color: var(--grey);
     font-size: 14px;
     margin-bottom: 18px;
 }

 .product-card ul {
     margin-top: auto;
     padding-left: 0;
     list-style: none;
 }

 .product-card li {
     font-size: 13px;
     color: #444;
     margin: 8px 0;
     display: flex;
     gap: 8px;
 }

 .product-card li:before {
     content: "✓";
     color: var(--dark-yellow);
     font-weight: 900;
 }

 .dark-section {
     background: #111;
     color: var(--white);
     position: relative;
     overflow: hidden;
 }

 .dark-section:before {
     content: "";
     position: absolute;
     width: 420px;
     height: 420px;
     background: rgba(229, 9, 20, .28);
     filter: blur(90px);
     border-radius: 50%;
     right: -80px;
     top: -100px;
 }

 .dark-section .section-head p,
 .dark-section .service-card p,
 .dark-section li {
     color: #ccc;
 }

 .service-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 18px;
     position: relative;
     z-index: 2;
 }

 .service-card {
     background: rgba(255, 255, 255, .06);
     border: 1px solid rgba(255, 255, 255, .12);
     border-radius: 24px;
     padding: 24px;
 }

 .service-card i {
     font-size: 28px;
     color: var(--yellow);
     margin-bottom: 18px;
 }

 .service-card h3 {
     font-size: 18px;
     margin-bottom: 10px;
 }

 .industries {
     background: var(--light);
 }

 .industry-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 18px;
 }

 .industry-card {
     background: var(--white);
     border-radius: 22px;
     padding: 24px;
     border: 1px solid var(--border);
     font-weight: 800;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .industry-card i {
     color: var(--red);
     background: var(--soft-yellow);
     width: 42px;
     height: 42px;
     border-radius: 14px;
     display: grid;
     place-items: center;
     font-size: 20px;
 }

 .journey {
     display: grid;
     grid-template-columns: .8fr 1.2fr;
     gap: 50px;
     align-items: center;
 }

 .journey-box {
     background: linear-gradient(135deg, #fff7f7, var(--soft-yellow));
     border: 1px solid #ffe58a;
     border-radius: 30px;
     padding: 34px;
 }

 .journey-box h2 {
     font-size: 42px;
     line-height: 1.1;
     margin-bottom: 16px;
 }

 .timeline {
     display: grid;
     gap: 20px;
 }

 .timeline-item {
     display: grid;
     grid-template-columns: 110px 1fr;
     gap: 20px;
     padding: 24px;
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 24px;
     box-shadow: 0 12px 28px rgba(0, 0, 0, .04);
 }

 .timeline-year {
     color: var(--red);
     font-size: 26px;
     font-weight: 900;
     border-bottom: 5px solid var(--yellow);
     width: max-content;
 }

 .timeline-item p {
     color: var(--grey);
     font-size: 15px;
 }

 .feature-band {
     background: linear-gradient(135deg, var(--red), #8e0008 58%, var(--dark-yellow));
     color: var(--white);
     border-radius: 38px;
     padding: 55px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
     box-shadow: 0 22px 55px rgba(229, 9, 20, .25);
 }

 .feature-band h2 {
     font-size: 42px;
     line-height: 1.12;
     margin-bottom: 16px;
 }

 .feature-list {
     display: grid;
     gap: 14px;
 }

 .feature-list div {
     background: rgba(255, 255, 255, .12);
     border: 1px solid rgba(255, 255, 255, .18);
     padding: 16px;
     border-radius: 18px;
     font-weight: 700;
     display: flex;
     gap: 10px;
     align-items: center;
 }

 .cta {
     text-align: center;
     background: radial-gradient(circle at 50% 0%, rgba(255, 196, 0, .25), transparent 35%), linear-gradient(135deg, #111, #210003);
     color: var(--white);
     padding: 80px 20px;
     border-radius: 0;
 }

 .cta h2 {
     font-size: clamp(32px, 5vw, 58px);
     line-height: 1.1;
     margin-bottom: 16px;
 }

 .cta p {
     color: #ccc;
     max-width: 700px;
     margin: 0 auto 28px;
 }

 footer {
     background: #080808;
     color: #ccc;
     padding: 55px 0 24px;
     border-top: 6px solid var(--yellow);
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1.4fr 1fr 1fr 1fr;
     gap: 32px;
     margin-bottom: 35px;
 }

 footer h3,
 footer h4 {
     color: var(--white);
     margin-bottom: 14px;
 }

 footer p,
 footer a {
     color: #aaa;
     font-size: 14px;
     display: block;
     margin-bottom: 9px;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, .08);
     padding-top: 22px;
     font-size: 13px;
     color: #888;
 }

 .popup-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, .62);
     z-index: 2000;
     display: none;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .popup-overlay.active {
     display: flex;
 }

 .popup {
     width: min(520px, 96vw);
     background: var(--white);
     border-radius: 28px;
     padding: 30px;
     position: relative;
     box-shadow: var(--shadow);
 }

 .popup-close {
     position: absolute;
     right: 20px;
     top: 18px;
     cursor: pointer;
     font-size: 22px;
     color: var(--red);
 }

 .popup h3 {
     font-size: 28px;
     margin-bottom: 8px;
 }

 .popup p {
     color: var(--grey);
     margin-bottom: 18px;
 }

 .form-group {
     margin-bottom: 14px;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 14px 16px;
     border-radius: 14px;
     border: 1px solid #ddd;
     font-family: inherit;
     outline: none;
 }

 .form-group textarea {
     min-height: 95px;
     resize: vertical;
 }

 @media (max-width: 1080px) {
     nav {
         display: none;
         position: absolute;
         top: 82px;
         left: 0;
         right: 0;
         background: var(--white);
         padding: 20px;
         border-bottom: 1px solid var(--border);
     }

     nav.active {
         display: block;
     }

     nav>ul {
         flex-direction: column;
         align-items: flex-start;
     }

     .mega-menu {
         position: static;
         transform: none;
         opacity: 1;
         visibility: visible;
         display: none;
         width: 100%;
         padding: 20px 0;
         box-shadow: none;
         border: 0;
     }

     .has-mega:hover .mega-menu {
         display: block;
         transform: none;
     }

     .mega-grid,
     .hero-grid,
     .journey,
     .feature-band {
         grid-template-columns: 1fr;
     }

     .mobile-toggle {
         display: block;
     }

     button.btn.btn-red.hide-mob {
         display: none;
     }

     .ecosystem-grid,
     .industry-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .service-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 640px) {
     .hero {
         padding-top: 60px;
     }

     .hero-stats,
     .ecosystem-grid,
     .industry-grid,
     .service-grid,
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .hero h1 {
         letter-spacing: -1.5px;
     }

     .hero-visual {
         min-height: auto;
     }

     .dashboard-stack {
         height: auto;
         display: grid;
         gap: 18px;
     }

     .screen-card,
     .screen-card.main,
     .screen-card.left,
     .screen-card.bottom,
     .screen-card.small {
         position: static;
         width: 100%;
         transform: none;
     }

     .feature-band {
         padding: 32px;
     }

     .timeline-item {
         grid-template-columns: 1fr;
     }

     .floating-note {
         position: static;
         margin-top: 18px;
         max-width: 100%;
     }

     .btn {
         display: inline-flex;
         align-items: center;
         justify-content: center;
         gap: 8px;
         padding: 10px 5px;
         border-radius: 30px;
         font-weight: 800;
         font-size: 11px;
     }

     .nav-wrap {
         gap: 18px;
     }

     nav>ul {
         gap: 0;
     }

     nav>ul>li>a {
         font-size: 14px;
         font-weight: 700;
         padding: 8px 0;
         display: inline-flex;
         align-items: center;
         gap: 6px;
     }
 }

 @media (max-width: 991px) {

     .mega-menu {
         position: static;
         width: 100%;
         transform: none !important;
         opacity: 0;
         max-height: 0;
         overflow: hidden;
         padding: 0 20px;
         transition: all .3s ease;
     }

     .has-mega.active .mega-menu {
         opacity: 1;
         display: block;
         max-height: 2000px;
         padding: 0px;
     }

     .has-mega:hover .mega-menu {
         opacity: 0;
         display: block;
         max-height: 0;
     }

     .has-mega.active:hover .mega-menu {
         opacity: 1;
         display: block;
         max-height: 2000px;
     }

     nav.active {
         display: block;
         height: 315px;
         overflow-y: scroll;
     }
 }

 .spinner {
     display: inline-block;
     width: 16px;
     height: 16px;
     border: 2px solid rgba(255, 255, 255, .4);
     border-top-color: #fff;
     border-radius: 50%;
     animation: spin .8s linear infinite;
     vertical-align: middle;
     margin-right: 8px;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 /* ── Contact Section Wrapper ── */
 .contact-section-wrap {
     background: #f7f7f7;
     padding: 70px 0 80px;
 }

 /* ── Responsive overrides for the included contact section ── */
 .filed-grid-2 {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
 }

 .filed-card {
     background: linear-gradient(135deg, #fff2f3, var(--soft-yellow, #fffbea));
     border: 1px solid #ffe08a;
     border-radius: 20px;
     padding: 35px;
     box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
 }

 .filed-card h3 {
     color: #000000;
     margin-bottom: 25px;
     font-size: 28px;
     font-weight: 700;
     font-family: 'Montserrat', sans-serif;
 }

 .filed-card p {
     line-height: 1.8;
     color: #1f2937;
     font-family: 'Montserrat', sans-serif;
     font-size: 14px;
 }

 .filed-card a {
     color: #e53935;
     text-decoration: none;
     font-weight: 500;
 }

 /* form elements */
 .filed-card .form-group {
     margin-bottom: 16px;
 }

 .filed-card .form-group input,
 .filed-card .form-group select,
 .filed-card .form-group textarea {
     width: 100%;
     font-family: 'Montserrat', sans-serif;
     font-size: 14px;
     padding: 12px 16px;
     border: 1px solid #e5e7eb;
     border-radius: 8px;
     background: #ffffff;
     color: #1f2937;
     outline: none;
     box-sizing: border-box;
     transition: border-color 0.2s;
 }

 .filed-card .form-group input:focus,
 .filed-card .form-group select:focus,
 .filed-card .form-group textarea:focus {
     border-color: #e50914;
 }

 .filed-card .form-group textarea {
     resize: vertical;
 }

 .filed-card .btn-red {
     background: #e50914;
     color: #ffffff;
     font-family: 'Montserrat', sans-serif;
     font-size: 14px;
     font-weight: 700;
     border: none;
     border-radius: 8px;
     padding: 14px 24px;
     cursor: pointer;
     transition: background 0.2s, transform 0.2s;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     letter-spacing: 0.3px;
 }

 .filed-card .btn-red:hover {
     background: #c0070f;
     transform: translateY(-2px);
 }

 .filed-card .btn-red:disabled {
     opacity: 0.7;
     cursor: not-allowed;
     transform: none;
 }

 .spinner {
     display: inline-block;
     width: 14px;
     height: 14px;
     border: 2px solid rgba(255, 255, 255, 0.4);
     border-top-color: #fff;
     border-radius: 50%;
     animation: spin 0.7s linear infinite;
     vertical-align: middle;
     margin-right: 4px;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 .alert {
     font-family: 'Montserrat', sans-serif;
     font-size: 13px;
     padding: 10px 14px;
     border-radius: 8px;
     margin-bottom: 12px;
     line-height: 1.5;
 }

 .alert-success {
     background: #dcfce7;
     color: #166534;
     border: 1px solid #bbf7d0;
 }

 .alert-danger {
     background: #fee2e2;
     color: #991b1b;
     border: 1px solid #fecaca;
 }

 .alert-danger ul {
     margin: 6px 0 0 16px;
     padding: 0;
 }

 .alert-danger ul li {
     font-size: 13px;
 }

 @media (max-width: 768px) {
     .contact-hero .container {
         flex-direction: column;
         align-items: flex-start;
     }

     .contact-hero-right {
         width: 100%;
     }

     .contact-pill {
         flex: 1;
         min-width: 140px;
     }

     .filed-grid-2 {
         grid-template-columns: 1fr;
     }

     .filed-card {
         padding: 24px 20px;
     }

     .filed-card h3 {
         font-size: 22px;
     }
 }

 @media(max-width:767px) {
     .hero {
         padding-top: 35px !important;
     }

     .section-head {
         margin: 0 auto 20px;
     }

     .product-card {
         padding: 20px;
     }

     .service-card {
         padding: 18px;
     }

     .feature-band h2 {
         font-size: 25px;
     }

     .feature-band {
         padding: 20px;
     }

     .cta {
         padding: 40px 0px;
     }

     .journey-box h2 {
         font-size: 25px;
     }

     .hero-grid {
         gap: 20px;
     }

     .industry-card {
         padding: 15px;
     }

     section {
         padding: 40px 0;
     }

     .journey-box {
         padding: 20px;
     }

     .timeline-item {
         padding: 15px;
     }
 }

 @media(max-width:767px) {
     .sb-hero {
         font-size: 30px;
     }

     .sb-hero-grid {
         gap: 20px;
     }

     .sb-section {
         padding: 40px 0 !important;
     }

     .sb-pkg-card {
         padding: 20px;
     }
 }
#only-mobile-view{
    display: none;
}
 @media only screen and (max-width: 600px) {
    #only-mobile-view{
        display: block;
    }
 }
