html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #202020;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  overscroll-behavior: contain;
  /* padding-top: 80px; */
}

/* Scroll Snap Sections */
.hero,
.mission-section,
.vision-mission-section,
.ai-solution-section,
.app-features-section,
.solution-alert-section,
.why-kigo-section,
.kigo-value-section,
.commitment-section,
.contact-footer-section {
  position: relative;
  scroll-snap-align: none;
}

/* Ensure sections have appropriate heights for snap scrolling */


.mission-section,
.vision-mission-section,
.ai-solution-section,
.app-features-section,
.why-kigo-section,
.kigo-value-section,
.commitment-section,
.contact-footer-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}


@media (max-width: 1440px) { 
  .mission-section,
  .vision-mission-section,
  .ai-solution-section,
  .app-features-section,
  .why-kigo-section,
  .kigo-value-section,
  .commitment-section,
  .contact-footer-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
  }
}

@media (max-width: 768px) { 
  .mission-section,
  .vision-mission-section,
  .ai-solution-section,
  .app-features-section,
  .why-kigo-section,
  .kigo-value-section,
  .commitment-section,
  .contact-footer-section {
    max-width: unset;
    margin: 0 auto;
    padding: 0 24px;
  }
}

.section-wrapper {
  position: relative;
}

.section-wrapper .map-bg-image {
  position: absolute; 
  top: 170px; 
  left: 120px; 
  width: calc(100% - 120px); 
  height: 40%; 
  object-fit: contain; 
  z-index: 3; 
  opacity: 1;
  pointer-events: none;

}

/* Kigo Value Section - Custom spacing */
.kigo-value-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.kigo-value-section .kigo-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px 40px;
  /* width: 1280px; */
  /* margin-top: 60px; */
}

@media (max-width: 1280px) {
  .kigo-value-section .kigo-value-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}

/* ≤ 768px: 1 cột */
@media (max-width: 768px) {
  .kigo-value-section .kigo-value-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.kigo-value-section h2 {
  max-width: 700px;
}

/* Smooth scrolling for navigation links */
[id] {
  scroll-margin-top: 80px;
}

/* Mobile responsive adjustments for snap scrolling */
@media (max-width: 768px) {
  html {
    scroll-snap-type: y proximity;
  }
  
  .mission-section,
  .ai-solution-section,
  .app-features-section,
  .contact-footer-section {
    min-height: auto;
    padding-top: 0px !important;
    padding-bottom: 80px;
  }
  
  /* Commitment Section - Mobile spacing */
  
  /* Kigo Value Section - Mobile spacing */
  .kigo-value-section {
    min-height: auto;
    padding-bottom: 0px;
  }
  
  /* Vision Mission Section - Keep original responsive padding */
  .vision-mission-section {
    min-height: auto;
    /* Use original responsive padding from existing CSS */
  }
  
  [id] {
    scroll-margin-top: 60px;
  }
}

/* Background Elements */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(64, 169, 255, 0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(64, 169, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}


/* Ensure content is above background elements */
.about .container,
.services .container,
.why-choose-us .container,
.ai-answers .container,
.testimonials .container,
.how-it-works .container,
.integrations .container,
.blog .container,
.contact-section .container {
  position: relative;
  z-index: 2;
}

/* Fix for any potential white background issues */
.about *,
.services *,
.why-choose-us *,
.ai-answers *,
.testimonials *,
.how-it-works *,
.integrations *,
.blog *,
.contact-section * {
  color: inherit;
  background: transparent;
}



/* Mobile Navigation Styles */


.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.k-im{
  position: relative;
  border-radius: 0px;
  box-shadow: none;
  margin-right: 0xp;
}

/* Fix horizontal scrolling for all sections */
.about, .why-choose-us, .ai-answers, .testimonials, .how-it-works,
.integrations, .blog, .services, .contact-section {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  padding: 0px;
}

.about .container,
.why-choose-us .container,
.ai-answers .container,
.testimonials .container,
.how-it-works .container,
.integrations .container,
.blog .container,
.services .container,
.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

/* Ensure content doesn't cause horizontal scroll */
.about .row,
.why-choose-us .row,
.ai-answers .row,
.testimonials .row,
.how-it-works .row,
.integrations .row,
.blog .row,
.services .row,
.contact-section .row {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Fix for background elements */
.bg-grid,
.bg-dots,
.bg-shape,
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

/* Ensure images don't cause overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Fix for cards and other elements that might cause overflow */
.service-card,
.testimonial-card,
.blog-card,
.feature-card,
.integration-card {
  width: 100%;
  margin: 0;
  padding: 15px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .about, .why-choose-us, .ai-answers, .testimonials, .how-it-works,
  .integrations, .blog, .services, .contact-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .about, .why-choose-us, .ai-answers, .testimonials, .how-it-works,
  .integrations, .blog, .services, .contact-section {
    padding: 30px 0;
  }
}

@media (max-width: 576px) {
  .about, .why-choose-us, .ai-answers, .testimonials, .how-it-works,
  .integrations, .blog, .services, .contact-section {
    padding: 20px 0;
  }
}







.brand-logo img{
  height: 32px;
}

.logo{
  height: 24px;
}

/* .hero-content [style*="background:rgba(64, 169, 255, 0.1)"] {
  background: rgba(64, 169, 255, 0.15) !important;
  color: #40A9FF !important;
  font-weight: 700 !important;
  padding: 40px !important;
  border-radius: 12px !important;
  font-size: 1.1rem !important;
  display: inline-block !important;
  box-shadow: 0 4px 15px rgba(64, 169, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(64, 169, 255, 0.2);
} */



.hero-content {
  z-index: 2;
  position: relative;
}

/* Add style for the video in the hero section */
.hero .col-lg-6 video {
  width: 100%; /* Make video take the full width of its container */
  height: auto; /* Adjust height automatically to maintain aspect ratio */
  display: block; /* Remove potential extra space below the video */
  border-radius: 24px; /* Match the border-radius of the previous image card if desired */
  box-shadow: 0 4px 32px 0 rgba(162,89,255,0.12); /* Match the shadow of the previous image card */
  object-fit: cover; /* Crop the video to cover the area while maintaining aspect ratio */
}

.hero-image-card {
  background: #090F1E;
  border-radius: 32px;
  box-shadow: 0 8px 40px 0 rgba(162,89,255,0.18);
  padding: 28px 28px 20px 28px;
  position: relative;
  display: inline-block;
  margin-left: 16px;
  margin-top: 0;
  max-width: 1040px;
}

.hero-image-card img {
  width: 580px;
  height: 620px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(162,89,255,0.12);
  display: block;
  margin: 0 auto;
}

.efficiency-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #090F1E;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 20px;
  padding: 10px 22px;
  box-shadow: 0 4px 15px rgba(255, 46, 99, 0.25);
  opacity: 0.95;
  z-index: 2;
  animation: pulse-efficiency 2s infinite ease-in-out;
  transform-origin: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@keyframes pulse-efficiency {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 46, 99, 0.25);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 46, 99, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 46, 99, 0.25);
  }
}

.hero-card-info {
  margin-top: 18px;
  color: #fff;
  text-align: left;
}

.hero-card-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-card-info p {
  font-size: 0.98rem;
  color: #d1cbe7;
  margin-bottom: 0;
}

.hero-goal-card {
  position: absolute;
  left: -60px;
  bottom: 18px;
  background: #18122B;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(162,89,255,0.18);
  padding: 18px 22px 12px 22px;
  min-width: 150px;
  z-index: 3;
  color: #fff;
  text-align: left;
}

.hero-goal-card h5 {
  font-size: 1rem;
  color: #73A5FF;
  margin-bottom: 4px;
  font-weight: 600;
}

.hero-goal-card .goal-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.hero-goal-card .goal-chart {
  width: 100%;
  height: 40px;
  margin-top: 8px;
  background: none;
  border-radius: 8px;
  position: relative;
}

.hero-goal-card .goal-chart svg {
  width: 100%;
  height: 40px;
  display: block;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    padding: 60px 0 40px; /* Adjusted padding */
    min-height: auto; /* Allow height to be determined by content */
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;


  }

  /* .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 40px;
  } */

  /* .hero .btn {
    margin: 0 10px 10px 0;
  } */

  .hero-image-card {
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 80px 0 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;

  }

  /* .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 40px;
  } */

  .hero-content [style*="background:rgba(64, 169, 255, 0.1)"] {
    padding: 40px !important;
  }

  .hero-content > div {
    padding: 40px;
  }

  .hero-content .btn {
    margin: 40px;
  }

  .hero .btn {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 30px 0 20px; /* Adjusted padding */
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

}

/* Other Sections */
.about, .why-choose-us, .ai-answers, .how-it-works,
.integrations, .services {
  padding: 0px 0;
  overflow-x: hidden;
}

.about .container,
.why-choose-us .container,
.ai-answers .container,
.how-it-works .container,
.integrations .container,
.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.about .row,
.why-choose-us .row,
.ai-answers .row,
.how-it-works .row,
.integrations .row,
.services .row {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}

.about .col-lg-6,
.why-choose-us .col-lg-6,
.ai-answers .col-lg-6,
.testimonials .col-lg-6,
.how-it-works .col-lg-6,
.integrations .col-lg-6,
.blog .col-lg-6,
.services .col-lg-6 {
  padding: 0 15px;
}

@media (max-width: 991px) {
  .about .container,
  .why-choose-us .container,
  .ai-answers .container,
  .testimonials .container,
  .how-it-works .container,
  .integrations .container,
  .blog .container,
  .services .container {
    padding: 0 20px;
  }

  .about .row,
  .ai-answers .row {
    margin: 20px;
  }

  .about .col-lg-6,
  .why-choose-us .col-lg-6,
  .ai-answers .col-lg-6,
  .testimonials .col-lg-6,
  .how-it-works .col-lg-6,
  .integrations .col-lg-6,
  .blog .col-lg-6,
  .services .col-lg-6 {
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .about,
  .why-choose-us,
  .ai-answers,
  .testimonials,
  .how-it-works,
  .integrations,
  .blog,
  .services {
    padding: 60px 0;
  }

  .about .container,
  .why-choose-us .container,
  .ai-answers .container,
  .testimonials .container,
  .how-it-works .container,
  .integrations .container,
  .blog .container,
  .services .container {
    padding: 0 15px;
  }
}

@media (max-width: 600px) {
  .about,
  .why-choose-us,
  .ai-answers,
  .testimonials,
  .how-it-works,
  .integrations,
  .blog,
  .services {
    padding: 40px 0;
  }

  .about .container,
  .why-choose-us .container,
  .ai-answers .container,
  .testimonials .container,
  .how-it-works .container,
  .integrations .container,
  .blog .container,
  .services .container {
    padding: 0 10px;
  }
}

.contact-section {
  position: relative;
  background:  #ffffff;
  color: #202020;
  overflow: hidden;
  padding: 100px 0;
}

.contact-section .container {
  max-width: 1200px;
  padding: 40px 30px;
  margin: 0 auto;
}

.contact-section .row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 28px;
}

.contact-section .col-lg-6 {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
}

.contact-info {
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-item i {
  font-size: 1.3rem;
  color: #73A5FF;
  margin-top: 4px;
}

.contact-form-container {
  /* background: #090F1E; */
  /* border-radius: 20px; */
  /* padding: 32px 40px; */
  /* box-shadow: 0 2px 12px rgba(162, 89, 255, 0.07); */
  /* flex: 1; */
  /* overflow: visible !important; */
}

.contact-form .row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.contact-form .col-md-6 {
  width: 100%;
  max-width: calc(50% - 12px);
  flex: 1 1 0;
  padding: 0;
  margin: 0;
}

.contact-form .form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #73A5FF;
  margin-bottom: 10px;
  text-align: center;
}

.contact-desc {
  color: #B8C1EC;
  font-size: 1.1rem;
  margin-bottom: 32px;
  text-align: center;
}

.contact-form label {
  display: inline-block;
  color: #E6E9F0;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 48px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(162, 89, 255, 0.2);
  background: #0F1729;
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
  margin: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #4A5578;
  font-size: 16px;
  line-height: 20px;
}

.contact-form textarea {
  min-height: 120px;
  height: auto;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #73A5FF;
  box-shadow: 0 0 0 2px rgba(162, 89, 255, 0.2);
}

.contact-form select {
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  border: 1px solid rgba(162, 89, 255, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  z-index: 10;
  position: relative;
  appearance: auto;
}

.contact-form select option {
  background-color: #2d224d;
  color: #fff;
  padding: 12px;
}

.contact-form select option:hover,
.contact-form select option:focus,
.contact-form select option:active,
.contact-form select option:checked {
  background: #3d3160 !important;
  color: #fff !important;
}
.btn.contact-btn {
      background: rgb(16, 14, 172);
    color: rgb(255, 255, 255);
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    padding: 13px 24px;
    border: none;
    width: 100%;
    grid-column: 1 / span 2;
    margin-top: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
}

.btn.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(210, 255, 58, 0.2);
}

@media (max-width: 991px) {
  .contact-section .container {
    max-width: 100%;
    padding: 20px 15px;
  }
  .contact-section .row {
    flex-direction: column; /* Changed from row to column */
    gap: 16px;
  }
  .contact-section .col-lg-6 {
    max-width: 100%;
  }
  .contact-form .row {
    flex-direction: column; /* Added to stack form elements */
    gap: 16px 0;
  }
  .contact-form .col-md-6 {
    width: 100%; /* Added to make form columns full width */
    max-width: 100%; /* Added to make form columns full width */
    padding: 0;
  }
  .contact-form-container {
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  .contact-form .row > div {
    margin-bottom: 0px;
  }
  .contact-form .row > div:last-child {
    margin-bottom: 0;
  }

  .contact-info .contact-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .contact-info .contact-item i {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .contact-section .container {
    padding: 12px 2px 8px 15px; /* Reverted horizontal padding */
    border-radius: 16px;
  }
  .contact-form-container {
    padding:0px; /* Increased horizontal padding */
    border-radius: 10px;
  }
  .contact-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .contact-form .row > div {
    margin-bottom: 0px;
  }
  .contact-form .row > div:last-child {
    margin-bottom: 0;
  }

  .contact-info .contact-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .contact-info .contact-item i {
    margin-bottom: 10px;
  }
}

/* Section backgrounds for harmony */
.about.position-relative {
  background: #090F1E; /* Changed background color */
}
.services.position-relative {
  background: #090F1E; /* Changed background color */
}
.testimonials.position-relative {
  background: #090F1E; /* Changed background color */
}
.contact-section.position-relative {
  background: #090F1E; /* Changed background color */
}
/* Optional: soften transitions between sections */
.about.position-relative,
.services.position-relative,
.testimonials.position-relative,
.contact-section.position-relative {
  transition: background 0.6s cubic-bezier(0.4,0,0.2,1);
}

.cta form .row {
  display: flex;
  flex-direction: row;
  gap: 0 18px;
}
.cta form .col-md-6 {
  width: 50%;
}
@media (max-width: 768px) {
  .cta form .row {
    flex-direction: column;
  }
  .cta form .col-md-6 {
    width: 100%;
  }
}

.newsletter-form .btn {
  background: linear-gradient(90deg, #73A5FF 0%, #6a36fc 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(162, 89, 255, 0.15);
  transition: all 0.3s ease;
  margin-left: 10px;
}

.newsletter-form .btn:hover {
  background: linear-gradient(90deg, #b573ff 0%, #7c4dfc 100%);
  box-shadow: 0 4px 12px rgba(162, 89, 255, 0.25);
  transform: translateY(-1px);
}

.newsletter-form .input-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid #73A5FF;
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.85);
  opacity: 1;
}

/* Integrations Section Styles */
.integrations {
  position: relative;
  background: #090F1E; /* Changed background color */
  color: #fff;
  overflow: hidden;
  padding: 100px 0;
}

.integrations .section-header {
  position: relative;
  z-index: 2;
}

.integrations .section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(162, 89, 255, 0.1);
  border-radius: 20px;
  color: #73A5FF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.integrations .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.integrations .highlight-text {
  background: linear-gradient(135deg, #73A5FF 0%, #40a9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.integrations .section-description {
  font-size: 18px;
  color: #B8C1EC;
  max-width: 700px;
  margin: 0 auto;
}

.integration-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(162, 89, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(162, 89, 255, 0.2);
  box-shadow: 0 10px 30px rgba(162, 89, 255, 0.1);
}

.integration-card .integration-icon {
  width: 60px;
  height: 60px;
  background: rgba(162, 89, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.integration-card .integration-icon i {
  font-size: 24px;
  color: #73A5FF;
}

.integration-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.integration-card p {
  font-size: 15px;
  color: #B8C1EC;
  margin: 0;
  line-height: 1.6;
}

.integration-benefits {
  position: relative;
  z-index: 2;
}

.integration-benefits .benefits-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(162, 89, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(162, 89, 255, 0.2);
}

.benefit-item i {
  font-size: 24px;
  color: #73A5FF;
  margin-bottom: 15px;
}

.benefit-item p {
  font-size: 15px;
  color: #B8C1EC;
  margin: 0;
}

.integration-cta {
  position: relative;
  z-index: 2;
}

.integration-cta .btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.integration-cta .btn-primary {
  background: linear-gradient(135deg, #73A5FF 0%, #40a9ff 100%);
  border: none;
}

.integration-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(162, 89, 255, 0.2);
}

.integration-cta .btn-outline-primary {
  border: 2px solid #73A5FF;
  color: #73A5FF;
}

.integration-cta .btn-outline-primary:hover {
  background: rgba(162, 89, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .integrations {
    padding: 80px 0;
  }

  .integrations .section-title {
    font-size: 32px;
  }

  .integrations .section-description {
    font-size: 16px;
  }

  .integration-card {
    padding: 20px;
  }

  .integration-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .integrations {
    padding: 60px 0;
  }

  .integrations .section-title {
    font-size: 28px;
  }

  .integrations .section-description {
    font-size: 16px;
  }

  .integration-benefits .benefits-title {
    font-size: 24px;
  }

  .integration-cta .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

/* About Section Enhanced Styles */
.about {
  position: relative;
  background: #ffffff; /* Changed background color */
  color: #202020;
  overflow: hidden;
  padding-top: 100px;
}

.about-content {
  padding-right: 2rem;
}

.about-content .section-title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-text-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 30px !important;
}

.about-text-with-icon .icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text-with-icon .text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-text-with-icon p {
  color: #6B7280;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .about-text-with-icon {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .about-text-with-icon .icon-wrapper {
    margin: 0;
  }

  .about-text-with-icon .text-content {
    width: 100%;
    text-align: left;
    padding-left: 0;
    padding-right: 20px;
    gap: 0px;
  }

  .about-text-with-icon p {
    text-align: left;
    margin: 20px 0;
  }

  .about-text-with-icon p:first-child {
    margin-top: 0;
  }

  .about-text-with-icon p:last-child {
    margin-bottom: 0;
  }
}

.about-text-with-icon1 {
  padding-left: calc(60px + 1.5rem);
}

@media (max-width: 768px) {
  .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .about-text-with-icon1 {
    padding-left: calc(60px + 1.5rem);
  }
}

.about-content .about-icon {
  flex-shrink: 0; /* Prevent icon from shrinking */
  width: 40px; /* Adjusted size based on image */
  height: 40px; /* Adjusted size based on image */
  background-color: #a2ff40; /* Green background color from image */
  position: relative; /* Use relative positioning for pseudo-elements */
  transform: rotate(45deg); /* Rotate to make it a diamond/plus shape */
  /* Add pseudo-elements for the plus shape */
}

.about-content .about-icon::before,
.about-content .about-icon::after {
  content: '';
  position: absolute;
  background-color: #090F1E; /* Dark background color to create the plus shape */
}

.about-content .about-icon::before {
  width: 60%; /* Width of the horizontal bar */
  height: 20%; /* Height of the horizontal bar */
  top: 40%; /* Position vertically */
  left: 20%; /* Position horizontally */
}

.about-content .about-icon::after {
  width: 20%; /* Width of the vertical bar */
  height: 60%; /* Height of the vertical bar */
  top: 20%; /* Position vertically */
  left: 40%; /* Position horizontally */
}

.about-text-with-icon p {
  margin-bottom: 0; /* Remove bottom margin for the paragraph within this flex container */
}

.about-content p {
  font-size: 1.1rem;
  color: #E6E9F0; /* Light grey color for paragraphs */
  margin-bottom: 16px; /* Margin between paragraphs */
  line-height: 1.6;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(162, 89, 255, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.tag-icon {
  color: #73A5FF;
  margin-right: 8px;
}

.section-tag span {
  color: #73A5FF;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 24px;
  line-height: 1.2;
}

.highlight-text {
  color: #73A5FF;
  background: #73A5FF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section-description {
  font-size: 1.1rem;
  color: #6B7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.achievement-cards {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.achievement-card {
  background: rgba(162, 89, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  background: rgba(162, 89, 255, 0.15);
}

.achievement-icon {
  width: 48px;
  height: 48px;
  background: rgba(162, 89, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement-icon i {
  font-size: 1.5rem;
  color: #73A5FF;
}

.achievement-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.achievement-content p {
  font-size: 0.9rem;
  color: #B8C1EC;
  margin: 4px 0 0;
}

.feature-list {
  margin-bottom: 32px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-item i {
  color: #73A5FF;
  font-size: 1.2rem;
}

.feature-item span {
  color: #fff;
  font-size: 1.1rem;
}

.about-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-primary {
  background: #042474;
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(162, 89, 255, 0.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid #73A5FF;
  color: #73A5FF;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #73A5FF;
  color: #fff;
}

.trust-badges {
  display: flex;
  gap: 24px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.badge img {
  height: 40px;
  width: auto;
}

.badge span {
  color: #B8C1EC;
  font-size: 0.9rem;
}
#about-im{
  border-radius: none;
  box-shadow: none;
}
.about-image-wrapper {
  position: relative;
}


/* .image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
} */


.main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* .image-card:hover .main-image {
  transform: scale(1.05);
} */

.experience-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(162, 89, 255, 0.9);
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.stats-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(24, 18, 43, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
}

.stat-item h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.stat-item p {
  font-size: 0.9rem;
  color: #B8C1EC;
  margin: 4px 0 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .about-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .achievement-cards {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .stats-card {
    flex-direction: column;
    gap: 16px;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  position: relative;
  background: #ffffff; /* Changed background color */
  color: #202020;
  overflow: hidden;
  padding: 100px 0;
}

.why-choose-us .section-tag {
  margin-bottom: 1.5rem;
}

.why-choose-us .section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #B8C1EC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.why-choose-us .section-description {
  color: #B8C1EC;
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.why-choose-us .feature-card {
  background: rgba(162, 89, 255, 0.05);
  border: 1px solid rgba(162, 89, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-choose-us .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  background: rgba(162, 89, 255, 0.1);
  color: #73A5FF;
}

.why-choose-us .feature-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #B8C1EC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-choose-us .feature-card p {
  color: #B8C1EC;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.why-choose-us .feature-stats {
  background: rgba(162, 89, 255, 0.1);
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
}

.why-choose-us .feature-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose-us .feature-stats .number {
  font-size: 2rem;
  font-weight: 700;
  color: #73A5FF;
  margin-bottom: 0.5rem;
}

.why-choose-us .feature-stats .label {
  color: #B8C1EC;
  font-size: 0.9rem;
}

.why-choose-us .trust-metrics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.why-choose-us .metric-item {
  background: rgba(162, 89, 255, 0.05);
  border: 1px solid rgba(162, 89, 255, 0.15);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.why-choose-us .metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(162, 89, 255, 0.15);
  background: rgba(162, 89, 255, 0.1);
}

.why-choose-us .metric-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(162, 89, 255, 0.1);
  color: #73A5FF;
}

.why-choose-us .metric-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #73A5FF;
  margin: 0;
}

.why-choose-us .metric-content p {
  color: #B8C1EC;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .why-choose-us {
    padding: 80px 0;
  }

  .why-choose-us .section-title {
    font-size: 2rem;
  }

  .why-choose-us .trust-metrics {
    gap: 1rem;
  }

  .why-choose-us .metric-item {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-us .section-title {
    font-size: 1.8rem;
  }

  .why-choose-us .feature-card {
    margin-bottom: 2rem;
  }

  .why-choose-us .trust-metrics {
    flex-direction: column;
    align-items: center;
  }

  .why-choose-us .metric-item {
    width: 100%;
    max-width: 300px;
  }
}

/* Animation Classes */
.why-choose-us .feature-card {
  animation: fadeInUp 0.6s ease-out;
}

.why-choose-us .metric-item {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}



/* Testimonials Section */
.testimonials {
  position: relative;
  background: #090F1E; /* Changed background color */
  color: #fff;
  overflow: hidden;
  padding: 100px 0;
}

.testimonials .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.testimonials .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.1) 0%, rgba(13, 12, 34, 0.95) 100%);
}

.testimonials .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(162, 89, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.testimonials .section-header {
  position: relative;
  z-index: 2;
}

.testimonials .section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(162, 89, 255, 0.1);
  border-radius: 20px;
  color: #73A5FF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.testimonials .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #B8C1EC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials .section-description {
  font-size: 18px;
  color: #B8C1EC;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(162, 89, 255, 0.1);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(162, 89, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  position: relative;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.rating-stars i {
  color: #FFD700;
  font-size: 18px;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
  transition: all 0.3s ease;
}

.rating-stars i:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

.rating-stars i.fa-star-half-alt {
  color: #FFD700;
  position: relative;
}

.rating-stars i.fa-star-half-alt::after {
  content: '\f089';
  position: absolute;
  left: 0;
  color: rgba(255, 215, 0, 0.3);
}

.testimonial-card:hover .rating-stars i {
  animation: starPulse 1s infinite;
}

@keyframes starPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
  }
}

.quote-icon {
  font-size: 24px;
  color: #73A5FF;
  margin-bottom: 20px;
}

.quote {
  font-size: 16px;
  line-height: 1.6;
  color: #B8C1EC;
  margin-bottom: 20px;
}

.achievement-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(162, 89, 255, 0.1);
  border-radius: 20px;
  margin-top: 20px;
}

.achievement-badge i {
  color: #73A5FF;
  margin-right: 8px;
}

.achievement-badge span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.testimonial-author {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info .name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.author-info .role,
.author-info .hospital {
  font-size: 16px;
  color: #B8C1EC;
  margin-bottom: 5px;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(162, 89, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.stat-icon i {
  font-size: 24px;
  color: #73A5FF;
}

.stat-content .stat-count {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.stat-content .stat-text {
  font-size: 16px;
  color: #B8C1EC;
}

.testimonials-cta {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.testimonials-cta .btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonials .section-title {
    font-size: 36px;
  }

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

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

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials .section-title {
    font-size: 28px;
  }

  .testimonials .section-description {
    font-size: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
  }

  .testimonials-cta .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

/* How It Works Section */
.how-it-works {
  position: relative;
  background: #090F1E; /* Changed background color */
  color: #fff;
  overflow: hidden;
  padding: 100px 0;
}

.how-it-works .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.how-it-works .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.1) 0%, rgba(13, 12, 34, 0.95) 100%);
}

.how-it-works .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(162, 89, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.how-it-works .section-header {
  position: relative;
  z-index: 2;
}

.how-it-works .section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(162, 89, 255, 0.1);
  border-radius: 20px;
  color: #73A5FF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.how-it-works .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #B8C1EC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how-it-works .section-description {
  font-size: 18px;
  color: #B8C1EC;
  max-width: 700px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(162, 89, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(162, 89, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  font-weight: 700;
  color: rgba(162, 89, 255, 0.2);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(162, 89, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 24px;
  color: #73A5FF;
}

.step-card:hover .step-icon {
  transform: rotate(5deg) scale(1.1);
  background: rgba(162, 89, 255, 0.2);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.step-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #B8C1EC;
  margin-bottom: 20px;
}

.step-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 20px;
}

.step-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.step-card:hover .step-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 12, 34, 0.9), transparent);
  padding: 20px;
}

.overlay-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.how-it-works-cta {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.how-it-works-cta .btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .how-it-works {
    padding: 80px 0;
  }

  .how-it-works .section-title {
    font-size: 36px;
  }

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

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 0;
  }

  .how-it-works .section-title {
    font-size: 28px;
  }

  .how-it-works .section-description {
    font-size: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-cta .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

/* Service Section Styles */
.service-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services .row {
  margin-bottom: 2rem;
}

.services .col-md-4 {
}

@media (max-width: 991px) {
  .service-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 1.25rem;
  }
  .services .col-md-4 {
    margin-bottom: 0; /* Remove margin bottom on mobile */
  }
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(162, 89, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 24px;
  color: #73A5FF;
}

.service-card:hover .service-icon {
  transform: rotate(5deg) scale(1.1);
  background: rgba(162, 89, 255, 0.2);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #202020;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 20px;
}

.service-card .read-more {
  color: #73A5FF;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-card .read-more:hover {
  color: #fff;
  transform: translateX(5px);
}

.service-card .read-more i {
  transition: transform 0.3s ease;
}

.service-card .read-more:hover i {
  transform: translateX(5px);
}

.step {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(162, 89, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.more-service .card {
  background: rgba(162, 89, 255, 0.05);
  border: 1px solid rgba(162, 89, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.more-service .card:hover {
  background: rgba(162, 89, 255, 0.1);
  transform: translateY(-10px);
}

.more-service .service-icon {
  margin: 0 auto 20px;
}

.more-service h3 {
  color: #fff;
  margin-bottom: 10px;
}

.more-service p {
  color: #B8C1EC;
  margin-bottom: 20px;
}

/* Service Section Responsive */
@media (max-width: 991px) {
  .service-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .service-card {
    margin: 20px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon i {
    font-size: 20px;
  }
  
  .service-card h3 {
    font-size: 18px;
  }
  
  .service-card p {
    font-size: 16px;
  }
}

/* Blog Section Styles */
.blog {
  position: relative;
  background: #090F1E; /* Changed background color */
  color: #fff;
  overflow: hidden;
  padding: 100px 0;
}

.blog .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blog .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.1) 0%, rgba(13, 12, 34, 0.95) 100%);
}

.blog .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(162, 89, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.blog .section-header {
  position: relative;
  z-index: 2;
}

.blog .section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(162, 89, 255, 0.1);
  border-radius: 20px;
  color: #73A5FF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.blog .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #B8C1EC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog .section-description {
  font-size: 18px;
  color: #B8C1EC;
  max-width: 700px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(162, 89, 255, 0.1);
  backdrop-filter: blur(10px);
}

.blog-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(162, 89, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(162, 89, 255, 0.1);
  border-radius: 20px;
  margin-bottom: 15px;
}

.blog-date i {
  color: #73A5FF;
  font-size: 16px;
}

.blog-date span {
  color: #B8C1EC;
  font-size: 16px;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #B8C1EC;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #B8C1EC;
  font-size: 16px;
}

.blog-meta-item i {
  color: #73A5FF;
  font-size: 16px;
}

.blog-cta {
  margin-top: 50px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.blog-cta .btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.blog-cta .btn-primary {
  background: linear-gradient(135deg, #73A5FF 0%, #40a9ff 100%);
  border: none;
}

.blog-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(162, 89, 255, 0.2);
}

/* Blog Section Responsive */
@media (max-width: 991px) {
  .blog {
    padding: 80px 0;
  }

  .blog .section-title {
    font-size: 36px;
  }

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

@media (max-width: 768px) {
  .blog {
    padding: 60px 0;
  }

  .blog .section-title {
    font-size: 28px;
  }

  .blog .section-description {
    font-size: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  z-index: 9999;
  animation: slideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
  padding: 16px 32px 16px 16px;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8;
  flex-wrap: wrap;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  background:  #FFF;
  box-shadow: 0px 4px 6px -2px  rgba(0, 0, 0, 0.05), 0px 12px 16px -4px  rgba(0, 0, 0, 0.10);
}

.notification.success {
  background: linear-gradient(135deg, #73A5FF 0%, #40a9ff 100%);
}

.notification.error {
  background: linear-gradient(135deg, #ff4d4d 0%, #ff8080 100%);
}

.notification-message {
  color:  #202020;
  font-size:  18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing:  0px;
  margin: 0;
}
.notification-description {
  color:  #202020;
  font-size:  14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing:  0px;
  margin: 0;
}

.notification-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #202020;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Form Styles Enhancement */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #73A5FF;
  box-shadow: 0 0 0 2px rgba(162, 89, 255, 0.2);
}

.contact-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-btn.sending {
  background: linear-gradient(135deg, #808080 0%, #a0a0a0 100%);
}

/* Service Section Styles */
.services {
  position: relative;
  background: linear-gradient(135deg, #18122B 0%, #232946 100%);
  color: #fff;
  overflow: hidden;
  padding: 100px 0;
}

@media (max-width: 768px) {
  /* ... existing contact section media query ... */

  /* Adjust padding on sections for smaller screens */
  .about,
  .services,
  .why-choose-us,
  .ai-answers,
  .testimonials,
  .how-it-works,
  .integrations,
  .blog {
    padding: 60px 15px; /* Adjusted padding to avoid overflow */
  }

  /* Ensure image elements are fluid */
  .about-image-wrapper img,
  .step-image img,
  .blog-image img {
    max-width: 100%;
    height: auto;
  }

  /* Adjust flex/grid items to prevent overflow */
  .achievement-card,
  .feature-card,
  .metric-item,
  .testimonial-card,
  .step-card,
  .integration-card,
  .benefit-item,
  .blog-card {
    width: 100%; /* Ensure items take full width */
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Adjust gaps and padding within containers */
  .achievement-cards,
  .trust-badges,
  .why-choose-us .trust-metrics,
  .feature-list,
  .about-cta,
  .ai-answers-cta,
  .testimonials-grid,
  .testimonials-stats,
  .steps-grid,
  .integration-features .row,
  .integration-benefits .row,
  .blog-grid {
    gap: 20px; /* Adjust gap between items */
  }

  .section-header,
  .about-content,
  .ai-answers-image-wrapper {
    padding: 0; /* Remove potential problematic padding */
  }

  .stats-card,
  .ai-answers .ai-stats-card {
    padding: 15px; /* Adjust padding on stat cards */
  }

   .hero-image-card {
    max-width: 100%; /* Ensure hero image card fits */
  }

   .hero-goal-card {
    left: 15px; /* Adjust position if needed */
    right: 15px; /* Adjust position if needed */
    min-width: unset; /* Remove min-width constraint */
    width: auto; /* Allow width to adjust */
  }

  /* Ensure all elements within these sections respect padding and borders in their width calculation */
  .about *,
  .services *,
  .why-choose-us *,
  .ai-answers *,
  .testimonials *,
  .how-it-works *,
  .integrations *,
  .blog * {
    box-sizing: border-box;
  }

}

/* Section Title Styles */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #E6E9F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: titleGlow 3s ease-in-out infinite;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #73A5FF 0%, #6a36fc 100%);
  border-radius: 2px;
  animation: lineWidth 3s ease-in-out infinite;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(162, 89, 255, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 1rem;
  border: 1px solid rgba(162, 89, 255, 0.2);
  animation: tagPulse 2s ease-in-out infinite;
}

.section-tag i {
  color: #73A5FF;
  margin-right: 8px;
  font-size: 1.1rem;
  animation: iconSpin 3s linear infinite;
}

.section-tag span {
  color: #73A5FF;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-text {
  background: linear-gradient(90deg, #73A5FF 0%, #6a36fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  animation: highlightPulse 3s ease-in-out infinite;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #73A5FF 0%, #6a36fc 100%);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 3s ease-in-out infinite;
}

/* Title Animations */
@keyframes titleGlow {
  0%, 100% {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  50% {
    text-shadow: 0 2px 8px rgba(162, 89, 255, 0.2);
  }
}

@keyframes lineWidth {
  0%, 100% {
    width: 60px;
  }
  50% {
    width: 100px;
  }
}

@keyframes tagPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(162, 89, 255, 0);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(162, 89, 255, 0.1);
  }
}

@keyframes iconSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes highlightPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes lineGrow {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* Section-specific title styles */
.about .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #E6E9F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #E6E9F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-choose-us .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #E6E9F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-answers .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #E6E9F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #E6E9F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how-it-works .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #E6E9F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.integrations .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #E6E9F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #E6E9F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-title::after {
    width: 40px;
  }
  
  @keyframes lineWidth {
    0%, 100% {
      width: 40px;
    }
    50% {
      width: 60px;
    }
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-tag {
    padding: 6px 12px;
  }
  
  .section-tag span {
    font-size: 0.8rem;
  }
}

/* Healthcare Solutions Section Styles */
.healthcare-solutions {
  position: relative;
  padding: 100px 0;
  background: #090F1E; /* Changed background color */
  overflow: hidden;
}

.healthcare-solutions .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.healthcare-solutions .section-title {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #E6E9F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.healthcare-solutions .section-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 80px;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg width='34' height='31' viewBox='0 0 34 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0909 30.5455H34V17.5455C34 9.95455 29.4545 3.72727 20.0909 0.454545V5.90909C25.5909 8.22727 27.1818 12.2727 27.6364 17.5455H20.0909V30.5455ZM0 30.5455H13.9091V17.5455C13.9091 9.95455 9.36364 3.72727 0 0.454545V5.90909C5.5 8.22727 7.09091 12.2727 7.54545 17.5455H0V30.5455Z' fill='%23D2FF3A' fill-opacity='0.7'/%3E%3C/svg%3E") no-repeat center;
  opacity: 0.7;
}

.healthcare-solutions .section-description {
  font-size: 1.2rem;
  color: #E6E9F0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Styles for the new solutions section and cards */
.solutions-section {
  padding: 100px 0; /* Add padding to the section */
  background-color: #090F1E; /* Set background color */
  color: #fff; /* Set default text color */
  overflow: hidden;
}

.solutions-section .container {
  max-width: 1200px; /* Match container width of other sections */
  margin: 0 auto;
  padding: 0 15px;
}

.solutions-section .row {
  margin-left: -15px;
  margin-right: -15px;
}

.solutions-section .col-md-4 {
  padding-left: 15px;
  padding-right: 15px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.03); /* Semi-transparent white background */
  border: 1px solid rgba(162, 89, 255, 0.1); /* Subtle border */
  border-radius: 20px; /* Rounded corners */
  padding: 30px; /* Inner padding */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px); /* Frosted glass effect */
  height: 100%; /* Make cards same height */
}

@media (max-width: 576px) {
  .solutions-section .col-md-4 {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}

.solution-card:hover {
  transform: none;
  border-color: rgba(162, 89, 255, 0.1);
  box-shadow: none;
}

.solution-card h3 {
  font-size: 1.4rem; /* Adjusted title font size */
  font-weight: 600;
  color: #ffffff; /* White title color */
  margin-bottom: 15px;
  line-height: 1.4; /* Added line height */
}

.solution-card p {
  color: #E6E9F0; /* Light grey description color */
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0; /* Remove bottom margin */
}

/* Responsive styles for the new solutions grid */
@media (max-width: 991px) {
  .solutions-section .col-md-4 {
    margin-bottom: 20px; /* Adjust space between rows for smaller screens */
  }
}

@media (max-width: 768px) {
  .solutions-section .col-md-4 {
    margin-bottom: 20px; /* Adjust space between rows for smaller screens */
  }
  .solution-card {
    padding: 20px; /* Adjust padding for smaller screens */
  }
  .solution-card h3 {
    font-size: 1.2rem; /* Adjust title size for smaller screens */
  }
  .solution-card p {
    font-size: 0.9rem; /* Adjust description size for smaller screens */
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

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

.service-popup {
  background: #1A2645;
  border-radius: 20px;
  padding: 2rem;
  width: 90%;
  max-width: 610px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.popup-close {
  position: absolute;
  top: 0rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.popup-close:hover {
  opacity: 1;
}

.popup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.popup-content {
  color: #B8C1EC;
}

.popup-content h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.popup-content p {
  font-size: 1.0rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 32px;
}


@media (max-width: 768px) {
  .service-popup {
    padding: 1.5rem;
    width: 95%;
  }

  .popup-image {
    height: 100px;
  }

  .popup-content h3 {
    font-size: 1.5rem;
  }
}

.quote-box {
  padding: 30px;
  margin: 20px 0;
  background: rgba(64, 255, 96, 0.05);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}


.quote-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2c3e50;
  margin: 0;
  padding-left: 20px;
  font-style: italic;
}

@media (max-width: 768px) {
  .quote-box {
    padding: 20px;
    margin: 15px 0;
  }
  
  .quote-text {
    font-size: 1rem;
  }
}

.footer-bottom-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Adjust the space between the two texts */
  margin-top: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.footer-slogan,
.footer-copyright {
  /* margin: -7px; Remove default paragraph margins */
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

@media (max-width: 768px) {
  .footer-bottom-text {
    flex-direction: column;
    gap: 5px;
  }
}

.commitment-main-text {
  font-size: 2.5rem;
  line-height: 1.4;
  color: #B8C1EC;
  position: relative;
  padding-top: 50px;
  font-size: 1.1rem;
  color: #E6E9F0; /* Light grey color for paragraphs */
  margin-bottom: 16px; /* Margin between paragraphs */
  line-height: 1.6;
  margin-top: 32px;
}

.commitment-main-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3%;
  transform: translateX(-50%) scaleX(-1);
  width: 34px;
  height: 31px;
  background: url("data:image/svg+xml,%3Csvg width='34' height='31' viewBox='0 0 34 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0909 30.5455H34V17.5455C34 9.95455 29.4545 3.72727 20.0909 0.454545V5.90909C25.5909 8.22727 27.1818 12.2727 27.6364 17.5455H20.0909V30.5455ZM0 30.5455H13.9091V17.5455C13.9091 9.95455 9.36364 3.72727 0 0.454545V5.90909C5.5 8.22727 7.09091 12.2727 7.54545 17.5455H0V30.5455Z' fill='%23D2FF3A' fill-opacity='1'/%3E%3C/svg%3E") no-repeat center;
  opacity: 1;
}

.icon-wrapper {
  margin-bottom: 1.5rem;
}

.quote-icon {
  width: 48px;
  height: auto;
}

.commitment-quote {
  position: relative;
  max-width: 468px;
  min-height: 96px;
  padding: 24px;
  border-radius: 16px;
  border: 2.8px dashed #182443;
  gap: 10px;
  width: 100%;
  margin-top: 48px;
}

.commitment-quote::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 14px;
  background: #090F1E;

  z-index: -1;
}

.commitment-quote p {
  font-size: 1.2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  
}

@media (max-width: 768px) {
  .commitment-quote {
    padding: 20px;
    min-height: 80px;
  }
  
  .commitment-quote p {
    font-size: 1rem;
  }

  .quote-icon {
    width: 36px;
  }
}

/* Remove previous border effects */
.commitment-quote::before,
.commitment-quote::after {
  display: none;
}

@media (max-width: 991px) {
  .hero {
    min-height: 100vh;
    padding: 100px 0 60px;
  }

  .video-container {
    height: 100%;
  }

  .video-container > div {
    height: 100% !important;
    padding: 0 !important;
  }

  .video-container iframe {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 80px 0 40px;
  }

  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .video-overlay {
   background-color: #090F1E;
    opacity: 0.7;
  }
}
.ab-im {
  position: relative;
  border-radius: 0px !important;
  box-shadow: none !important;
}



/* Service cards spacing */
.services .col-md-4 {
}

@media (max-width: 768px) {
  .services .col-md-4 {
    margin-bottom: 20px;
  }
  
  
  .services .col-md-4 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .services .col-md-4 {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .feature-card {
    margin: 20px;
    width: calc(100% - 40px);
  }

  .service-card {
    margin: 20px;
  }
}

@media (max-width: 768px) {
  .why-choose-us .row {
    margin: 20px;
  }

  .why-choose-us .col-md-4 {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }

  .feature-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .why-choose-us .col-md-4 {
    margin-bottom: 15px;
  }

  .feature-card {
    margin-bottom: 15px;
  }
}

.feature-card {
  background: rgba(10, 25, 47, 0.5);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(64, 169, 255, 0.1);
}

@media (max-width: 768px) {
  .feature-card {
    margin: 20px;
  }

  .why-choose-us .row {
    margin: 20px;
  }

  .why-choose-us .col-md-4 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 576px) {
  .feature-card {
    margin: 15px;
  }
}

@media (max-width: 768px) {
  .why-choose-us .col-md-4 {
    padding: 0;
  }

  .why-choose-us .row {
    margin: 20px;
  }

  .feature-card {
    margin: 20px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(64, 169, 255, 0.1);
  }

  .why-choose-us .col-md-4.mb-4 {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .feature-card {
    margin: 20px;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .section-title,
  .section-title.aos-init,
  .section-title.aos-animate,
  h2.section-title {
    text-align: left !important;
    margin: 20px !important;
    width: auto;
  }

  .section-title::after,
  .section-title.aos-init::after,
  .section-title.aos-animate::after {
    left: 20px;
    transform: none;
    margin-left: 0;
  }

  .section-title span,
  .section-title.aos-init span,
  .section-title.aos-animate span {
    text-align: left;
  }

  .section-tag {
    text-align: left;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .contact-section .col-lg-6 {
    margin: 20px;
  }

  .contact-section .section-title {
    margin: 20px !important;
  }

  .contact-section .section-subtitle {
    margin: 20px;
  }

  .contact-info {
    margin: 20px;
  }

  .contact-item {
    margin-bottom: 20px;
  }

  .contact-item:last-child {
    margin-bottom: 0;
  }

  .contact-form-container {
    margin: 16px;
  }

  .solutions-section .row {
    margin: 12px;
  }
  .solution-card h3{
    width: 100%;
  }
}

@media (max-width: 768px) {
  .solutions row{
    margin-left: 0;
    margin-right: 0;
  }
}

.padding-more .aos-init {
  margin-bottom: 24px;
}







/* Map Background Container */
.map-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1600px; /* Adjust this value to match the combined height of Mission + Vision sections */
  max-width: 100vw;
  max-height: none;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.map-background {
  width: auto;
  height: 100%;
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1.0;
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 10%;
  transform: translateY(10%);
}

/* Vision & Mission Section */




/* Device Illustration */
.device-illustration {
  display: flex;
  justify-content: center;
  margin-bottom: -100px;
  position: absolute;
  top: -91px;
  z-index: 2;
  width: 100%;

}

.device-logo {
  width: 182px;
  height: 182px;
  object-fit: contain;
}

/* Compatibility Title (now part of AI Solution Section) */


@media (max-width: 1200px) {
  .compatibility-title {
    font-size: 64px;
    line-height: 80px;
    max-width: 900px;
  }
}

@media (max-width: 992px) {
  .compatibility-title {
    font-size: 56px;
    line-height: 70px;
    max-width: 750px;
  }
  .section-wrapper .map-bg-image {
    left: 0;
    width: calc(100% - 50px);
    height: 40%;
    object-fit: contain;
    z-index: 3;
    opacity: 1;
    pointer-events: none;
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .compatibility-title {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -1px;
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .compatibility-title {
    font-size: 36px;
    line-height: 45px;
    letter-spacing: -0.5px;
    max-width: 95%;
  }
}

/* Hide vertical scrollbar but allow vertical scrolling */
body {
  /* For most browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}



@media (max-width: 992px) {
  .app-features-section .feature-content {
    margin-top: 40px;
  }
  
  .app-features-section .feature-device-wrapper {
    max-width: 400px !important;
    /* height: 320px !important; */
  }
  
  .app-features-section .desktop-monitor .desktop-monitor > div:first-child {
    width: 100px !important;
    height: 94px !important;
  }
  
  .app-features-section .desktop-monitor .desktop-monitor > div:nth-child(2) {
    width: 100px !important;
  }

}

@media (max-width: 768px) {

  .app-features-section .feature-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 30px;
  }
  
  .app-features-section .feature-content h3 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  
  .app-features-section .feature-device-wrapper {
    max-width: 320px !important;
    height: 260px !important;
  }
  
  .app-features-section .desktop-monitor .desktop-monitor > div:first-child {
    width: 80px !important;
    height: 76px !important;
  }
  
  .app-features-section .desktop-monitor .desktop-monitor > div:nth-child(2) {
    width: 80px !important;
  }
  
  .app-features-section .desktop-monitor > div:nth-child(5) {
    height: 185px !important;
  }
  
  .app-features-section .row {
    margin-bottom: 40px !important;
    padding-bottom: 40px !important;
  }
}

@media (max-width: 576px) {
  .app-features-section .feature-content h3 {
    font-size: 20px !important;
  }
  

  
  .app-features-section .feature-device-wrapper {
    max-width: 280px !important;
    height: 220px !important;
  }
}

.solution-alert-section {
  padding-bottom: 0;
}

.title-section {
  font-weight: 700; 
  font-size: 60px; 
  line-height: 72px; 
  letter-spacing: -1.5px; 
  color: #202020;
  padding-bottom: 80px;
}

@media (max-width: 992px) {
  .title-section-mobile {
    color: #202020;
    font-size:  36px;
    font-style: normal;
    font-weight: 700;
    line-height:  44px;
    letter-spacing: -1.5px;
    padding-bottom: 60px;
    margin: 0;
  }
}