 body {
   background-color: #f9fcff;
   font-family: 'inter';
   margin: 0;
   padding: 0;
   overflow-x: hidden !important;
   letter-spacing: -0.8px;
   line-height: 1.2 !important;
 }

 /* Fullscreen Intro */
 #intro-overlay {
   position: fixed;
   z-index: 9999;
   inset: 0;
   background: white;
   display: flex;
   align-items: center;
   justify-content: center;
   animation: zoomOut 2.5s ease forwards;
   transition: opacity 1.5s ease, transform 1.5s ease;
 }

 .intro-text {
   font-family: 'rubik';
   font-size: 200px;
   text-align: center;
   background: linear-gradient(to bottom, #DBF1FA 0%, #DBF1FA 80%, #ffffff 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   /* for non-webkit browsers */
   animation: fadeText 2s ease-in-out;
   transition: transform 1.5s ease, opacity 1.5s ease;
 }

 @keyframes zoomOut {
   0% {
     transform: scale(1);
     opacity: 1;
   }

   60% {
     transform: scale(1.2);
     opacity: 1;
   }

   100% {
     transform: scale(0.95);
     opacity: 0;
     visibility: hidden;
   }
 }

 @keyframes fadeText {
   0% {
     opacity: 0;
     transform: scale(0.8);
   }

   50% {
     opacity: 1;
     transform: scale(1);
   }

   100% {
     opacity: 1;
   }
 }




 .header-dropdown {
   background-color: #ffffff;
   border-radius: 8px;
   width: fit-content;
   padding: 20px;
   border: none;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
   opacity: 0;
   transform: translateY(10px);
   transition: all 0.3s ease;
   display: block !important;
   /* Override Bootstrap's default */
   visibility: hidden;
   pointer-events: none;
 }

 /* Slide in animation on show */
 .show>.dropdown-menu {
   opacity: 1;

   transform: translateY(0);
   visibility: visible;
   pointer-events: auto;
   padding: 0px;
 }

 /* Dropdown item style */
 .dropdown-menu .dropdown-item {
   text-align: left;
   font-size: 12px;
   color: #333;
   font-weight: 500;
   transition: background 0.2s ease, color 0.2s ease;
 }

 /* Hover effect */
 .dropdown-menu .dropdown-item:hover {
   background-color: rgba(230, 242, 255, 0.6);
   color: #000;
 }

 /* Optional: arrow styling */
 .nav-link i {
   transition: transform 0.3s ease;
 }

 /* Rotate arrow when dropdown is open */
 .nav-item.dropdown.show .nav-link i {
   transform: rotate(180deg);
 }
.btn-primary{
  border: none;
}

 .btn-talk {
   border: 2px solid #53B1FF;
   border-radius: 25px;
   color: #53B1FF;
   font-weight: 600;
   background: transparent;
 }

 .container-step {
   position: relative;
   width: 100%;
   max-width: 800px;
   margin: 20px auto 60px auto;
 }

 .step-wrapper {
   display: flex;
   flex-direction: column;
   gap: 0px;
   position: relative;
 }

 .step {
   width: 350px;
   position: relative;
   z-index: 1;
 }

 .step.left {
   align-self: flex-start;
 }

 .step.right {
   align-self: flex-end;
 }

 .step img {
   width: 390px;
   height: 200px;
   display: block;
   object-fit: cover;
   border-radius: 0;
   box-shadow: none;
 }

 .connector {
   position: absolute;
   top: 44px;
   left: 12px;
   width: 65%;
   height: 100%;
   z-index: 0;
   pointer-events: none;
 }

 .connector path,
 .connector circle {
   stroke: #73baff;
   stroke-width: 2;
   fill: none;
   visibility: visible;
 }

 .connector circle {
   fill: #73baff;
   stroke: white;
   stroke-width: 5;
 }

 /* Mobile Arrows */
 .mobile-arrow {
   display: none;
   justify-content: center;
   align-items: center;
   margin: -10px 0 1px;
 }

 .vertical-connector {
   width: 20px;
   height: 60px;
 }

 .responsive-heading {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
   flex-wrap: wrap;
   text-align: center;
 }



 /* Main section */
 .main-section {
   position: relative;
   text-align: center;
   padding-top: 20px;
   padding-bottom: 50px;
 }

 .main-section-background {
   background-image: url('../pages/images/Lets_Talk.svg');
   background-repeat: no-repeat;
   background-size: 70% auto;
   background-position: center;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   position: relative;
   z-index: 1;
 }

 .pixel-text {
   font-family: 'rubik';
   font-size: 300px;
   line-height: 0.8;
   pointer-events: none;
   user-select: none;
   letter-spacing: 0px;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   /* for non-webkit browsers */
   color: transparent;
 }

 .pixel-text-top {
   background: linear-gradient(to bottom, #DBF1FA 0%, #DBF1FA 80%, #ffffff 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   /* for non-webkit browsers */
 }

 .pixel-text-bottom {
   background: linear-gradient(to bottom, #ffffff 0%, #DBF1FA 30%, #DBF1FA 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   /* for non-webkit browsers */
 }


 .hero-content {
   position: relative;
   z-index: 2;
   text-align: center;
 }

 .hero-content h1 {
   font-size: 60px;
   font-weight: 600;
   color: #326A99;
   background: linear-gradient(180deg, #53B1FF 50%, #326A99 97%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
 }

 .hello {
   position: relative;
   font-family: 'Rubik', sans-serif;
   font-size: 90px;
   text-transform: lowercase;
   background: linear-gradient(90deg, #53B1FF 4%, #FE46AC 95%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
 }

 .hello::before,
 .hello::after {
   content: 'hello.';
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   background: linear-gradient(90deg, #53B1FF 4%, #FE46AC 95%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   opacity: 0.7;
   pointer-events: none;
 }

 .hello::before {
   transform: translate(-2px, 0);
   animation: glitchLeft 0.7s infinite;
 }

 .hello::after {
   transform: translate(2px, 0);
   animation: glitchRight 0.7s infinite;
 }

 @keyframes glitchLeft {
   0% {
     transform: translate(0, 0);
   }

   20% {
     transform: translate(-3px, 0);
   }

   40% {
     transform: translate(3px, 0);
   }

   60% {
     transform: translate(-2px, 0);
   }

   80% {
     transform: translate(2px, 0);
   }

   100% {
     transform: translate(0, 0);
   }
 }

 @keyframes glitchRight {
   0% {
     transform: translate(0, 0);
   }

   20% {
     transform: translate(3px, 0);
   }

   40% {
     transform: translate(-3px, 0);
   }

   60% {
     transform: translate(2px, 0);
   }

   80% {
     transform: translate(-2px, 0);
   }

   100% {
     transform: translate(0, 0);
   }
 }

 .description {
   font-size: 17px;
   color: #000;
 }

 .description span {
   color: #FE46AC;
   font-weight: 500;
 }

 .email-form {
   margin-top: 30px;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 5px;
 }

 .email-form input {
   height: 50px;
   width: 280px;
   padding: 10px;
   font-size: 12px;
   background-color: white;
   border: 1px solid #ccc;
   border-radius: 40px 0 0 40px;
 }



 .info-section {
   color: #fff;
   padding: 5rem 0;
   /* py-5 equivalent */
 }

 .info-title {
   font-size: 32px;
   font-weight: 400;
   margin-bottom: 20px;
 }

 .content-text {
   font-size: 45px;
   color: #53B1FF;
   display: inline-block;
   font-weight: 600;
   /* For animation */
 }

 .content-subtext {
   font-size: 40px;
   background: linear-gradient(180deg, #53B1FF 10%, #326A99 97%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
   /* For animation */
 }

 .info-text {
   font-size: 20px;
   background: linear-gradient(180deg, #326A99 50%, #53B1FF 97%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
 }

 .info-card-content {
   background: linear-gradient(180deg, #FE46AC 4%, #982A67 95%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
 }

 .info-card-p {
   background: linear-gradient(180deg, #FE46AC 4%, #982A67 95%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
 }

 .info-section img {
   filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(1346%) hue-rotate(306deg) brightness(103%) contrast(101%);
   height: 50px;
   /* animation: pulse 1.5s infinite ease-in-out; */
   /* Pulse effect */
 }


 /* Pulse animation for images */
 @keyframes pulse {
   0% {
     transform: scale(1);
   }

   50% {
     transform: scale(1.1);
   }

   100% {
     transform: scale(1);
   }
 }

 /* Bounce-in animation for text */
 .content-text span,
 .content-subtext span {
   opacity: 0;
   transform: translateY(20px);
   display: inline-block;
   /* Allows animation per word */
 }

 .info-title.animate .content-text span,
 .info-title.animate .content-subtext span {
   animation: bounceIn 0.6s ease forwards;
   animation-delay: calc(0.1s * var(--word-order));
 }

 @keyframes bounceIn {
   0% {
     opacity: 0;
     transform: translateY(20px);
   }

   60% {
     opacity: 1;
     transform: translateY(-5px);
   }

   100% {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* ------------------our why--------------------- */
 .our-why-section {
   background-size: cover;
   background-position: center;
   border-radius: 30px;
   margin: 40px;
   padding: 30px;
   color: white;
   min-height: 400px;
   /* Adjust this based on content */
   overflow: hidden;
   position: relative;
 }


 .big-quote {
   font-size: 48px;
   font-weight: 600;
   line-height: 1;
   position: relative;
   min-height: 60px;
   /* Reserve height for the text to avoid shift */
 }


 .cursor {
   display: inline-block;
   color: white;
   font-weight: bold;
   animation: blink 1s infinite;
   margin-left: 2px;
 }

 @keyframes blink {

   0%,
   50%,
   100% {
     opacity: 1;
   }

   25%,
   75% {
     opacity: 0;
   }
 }

 .logo-float {
   animation: float 3s ease-in-out infinite;
 }

 @keyframes float {
   0% {
     transform: translateY(0);
   }

   50% {
     transform: translateY(-10px);
   }

   100% {
     transform: translateY(0);
   }
 }

 .side-paragraph {
   font-size: 18x;
   color: #fff;
   opacity: 0.9;
 }

 /* ---------------------------------- Advantage in health care ---------------------------------- -- */
 .impact-section {
   margin-top: 50px;
   margin-bottom: 40px;
   padding: 20px 55px 20px 55px;
 }

 .impact-section h2 {
   color: #53B1FF;
   font-weight: 700;
   font-size: 32px;
 }

 .impact-section p {
   background: linear-gradient(180deg, #53B1FF 10%, #326A99 97%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-size: 30px;
   font-weight: 200;
 }

 .impact-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 40px;
   margin-top: 40px;
 }

 .impact-item {
   text-align: left;
   opacity: 0;
   transform: translateY(30px);
 }

 .impact-img {
   width: 50px;
   height: 50px;
   margin-bottom: 10px;
 }

 .impact-title {
   font-weight: bold;
   background: linear-gradient(180deg, #FE46AC 4%, #982A67 95%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-size: 23px;
   margin-bottom: 5px;
 }

  .impact-titlee {
   font-weight: bold;
   background: linear-gradient(to bottom, #982A67 22%, #000000 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-size: 23px;
   margin-bottom: 5px;
 }
 .impact-description {
   font-size: 14px;
   color: #555;
   line-height: 1.4;
 }

 .small-text {
   font-size: 12px;
   color: #888;
 }

 /* h2 text animation */
 .impact-section h2 span {
   opacity: 0;
   transform: translateY(30px);
   display: inline-block;
 }

 .impact-section h2 span.visible {
   animation: bounceIn 0.6s ease forwards;
   animation-delay: calc(0.1s * var(--word-order));
 }

 /* Impact item animation */
 .impact-item.visible {
   animation: slideIn 0.8s ease forwards;
   animation-delay: calc(0.1s * var(--item-order));
 }

 @keyframes bounceIn {
   0% {
     opacity: 0;
     transform: translateY(30px);
   }

   60% {
     opacity: 1;
     transform: translateY(-5px);
   }

   100% {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes slideIn {
   0% {
     opacity: 0;
     transform: translateY(30px);
   }

   100% {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* -------------------para----------------------- */
 .healthcare-p {
   background: linear-gradient(180deg, #53B1FF 10%, #326A99 97%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-size: 25px;
 }

 .center-wrapper {
   max-width: 1200px;
   margin: 0 auto;
 }

 .connector {
   position: absolute;
   top: 44px;
   left: 12px;
   width: 65%;
   height: 100%;
   z-index: 0;
   pointer-events: none;
 }

 .connector path {
   stroke: #73baff;
   stroke-width: 3;
   fill: none;
   /* stroke-dasharray: 16 14; */
 }

 #moving-dot {
   transition: transform 0.1s ease-out;
 }

 /* Hide mobile arrows by default on desktop */
 .mobile-arrow {
   display: none;
 }

 /* revolution text */
 .gradient-heading {
   font-size: 3rem;
   font-weight: 600;
   background: linear-gradient(to bottom, #53b1ff 0%, #00539f 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
 }

 .gradient-heading-blue-2 {
   font-size: 1.25rem;
   /* Increase font size as needed */
   font-weight: 300;
   background: linear-gradient(to bottom, #53b1ff 34%, #326a99 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
 }


 /* ------------hero section--------------------------- */
 .hero-section {
   margin-top: 20px;
   padding: 40px;
 }

 .hero-title {
   font-size: 40px;
   font-weight: bold;
   background: linear-gradient(to bottom, #53B1FF 0%, #53B1FF 40%, #326A99 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   line-height: 1.2;
 }

 .hero-description {
   font-size: 18px;
   font-weight: 400;
   color: #336699;
   line-height: 1.6;
 }

 .highlight-link {
   color: #53B1FF;
   text-decoration: none;
 }

 .hero-button {
   margin-top: 20px;
   width: 25%;
   background-color: #53B1FF;
   color: white;
   font-size: 12px;
   font-weight: bold;
   padding: 5px 10px;
   border-radius: 6px;
   border: none;
   cursor: pointer;
 }

 .hero-button:hover {
   background-color: #3b9ce0;
 }

 .hero-row {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   gap: 40px;
 }

 .hero-col {
   flex: 1 1 45%;
   min-width: 300px;
 }

 /* ------footer---------- */
 .compliance-section {
   background: linear-gradient(to bottom, #ffffff 0%, #b8dcff 100%);
   border-radius: 30px;
   margin: 0 auto -25px auto;
   /* Pull up and center */
   position: relative;
   padding: 50px;
   z-index: 2;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   max-width: 1100px;
   width: 90%;
 }


 .data-heading {
   font-size: 40px;
   font-weight: 700;
   background: linear-gradient(to bottom, #4285F4, #326A99);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
 }


 .data-text {
   font-size: 15px;
   font-weight: 400;
   max-width: 500px;
   background: linear-gradient(to bottom, #4285F4, #326A99);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
 }

 .cert-icon {
   height: 100px;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
   .step {
     align-self: center !important;
   }

   .mobile-arrow {
     display: flex;
   }

   .connector {
     display: none;
   }

   .step img {
     width: 100%;
     max-width: 450px;
     /* increased from 350px */
     height: auto;
   }
 }


 @media (max-width: 600px) {
   .responsive-heading {
     margin-top: 50px;
   }

   .glitch-image-wrapper img {
     height: 100px;
     padding-bottom: 28px;
   }
 }

 /* Mobile view: force image to move below the text */
 @media (max-width: 600px) {
   .glitch-image-wrapper {
     width: 100%;
     display: flex;
     justify-content: center;
     margin-top: 10px;
   }
 }

 /* Responsive styles */
 @media (max-width: 768px) {
   .connector {
     display: none;
     /* Hide connector on mobile */
   }

   .mobile-arrow {
     display: block;
     /* Show mobile arrows */
     text-align: center;
   }

   header.navbar-wrapper {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     width: 120%;
     font-size: 13px;
     max-width: 1140px;
     background: rgba(230, 242, 255, 0.6);
     border: 1px solid #ececec;
     border-radius: 50px;
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     z-index: 10;
   }
 }


 /* Media query for tablets and smaller screens */
 @media (max-width: 768px) {
   .main-section-background {
     background-size: 80% auto;
     min-height: 50vh;
   }
 }

 /* Media query for mobile devices */
 @media (max-width: 480px) {
   .main-section-background {
     background-size: 90% auto;
     background-position: center;
     min-height: 50vh;
   }

   .big-quote {
     font-size: 30px;
   }
 }


 @media (max-width: 767px) {
   header.navbar-wrapper {
     width: 105%;
     padding: 5px 12px;
     border-radius: 30px;
     top: 0px;
   }
 }

 @media (max-width: 480px) {
   .intro-text {
     font-size: clamp(60px, 15vw, 80px);
   }

   .pixel-text {
     font-size: clamp(80px, 30vw, 120px);
   }

   .hero-content h1 {
     font-size: clamp(24px, 8vw, 30px);
   }

   .hello {
     font-size: clamp(30px, 10vw, 40px);
   }

   .email-form input,
   .email-form button {
     height: 40px;
     width: 80%;
     border-radius: 40px;
     /* Full radius for stacked inputs */
   }

   .email-form input {
     border-radius: 40px;
     margin-bottom: 10px;
   }

   .email-form button {
     border-radius: 40px;
   }

   .hero-button {
     width: 100%;
   }
 }

 /* Media Queries for Smaller Screens */
 @media (max-width: 767px) {
   .impact-grid {
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     /* Smaller min width for mobile */
   }

   .impact-item {
     min-height: 180px;
     /* Slightly reduced height for mobile */
     padding: 10px;
   }
 }

 @media (max-width: 480px) {
   .impact-grid {
     grid-template-columns: 1fr;
     /* Stack to single column on very small screens */
   }

   .impact-item {
     min-height: auto;
     /* Allow natural height */
     padding: 10px;
     text-align: center;
     /* Center text for better appearance */
   }

   .impact-img {
     margin: 0 auto 10px;
     /* Center images */
   }
 }

 @media (max-width: 767.98px) {
   .footer-logo {
     max-width: 350px !important;
     margin-top: 0 !important;
     margin-left: 0 !important;
   }
 }

 .sticky-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   background-color: white;
   /* or your preferred color */
   z-index: 1030;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   /* optional shadow */
 }
 .gradient-heading-blue-1 {
  font-size: 1.25rem;
  /* Increase font size as needed */
  font-weight: 300;
  background: linear-gradient(to top, #53b1ff 34%, #326a99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}