   @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

   :root {
       --primary: #0d6efd;
       --secondary: #6c757d;
       --accent: #198754;
   }

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   body {
       font-family: "Plus Jakarta Sans", serifGraphikSemibold !important;
       line-height: 1.6;
       color: #333;
   }

   /* Navigation */
   .navbar {
       background: rgba(255, 255, 255, 0) !important;
       box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
       padding: 0.2rem 0;
       position: fixed;
       top: 0;
       width: 100%;
       z-index: 1000;
       backdrop-filter: blur(10px);
   }

   .navbar .navbar-nav {
       margin: 0 auto !important;
   }

   .sticky-top {
       background: #fff !important;

       .navbar-nav .nav-link {
           color: #000 !important;
       }
   }

   .navbar-nav .nav-link {
       font-size: 1.1rem;
       font-weight: 600;
       color: #fff;
       margin-left: 1.5rem;
       transition: color 0.3s ease;
   }

   /* .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
        } */

   .navbar-brand img {
       /* font-weight: 700;
     font-size: 1.5rem;
     color: var(--primary) !important; */
       max-width: 150px;
   }

   .btn-new,
   .btn-light,
   .btn-primary {
       background: #e21e1e;
       color: #fff;
       border-radius: 5px;
       line-height: 1.5rem;
       cursor: pointer;
       transition: ease-out 0.4s;
       font-weight: 500;
       font-size: 1.2rem;
       border-radius: 10;
       padding: 5px 20px 7px 20px;
       border: none;
   }

   .gform_button:hover,
   .btn-light:hover,
   .btn-primary:hover {
       color: #fff;
       background: #000;
   }

   /* Hero Section */
   .hero {
       background: linear-gradient(to right, #050b31 26%, #000d53 100%);
       color: #000;
       padding: 120px 0 30px 0;
       display: flex;
       align-items: center;
       min-height: 100vh;
       position: relative;
       overflow: hidden;
   }

   .hero::before {
       content: '';
       position: absolute;
       top: -50%;
       right: -10%;
       width: 400px;
       height: 400px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
       z-index: 1;
   }

   .hero-content {
       position: relative;
       z-index: 2;
   }

   small {
       font-size: 1.2rem;
       font-weight: 500;
       line-height: 1.8rem;
   }

   .hero h1 {
       font-size: clamp(2rem, 5vw, 2.5rem);
       font-weight: 700;
       margin-bottom: 1.2rem;
       line-height: 1.2;
   }

   .hero p {
       font-size: 1.2rem;
       margin-bottom: 2rem;
       opacity: 0.95;
       max-width: 600px;
   }

   .badge-item img {
       /* max-width: 100px; */
       max-width: 65px;
       margin: 5px;
   }

   /* Sections */
   section {
       padding: 80px 0 50px 0;
   }

   .mainHeading span {
       /* color: #e21e1e */
       background: -webkit-gradient(linear, left top, right top, from(#ea1616), to(#032d60));
       /* background: linear-gradient(90deg, #ea1616 0%, #4b4a5c 100%); */
       background-clip: text;
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   .mainHeading {
       color: #032d60;
   }

   .stat-number {
       font-size: 50px;
       font-weight: bold;
   }

   section h2 {
       font-size: clamp(2rem, 4vw, 2.2rem);
       font-weight: 700;
       margin-bottom: 1.5rem;
       text-align: center;
       color: #032d60;
   }

   section .subHeading {
       font-size: 1.2rem;
       margin-bottom: 2rem;
       color: #000;
       max-width: 700px;
       margin-left: auto;
       margin-right: auto;
       font-weight: 700;
       max-width: 80%;
   }

   section p {
       color: #000;
       font-size: .9rem;
       line-height: 1.4rem;
   }

   .stageIcon {
       border-radius: 40px 0px 40px 0;
       box-shadow: 5px 5px #adb5bd;
       /* width: 50%; */
       width: 70%;
   }

   .stat-label {
       font-size: 18px;
       font-weight: 600;
       letter-spacing: 3px;
   }

   .challenge-icon {
       position: relative;
   }

   .challenge-icon img {
       max-width: 80px;
   }

   .challenge-icon img {
       max-width: 80px;
       position: relative;
       z-index: 99;
   }

   .challenge-icon:after {
       position: absolute;
       background: linear-gradient(to bottom, #212f50 0%, #233050 51%, #fefefe 100%);
       content: '';
       width: 4px;
       height: 50px;
       transform: translate(-50%, 0);
       left: 52%;
       bottom: 0px;
   }

   /* Services Section */
   .services-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
       margin-top: 3rem;
   }

   .service-card {
       background: #f4f4f2;
       padding: 2rem;
       border-radius: 20px;
       transition: all 0.3s ease;

   }

   .service-card:hover {
       transform: translateY(-5px);
       border-radius: 20px;
   }

   .service-card i {
       font-size: 2.5rem;
       color: var(--primary);
       margin-bottom: 1rem;
   }

   .service-card h4 {
       font-weight: 700;
       margin-bottom: 1rem;
       color: #000;
   }

   /* Challenges Section */
   .challenges-section {
       background: #f8f9fa;
   }

   .challenge-item {
       display: flex;
       gap: 1.5rem;
       margin-bottom: 2rem;
   }

   .challenge-item img {
       width: 70px;
       height: 70px;
   }

   .challenge-item i {
       font-size: 2rem;
       color: var(--accent);
       flex-shrink: 0;
       margin-top: 0.25rem;
   }

   /* .challenge-item h4 {
     font-weight: 700;
     margin-bottom: 0.5rem;
     color: #000;
     font-size: 1.4rem;
     line-height: 1.8rem;
 } */
   .box-heading {
       font-weight: 700 !important;
       margin-bottom: 0.5rem;
       color: #000;
       font-size: 1.1rem;
       line-height: 1.3rem;
   }

   .bg-red {
       background-color: #e21e1e !important;
   }

   .bg-blue {
       background-color: #032d60 !important
   }

   .bg-red h4,
   .bg-red p {
       color: #fff !important;
   }

   .w-80 {
       max-width: 80%;
   }

   /* Process Section */
   .process-section {
       background: white;
   }

   .process-steps {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
       margin-top: 3rem;
       position: relative;
   }

   .process-step {
       text-align: center;
       padding: 1rem;
       background: #fff;
       border-radius: 0.75rem;
       position: relative;
       z-index: 2;
       padding-bottom: 0px;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .process-step:hover {
       transform: translateY(-8px);

   }

   .process-step-number {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       width: 50px;
       height: 50px;
       background: #000;
       ;
       color: white;
       border-radius: 50%;
       font-weight: 700;
       font-size: 1.5rem;
       margin-bottom: 1rem;
   }

   .process-step h4 {
       font-weight: 700;
       margin-bottom: 0.75rem;
       color: #2c3e50;
   }

   .step-item {
       display: flex;

   }

   .step-content {
       border-left: solid 4px #ddd;
       padding-left: 15px;
       margin-left: 15px;
       margin-bottom: 10px;
   }

   .step-content h5 {
       font-size: 1.2rem !important;
       font-weight: 700;
       color: #000;
       line-height: 1rem;
   }

   .step-number {
       color: #fff;
       -webkit-text-stroke-width: 1px;
       -webkit-text-stroke-color: #ddd;
       font-family: "Plus Jakarta Sans", sans-serif;
       font-size: 60px;
       font-weight: 800;
       line-height: 41px;
       display: inline-block;
   }

   .testIcon {
       width: 70px;
   }

   .testimonial-text {
       font-style: italic;
       font-size: 14px;
       color: #232222;
       line-height: 21px;
   }

   .testimonials-carousel {
       overflow-x: auto;
       overflow-y: hidden;
       position: relative;
       cursor: grab;
       scroll-behavior: smooth;
       -webkit-overflow-scrolling: touch;
       scrollbar-width: none;
   }

   .testimonials-carousel::-webkit-scrollbar {
       display: none;
   }

   .testimonials-carousel.dragging {
       cursor: grabbing;
       scroll-behavior: auto;
   }

   .testimonials-track {
       display: flex;
       gap: 1.5rem;
       width: max-content;
       animation: autoScroll 30s linear infinite;
   }

   .testimonials-carousel:hover .testimonials-track,
   .testimonials-carousel.manual-scroll .testimonials-track {
       animation-play-state: paused;
   }

   @keyframes autoScroll {
       0% {
           transform: translateX(0);
       }

       100% {
           transform: translateX(-50%);
       }
   }

   .testimonial-card-auto {
       flex: 0 0 auto;
       width: 350px;
       min-height: 280px;
   }

   @media (max-width: 768px) {
       .testimonial-card-auto {
           width: 300px;
       }

       .testimonials-track {
           animation-duration: 25s;
       }
   }

   @media (max-width: 576px) {
       .testimonial-card-auto {
           width: 280px;
       }

       .testimonials-track {
           animation-duration: 20s;
       }
   }

   /* Testimonials Section */
   .testimonials-section {
       background: #f8f9fa;
   }

   .testimonial-card {
       background: white;
       padding: 2rem;
       border-radius: 0.75rem;
       margin-bottom: 2rem;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
       border-left: 4px solid #232222;
   }

   .testimonial-card:hover {
       transition: .3s;
       border-left: 4px solid #e21e1e;
   }

   .stars {
       color: #ffc107;
       margin-bottom: 1rem;
       font-size: 1rem;
   }

   /* .testimonial-text {
     font-style: italic;
     margin-bottom: 1.5rem;
     color: #555;
     line-height: 1.8;
 } */

   .testimonial-author {
       font-weight: 700;
       color: #2c3e50;
       margin-bottom: 0.25rem;
   }

   .testimonial-role {
       color: #999;
       font-size: 0.9rem;
   }

   /* Portfolio Section */
   .portfolio-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 2rem;
       margin-top: 3rem;
   }

   .portfolio-item {
       background: #f8f9fa;
       border-radius: 0.75rem;
       overflow: hidden;
       transition: all 0.3s ease;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   }

   .portfolio-item:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
   }

   .portfolio-image {
       width: 100%;
       height: 200px;
       background: linear-gradient(135deg, var(--primary) 0%, #0a58ca 100%);
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 3rem;
   }

   .portfolio-content {
       padding: 1.5rem;
   }

   .portfolio-content h5 {
       font-weight: 700;
       margin-bottom: 0.5rem;
       color: #2c3e50;
   }

   /* Contact Form Section */
   .contact-section {
       background: white;
   }

   .form-control,
   .form-select {
       border: 1px solid #bdbdbd;
       border-radius: 0;
       padding: 0.5rem 1rem;
       font-size: 1rem;
   }

   /* .form-control,
 .form-select {
     border: 1px solid #ddd;
     border-radius: 0.5rem;
     padding: 0.75rem 1rem;
     font-size: 1rem;
 } */

   .form-control:focus,
   .form-select:focus {
       border-color: var(--primary);
       box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
   }

   label.form-label {
       font-size: 14px;
       font-weight: bold;
   }

   .form-container {
       max-width: 600px;
       margin: 0 auto;
       background: #f8f9fa;
       padding: 2rem;
       border-radius: 0.75rem;
   }

   .modal-header {
       background: #000;
       color: #fff;
   }

   /* Footer */
   footer {
       background: #2c3e50;
       color: white;
       padding: 3rem 0 1rem;
       text-align: center;
   }

   footer p {
       color: #bbb;
       margin: 0.5rem 0;
   }

   /* Responsive */
   @media (max-width: 768px) {
       section {
           padding: 50px 0;
       }

       .hero {
           padding: 80px 0;
           min-height: auto;
       }

       .hero h1 {
           margin-bottom: 1rem;
       }

       .hero p {
           font-size: 1rem;
           margin-bottom: 1.5rem;
       }

       .challenge-item {
           gap: 1rem;
       }

       .process-steps {
           gap: 1rem;
       }
   }

   @media (max-width: 576px) {
       .navbar-brand {
           font-size: 1.25rem;
       }

       .service-card,
       .process-step,
       .testimonial-card {
           padding: 1.5rem;
       }
   }

   .portfolio-carousel {
       overflow-x: auto;
       overflow-y: hidden;
       position: relative;
       cursor: grab;
       scroll-behavior: smooth;
       -webkit-overflow-scrolling: touch;
       scrollbar-width: none;
       padding-bottom: 10px;
   }

   .portfolio-carousel::-webkit-scrollbar {
       display: none;
   }

   .portfolio-carousel.dragging {
       cursor: grabbing;
       scroll-behavior: auto;
   }

   .portfolio-track {
       display: flex;
       gap: 1.5rem;
       width: max-content;
       animation: autoScrollPortfolio 28s linear infinite;
   }

   .portfolio-carousel:hover .portfolio-track,
   .portfolio-carousel.manual-scroll .portfolio-track {
       animation-play-state: paused;
   }

   @keyframes autoScrollPortfolio {
       0% {
           transform: translateX(0);
       }

       100% {
           transform: translateX(-50%);
       }
   }

   .portfolio-item-auto {
       flex: 0 0 auto;
       width: 320px;
       min-height: 280px;
       border-radius: 16px;
       overflow: hidden;
       /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
   }

   .portfolio-item-auto img {
       /* height: 180px; */
       object-fit: cover;
   }

   .modal-body {
       color: #000;
       text-align: left !important;
   }

   .domain-card {
       background: white;
       padding: 10px;
       border-radius: 12px;
       text-align: center;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       height: 100%;
       display: flex;
       flex-direction: column;
       justify-content: center;
   }

   .domain-card:hover {
       transform: translateY(-8px);
       box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
   }

   .domain-icon {
       font-size: 30px;
       color: #000;
       margin-bottom: 10px;
   }

   .domain-card h4 {
       margin-bottom: 0;
       font-size: 13px;
       line-height: 18px;
       font-weight: 600;
   }

   .domain-card p {
       color: #666;
       font-size: 14px;
       line-height: 1.6;
       margin-bottom: 0;
   }

   .clients-grid {
       overflow: hidden;
       width: 100%;
   }

   .logos-row {
       display: flex;
       gap: 40px;
       margin-bottom: 40px;
       position: relative;
   }



   .logos-row-1 {
       animation: scrollLeft 30s linear infinite;
   }

   .logos-row-2 {
       animation: scrollRight 30s linear infinite;
   }

   .logo-item {
       flex: 0 0 auto;
       text-align: center;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .logo-item {
       animation: slideInShuffled 0.6s ease-out forwards;
       opacity: 0;
   }

   @keyframes slideInShuffled {
       0% {
           opacity: 0;
           transform: translateX(var(--random-offset, 20px)) translateY(var(--random-y, -10px)) scale(0.8);
       }

       100% {
           opacity: 1;
           transform: translateX(0) translateY(0) scale(1);
       }
   }

   .logo-item:nth-child(1) {
       animation-delay: 0s;
       --random-offset: 30px;

   }

   .logo-item:nth-child(2) {
       animation-delay: 0.1s;
       --random-offset: -25px;
       --random-y: 15px;
   }

   .logo-item:nth-child(3) {
       animation-delay: 0.2s;
       --random-offset: 35px;
       --random-y: -10px;
   }

   .logo-item:nth-child(4) {
       animation-delay: 0.3s;
       --random-offset: -30px;
       --random-y: 20px;
   }

   .logo-item:nth-child(5) {
       animation-delay: 0.4s;
       --random-offset: 25px;

   }

   .logo-item:nth-child(6) {
       animation-delay: 0.5s;
       --random-offset: -35px;
       --random-y: 10px;
   }

   .logo-item:nth-child(7) {
       animation-delay: 0.6s;
       --random-offset: 20px;
       --random-y: -25px;
   }

   .logo-item:nth-child(8) {
       animation-delay: 0.7s;
       --random-offset: -20px;
       --random-y: 18px;
   }

   .logo-item:nth-child(9) {
       animation-delay: 0.8s;
       --random-offset: 28px;
       --random-y: -12px;
   }

   .clients-section {
       padding: 60px 0;
   }

   .client-logo {
       max-width: 120px;
       height: auto;
       /* opacity: 0.8;
                transition: opacity 0.3s ease; */
   }

   .client-logo:hover {
       opacity: 1;
   }

   .ml-0 {
       margin-left: 0 !important;
   }

   @media (max-width: 768px) {}

   @media (max-width: 768px) {
       .portfolio-item-auto {
           width: 280px;
       }

       .portfolio-track {
           animation-duration: 24s;
       }
   }

   @media (max-width: 576px) {

       .hero {
           padding-top: 100px;
       }

       small {
           font-size: 1.2rem;
           font-weight: bold;
           line-height: 1.5rem;
           padding-bottom: 12px;
           display: block;
       }

       .badge-item img {
           max-width: 85px;
           margin: 5px;
       }

       .domain-card {
           margin-top: 7px;
       }

       .portfolio-item-auto {
           width: 250px;
       }

       .portfolio-track {
           animation-duration: 20s;
       }

       .trust-badges p {
           text-align: center;
           font-weight: bold;
           text-transform: capitalize;
       }

       .badgesMob {
           justify-content: center !important;
       }

       .service-card .hexaIcon {
           width: 95px;
       }

       .heroBanner {
           margin-top: 15px;
       }

       .mt-mob {
           margin-top: 15px;
       }

       .stat-number {
           font-size: 37px;
           font-weight: bold;
       }

       section .mainHeading {
           font-size: 1.6rem;
           line-height: 2.0rem;
           font-weight: bold !important;
       }

       section .subHeading {
           font-size: 1.1rem;
           line-height: 1.5rem;
           max-width: 100%;
       }

       .btn-light {
           border: none;
           padding: 14px 50px;
       }

       #mainFooter {
           width: 100%;
           background: #fff;
           /* color: #fff; */
           padding: 18px;
           text-align: center;
           transition: all 0.3s ease;
           display: flex;
           justify-content: center;
           align-items: center;
           gap: 20px;
       }

       .footer-fixed {
           position: fixed;
           bottom: 0;
           left: 0;
           z-index: 999;
       }

       .mobileBottomStrip {
           display: none;
       }

       .logos-row {
           display: flex;
           gap: 25px;
           margin-bottom: 40px;
           position: relative;
       }

       .client-logo {
           max-width: 70px;
       }

       .navbar-toggler {
           background-color: #fff;
       }

       .stageIcon {
           border-radius: 10px 0px 10px 0;
           box-shadow: 5px 5px #adb5bd;
           width: 125px;
           height: 86px;
       }
   }