/* Basic Reset & Body Styling (adjust as needed for your site's global styles) */
body {
    margin: 0;
       font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
}


/* Banner Section Styling */
.banner-sections {
    background-color: #f8f0ff; /* Light purple background from the image */
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px; /* Ensure some height for visual presence */
    overflow: hidden; /* Important for handling potential image overflows */
  padding:12vh 8vw;
}

.banner-content-wrapper {
    display: flex;
    flex-direction: column; /* Stack vertically on small screens */
    max-width: 1200px; /* Max width for the content */
    width: 100%;
    gap: 50px; /* Space between image and text containers */
    align-items: center; /* Center items vertically for single column layout */
}

/* Desktop layout: Side-by-side */
@media (min-width: 992px) { /* Adjust breakpoint as needed for tablet/desktop transition */
    .banner-content-wrapper {
        flex-direction: row; /* Side-by-side on larger screens */
        justify-content: space-between;
        padding: 0 40px; /* Add some horizontal padding */
        text-align: left; /* Align text left for desktop layout */
    }
}

.banner-image-container {
    flex: 1; /* Allows image container to take available space */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px; /* Prevents image container from becoming too small */
    padding: 20px; /* Add some padding around the image */
}

.banner-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Slightly rounded corners for the image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.banner-text-container {
    flex: 1; /* Allows text container to take available space */
    text-align: center; /* Center text on mobile */
    padding: 20px; /* Padding inside the text box */
    max-width: 600px; /* Constrain text width for readability */
}

/* Desktop text alignment */
@media (min-width: 992px) {
    .banner-text-container {
        text-align: left; /* Align text to the left on larger screens */
    }
}

.banner-text-container h1 {
    font-size: 2.8em; /* Large, prominent heading */
    margin-bottom: 25px;
    line-height: 1.2;
    color: #2c3e50; /* Darker text for heading */
    font-weight: 700; /* Bold */
}

.banner-text-container .banner-description {
    font-size: 1.15em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* HubSpot Rich Text Editor often wraps content in <p> tags, so target those */
.banner-text-container .banner-description p {
    margin-bottom: 1em; /* Standard paragraph spacing */
}

.banner-tags {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap; /* Allow tags to wrap to next line if space is limited */
    justify-content: center; /* Center tags on mobile */
    gap: 12px; /* Space between tags */
}

/* Desktop tag alignment */
@media (min-width: 992px) {
    .banner-tags {
        justify-content: flex-start; /* Align tags to left on desktop */
    }
}

.banner-tags .tag {
    background-color: #9b59b6; /* Purple for tags */
    color: white;
    padding: 8px 18px;
    border-radius: 25px; /* More rounded pill shape */
    font-size: 0.9em;
    font-weight: 600; /* Semi-bold */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Prevent tags from breaking in the middle */
}

/* Responsive Adjustments */
@media (max-width: 991px) { /* Tablet and smaller */
    .banner-sections {
        padding: 12vh 8vw;
    }

    .banner-content-wrapper {
        gap: 30px;
    }

    .banner-text-container h1 {
        font-size: 2em; /* Smaller heading on tablets */
        margin-bottom: 20px;
    }

    .banner-text-container .banner-description {
        font-size: 1em;
    }

    .banner-tags {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) { /* Mobile */
    .banner-sections {
        min-height: auto; /* Allow height to collapse on smaller screens */
        padding: 30px 15px;
    }
    .banner-image-container {
        padding: 0; /* Remove padding around image on very small screens */
    }
    .banner-text-container h1 {
        font-size: 1.7em; /* Even smaller heading for mobile */
    }
}


/* //second section */
.jatango-problem-section {
  padding: 6vh 8vw;
}
.jatango-problem-section .containers {
  max-width: 1400px;
  margin: auto;
}
.jatango-problem-section .intro {
  margin-bottom: 20px;
}
.jatango-problem-section .content-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
     font-family: 'Bricolage Grotesque', sans-serif;
}
.jatango-problem-section .left-column {
  flex: 1;
  max-width: 300px;
  font-weight: 600;
  margin-top: 32px;
}
.jatango-problem-section .right-column {
  flex: 3;
}
.jatango-problem-section .right-column h3 {
  margin-bottom: 15px;
}

.jatango-problem-section .intro {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.jatango-problem-section .content-columns {
    display: flex
;
    flex-wrap: wrap;
    gap: 40px;
    font-size: 1.5rem;
}
/* third section */
.custom-hero-image-container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
/*   background: linear-gradient(180deg, #76a9e0 0%, #3567ac 100%); */
/*   border-radius: 24px; */
  overflow: hidden;
/*   padding: 2vw; */
}

.custom-hero-image {
  display: block;
  width: 100%;
  max-width: 1900px;
/*   margin: 0 auto; */
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.24);
}
/* fourth section */
.github-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6vh 8vw;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #fff;
}

/* Top Banner Layout */
.top-banner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
/*     padding: 30px 0; */
    /* border-bottom: 2px solid #e0e0e0; */
    margin-bottom: 0px;
/*     gap: 40px; */
}

/* Left Side - Solution Text */
.banner-left {
    flex: 0 0 auto;
    min-width: 300px;
  margin-top:20px;
}

.solution-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin-bottom: 2px;
}
@media (max-width: 480px) {
  .solution-text {
    font-size: 1.5rem !important;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin-bottom: 2px;
  }
}

.business-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

/* Right Side - Main Title */
.banner-right {
    flex: 1;
    text-align: left;
  font-size:1.5rem;
 font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
}

.banner-right h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* Main Content Layout */
.main-content-layout {
    display: flex;
    gap: 40px;
    margin-top: 0;
  margin-left:80px;
}

/* Left Spacer - Maintains alignment with left banner */
.left-spacer {
    flex: 0 0 200px; /* Same width as banner-left min-width */
}

/* Phases Container - Aligned with right side */
.phases-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Individual Phase Section */
.github-migration {
    background: #ffffff;
    padding: 0;
    margin-bottom: 10px;
    border: none;
    box-shadow: none;
}

.phase-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
  font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
}

.phase-goal {
    font-size: 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: normal;
}

.phase-goal strong {
    font-weight: bold;
    color: #333;
}

.phase-description {
    font-size: 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
}

.phase-description:last-child {
    margin-bottom: 0;
}

/* Tablet Responsive */
@media screen and (max-width: 1024px) {
    .github-container {
        padding: 0 25px;
    }
    
    .top-banner {
        gap: 30px;
        padding: 25px 0;
    }
    
    .banner-right h2 {
        font-size: 26px;
    }
    
    .solution-text,
    .business-text {
        font-size: 1.5rem;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .github-container {
        padding: 0 15px;
    }
    
    .top-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .banner-left {
        min-width: auto;
        order: 2;
    }
    
    .banner-right {
        order: 1;
        width: 100%;
    }
    
    .banner-right h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .solution-text,
    .business-text {
        font-size: 14px;
    }
    
    /* Mobile - Stack layout, no left spacer */
    .main-content-layout {
        flex-direction: column;
        gap: 0;
    }
    
    .left-spacer {
        display: none;
    }
    
    .phases-container {
        gap: 25px;
    }
    
    .github-migration {
        margin-bottom: 30px;
    }
    
    .phase-title {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .phase-goal,
    .phase-description {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .github-container {
        padding: 0 10px;
    }
    
    .top-banner {
        padding: 15px 0;
        margin-bottom: 25px;
        gap: 15px;
    }
    
    .banner-right h2 {
        font-size: 20px;
    }
    
    .solution-text,
    .business-text {
        font-size: 13px;
    }
    
    /* Mobile - No left spacer */
    .main-content-layout {
        flex-direction: column;
        gap: 0;
    }
    
    .left-spacer {
        display: none;
    }
    
    .phase-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .phase-goal,
    .phase-description {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    .phases-container {
        gap: 20px;
    }
    
    .github-migration {
        margin-bottom: 25px;
    }
}

/* Large Desktop */
@media screen and (min-width: 1200px) {
    .top-banner {
        gap: 60px;
/*         padding: 40px 0; */
    }
    
    .banner-right h2 {
        font-size: 30px;
    }
    
    .solution-text,
    .business-text {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .github-container {
        max-width: none;
        padding: 0;
    }
    
    .top-banner {
        /* border-bottom: 1px solid #000; */
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    
    .github-migration {
        break-inside: avoid;
        margin-bottom: 30px;
    }
}

/* fifth section */
.tools-technologies-section {
  background: linear-gradient(180deg, rgba(255,219,206,0.25), rgba(243,197,255,0.25));
  padding: 12vh 8vw;
}
.tech-stack-title {
  background: linear-gradient(90.11deg, #FD0CB9 47.04%, #5745FF 65.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 60px;
}
.logo-grid-mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.logo-layout-desktop { display: none; }
.logo-card {
  background: #fff;
  padding: 1rem 0.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 180px;
  flex: 1 1 auto;
}
.logo-card img {
  max-height: 121px;
  max-width: 100%;
  object-fit: contain;
}
/* Desktop view */
@media (min-width: 992px) {
  .logo-grid-mobile { display: none; }
  .logo-layout-desktop { display: block; }
  .logo-row {
    display: flex;
/*     gap: 2rem; */
/*     justify-content: center; */
            justify-content: space-around;
    margin-bottom: 2rem;
  }
  .row-1 { justify-content: space-between; }
  .row-2 { justify-content: center; gap: 4rem; }
}
/* six section */
.ai-health-wrapper {
  padding: 6vh 8vw;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container-tool{
  max-width: 1000px;
  margin: 0 auto;
/*   padding: 0 20px; */
}

/* Main Layout */
.main-layout {
display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px; /* space between sidebar and content */
}

.left-sidebar {
  flex: 0 0 180px;
/*   position: sticky; */
  top: 100px;
   min-width: 300px;
   font-size: 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
}

.left-heading {
 font-weight: bold;
  font-size: 1.5rem;
 font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
  line-height: 1.2;
  margin: 0;
}

.right-content {
  flex: 1;
  max-width: calc(100% - 240px);
}

.content-header .right-heading {
   font-size: 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  margin-bottom:30px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* .feature-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  
} */
.feature-box {
  position: relative;
  border-radius: 20px;
  background: #fff; /* Adjust as needed */
  padding: 20px;
  z-index: 1;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px; /* Border thickness */
  background: linear-gradient(113.2deg, #2440F9 0%, #FD0CB9 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude; 
  pointer-events: none;
  z-index: 2;
}

.feature-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.feature-box-1,
.feature-box-3 {
  /* border-left: 4px solid #8b5cf6; */
}

.feature-box-2,
.feature-box-4 {
  /* border-left: 4px solid #06b6d4; */
}

.feature-box h3 {
 font-size: 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.feature-box p {
  font-size: 1rem;
  font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* Testimonial Block */
.testimonial-block {
  background: linear-gradient(135deg, #fef3c7 0%, #e0e7ff 50%, #f3e8ff 100%);
  border-radius: 16px;
  padding: 48px 60px;
  position: relative;
  margin-top: 40px;
      max-width: 1400px;
    margin-left: 5%;
}

.quote-icon {
  font-size: 120px;
  font-weight: 900;
  color: #8b5cf6;
  position: absolute;
  line-height: 0.5;
  font-family: 'Georgia', 'Times New Roman', serif;
  opacity: 0.8;
}

.quote-icon:first-of-type {
  top: 10px;
  left: 25px;
}

.quote-right {
  bottom: 10px;
  right: 25px;
}

.quote-text {
   font-size: 1.5rem;
 font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  font-weight: 500;
  padding: 0 40px;
}

.quote-author {
   font-size: 1.5rem;
 font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
  font-weight: 600;
  color: #8b5cf6;
  margin: 0;
  padding-left: 40px;
}

.testimonial-block {
  background: linear-gradient(90deg, 
#fdf0f0, 
#f3e1fd);
  border-radius: 15px;
  padding: 40px;
  position: relative;
  color: #000;
  font-size: 18px;
  line-height: 1.8;
  max-width"1400px;
  margin-left:11%;
}

.quote-icon {
  font-size: 40px;
  color: 
#a14ae3;
  font-weight: bold;
  position: absolute;
  top: 20px;
  left: 30px;
}

.quote-right {
  top: auto;
  bottom: 20px;
  right: 30px;
  left: auto;
  position: absolute;
}

.quote-text {
  margin: 0;
  padding: 0 40px;
  font-style: italic;
}

.quote-author {
  font-size: 15px;
  font-weight: 600;
  color: 
#7a42f4;
  padding-top: 20px;
  padding-left: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ai-health-wrapper {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 16px;
  }

  .main-layout {
    flex-direction: column;
    gap: 30px;
  }

  .left-sidebar {
    flex: none;
    position: static;
  }

  .right-content {
    max-width: 100%;
  }

  .content-header {
    margin-bottom: 30px;
  }

  .right-heading {
    font-size: 28px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .feature-box {
    padding: 24px 20px;
  }

  .feature-box h3 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 14px;
  }

  .testimonial-block {
    padding: 32px 24px;
    margin-top: 30px;
  }

  .quote-icon {
    font-size: 80px;
  }

  .quote-icon:first-of-type {
    top: 8px;
    left: 18px;
  }

  .quote-right {
    bottom: 8px;
    right: 18px;
  }

  .quote-text {
    font-size: 16px;
    padding: 0 20px;
    line-height: 1.6;
  }

  .quote-author {
    font-size: 14px;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .ai-health-wrapper {
    padding: 40px 0;
  }

  .main-layout {
    gap: 20px;
  }

  .right-heading {
    font-size: 24px;
  }

  .feature-box {
    padding: 20px 16px;
  }

  .testimonial-block {
    padding: 24px 16px;
  }

  .quote-text {
    padding: 0 16px;
    font-size: 15px;
  }

  .quote-author {
    padding-left: 16px;
  }
}
/* seventh section */

.case-studies-wrapper {
  padding: 6vh 8vw;
  font-family: Bricolage Grotesque;

}

.container-case {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
   font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
}

.logo-wrapper .logo-img {
  height: 60px;
  object-fit: contain;
}

.headings {
  color: #5A39E8;
  font-size: 1.9rem;
  margin: 0;
  font-weight: 600;
 font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.case-card {
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 16px;
  box-shadow: 0 12px 40px -10px rgba(90, 57, 232, 0.15);
  flex: 1 1 480px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.image-wrapper {
  position: relative;
  padding: 16px;
  background: linear-gradient(135deg, #f5f0fa 0%, #ffffff 100%);
  border-bottom: 1px solid #f0f2f7;
  display: flex;
  justify-content: center;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(90, 57, 232, 0.2);
}
.case-badge {
  background: #f0f0ff;
  color: #5A39E8;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
}
.tech-badge {
  background: #eef2ff;
  color: #5A39E8;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 0.6rem;
}
.case-btn {
  background: #5A39E8;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}
.case-summary-link {
  font-size: 0.85rem;
  text-decoration: none;
  color: #555;
}

.card-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.card-col {
  flex: 1 1 380px;
  max-width: 450px;
}


.case-card:hover {
  transform: translateY(-3px) scale(1.01);
}
.card-image {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  display: block;
}
.ai-badge {
position: absolute;
  top: 10px;
  right: 10px;
  background: #1f0f4d; /* dark purple/blackish */
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.55rem;
  display: inline-block;
  font-weight: 600;
  letter-spacing: .5px;
}
.case-badge {
   background: #000;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.6rem;
  display: inline-block;
}
.case-summary-link {
  color: #5A39E8;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}
.case-summary-link i {
  margin-right: 4px;
}
.case-card-title {
  font-size: 21px;
  font-weight: 700;
  margin-top: 12px;
}
.case-card-text {
  color: #3d3d3d;
  font-size: 15.5px;
  margin-bottom: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}

.case-badge {
  background: #0f111a;
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: capitalize;
}

.summary-link {
  margin-left: auto;
  font-size: 0.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #3b5bff;
}

.card-title {
  margin: 4px 0 6px;
  font-size: 1.5rem;
 font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
  font-weight: 600;
  line-height: 1.1;
  color: #0f111a;
}

.card-desc {
  margin: 0;
   font-size: 1rem;
 font-family: 'Bricolage Grotesque', sans-serif; /* Example font, use one that matches your brand */
  color: #4f5468;
  line-height: 1.4;
}

.tech-tags {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-badge {
  background: #f5f6fa;
  color: #2f3450;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.55rem;
  font-weight: 500;
}

.action {
  margin-top: auto;
}

.case-btn {
  display: inline-block;
  border: 1px solid #5A39E8;
  color: #5A39E8;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background .2s, color .2s;
}

.case-btn:hover {
  background: #5A39E8;
  color: #fff;
}

@media (max-width: 1024px) {
  .cards-row {
    flex-direction: column;
    gap: 24px;
  }
}
.tech-badge {
  background: #f2f4fa;
  color: #333;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.6rem;
}

.tech-tags .tech-badge {
  display: inline-block;
  background: #F0F1F7;
  color: #22223D;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  padding: 6px 11px;
  margin-right: 5px;
  margin-bottom: 3px;
}
.case-btn {
  display: inline-block;
  background: #fff;
  border: 2px solid #5A39E8;
  color: #5A39E8;
  border-radius: 23px;
  font-size: 17px;
  font-weight: 600;
  padding: 7px 24px;
  transition: all 0.17s;
  text-decoration: none;
  margin-top: 10px;
}
.case-btn:hover {
  background: #5A39E8;
  color: #fff;
  border-color: #5A39E8;
}

.case-summary-link {
  font-size: 0.8rem;
  text-decoration: none;
  color: #1f4ed8;
  display: inline-flex;
  gap: 4px;
}

.case-btn {
  background: none;
  border: 1px solid #5A39E8;
  color: #5A39E8;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}

.content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
     font-family: 'Bricolage Grotesque', sans-serif;
}

/* Tablet adjustments (landscape tablets / small laptops) */
@media (max-width: 1024px) {
  .header-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .headings {
    font-size: 1.6rem;
  }

  .case-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Mobile adjustments (portrait tablets & large phones) */
@media (max-width: 768px) {
  .case-studies-wrapper {
    padding: 4vh 5vw;
  }

  .headings {
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-desc {
    font-size: 0.95rem;
  }

  .case-btn {
    font-size: 0.85rem;
    padding: 7px 16px;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .container-case {
/*     padding: 0 10px; */
  }

  .logo-wrapper .logo-img {
    height: 45px;
  }

  .headings {
    font-size: 1.3rem;
  }

  .case-card {
    border-radius: 12px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-desc {
    font-size: 0.9rem;
  }

  .tech-tags {
    gap: 4px;
  }

  .tech-badge {
    font-size: 0.55rem;
    padding: 4px 8px;
  }

  .badge-row {
    gap: 4px;
  }

  .case-btn {
/*     width: 100%; */
    text-align: center;
  }
}

/* eigth section */
.startup-clients-section {
  background: linear-gradient(94.37deg, rgba(255, 225, 169, 0.5) 0.01%, rgba(248, 169, 255, 0.5) 100.01%);
/*   padding: 12vh 8vw; */
  box-sizing: border-box;
  overflow: hidden;
}
.startup-clients-section .container-fluid {
/*   max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2vw; */
}
.startup-text-wrapper { margin-left: 9vw; }
.startup-btn-gradient {
  background: transparent;
  border: 1.5px solid #6A4FF7;
  border-radius: 9999px;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1rem;
  color: #6A4FF7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: none;
}
.startup-btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(106, 79, 247, 0.6);
  border-color: transparent;
  color: white;
  background: linear-gradient(90deg, #6A4FF7 40%, #9849FF 100%);
}
.startup-section-image {
  max-width: 100%;
  height: 480px;
  object-fit: contain;
}
@media (max-width: 991.98px) {
  .startup-clients-section { padding: 3vh 8vw; }
  .startup-text-wrapper { margin-left: 0 !important; }
  .startup-section-image { height: 350px; }
}
@media (max-width: 767.98px) {
  .startup-clients-section { padding:2.5rem 1rem !important; }
  .startup-text-wrapper { padding: 1rem !important; margin-left: 0 !important; }
  .startup-section-image { height: 225px; }
}
@media (max-width: 575.98px) {
  .startup-clients-section { padding:3vh 5vw !important; }
  .startup-section-image { height: 160px; }
}
/* Prevent text/image from stacking on desktop */
@media (min-width: 992px) {
  .startup-clients-section .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .startup-clients-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 70%;
            margin-left: 74px;
  }
}
/*new section  *//* ----- Import Google Font ----- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500&display=swap');

/* ----- Info Grid Main Styles ----- */
.info-grid {
  display: flex;
/*   gap: 32px; */
  padding: 6vh 14vw;
  max-width: fit-content;
  flex-wrap: wrap;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* ----- Info Box: Gradient Border with Rounded Corners ----- */
.info-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px;
/*   min-width: 318px; */
  max-width: 300px;
  box-sizing: border-box;
  margin-bottom: 16px;
  box-shadow: 0 2px 16px 0 rgba(36,64,249,0.04);
  overflow: hidden;       /* Ensures border radius applies to content AND pseudo-border */
  border: none;           /* Remove normal border */
  z-index: 1;
}

.info-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;  /* border thickness */
  background: linear-gradient(113.2deg, #2440F9 0%, #FD0CB9 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  box-sizing: border-box;
}

/* ----- Info Box Text Styles ----- */
.info-label {
  display: block;
  color: #6b6b6b;
  font-size: 1.5rem;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
}

.info-value {
  color: #191A2B;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ----- Mobile Responsiveness ----- */
@media (max-width: 900px) {
  .info-grid {
    flex-direction: column;
    padding: 8vh 4vw;
    gap: 20px;
    align-items: stretch;
  }
  .info-box {
    max-width: 100%;
    width: 100%;
    padding: 24px 18px;
    margin-bottom: 0;
  }
  .info-label,
  .info-value {
    font-size: 1.2rem;
  }
}
/* second new section */
.etypist-section {
  max-width: 800px;
  margin: 24px auto;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px #ddd;
  padding: 32px;
}
.etypist-section h2 {
  margin-top: 0;
  font-weight: 700;
  color: #423573;
  letter-spacing: 0.01em;
}
.etypist-section ul {
  margin: 20px 0 32px 20px;
  padding: 0;
}
.etypist-section li {
  margin-bottom: 16px;
  font-size: 1.07em;
  line-height: 1.6;
}
.etypist-section li strong {
  color: #2d185b;
}
.services-row {
  display: flex;
  gap: 16px;
}
.service-card {
  flex: 1 1 0px;
  padding: 20px 10px;
  border: 1.7px solid #bea8f6;
  border-radius: 12px;
  background: #faf5ff;
  font-weight: 600;
  color: #5e437a;
  text-align: center;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 24px #d5c9f8;
}
/*new section  *//* ----- Import Google Font ----- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500&display=swap');

/* ----- Info Grid Main Styles ----- */
.info-grid {
  display: flex;
  gap: 32px;
  padding: 6vh 14vw;
  max-width: fit-content;
  flex-wrap: wrap;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* ----- Info Box: Gradient Border with Rounded Corners ----- */
.info-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px;
  min-width: 288px;
  max-width: 300px;
  box-sizing: border-box;
  margin-bottom: 16px;
  box-shadow: 0 2px 16px 0 rgba(36,64,249,0.04);
  overflow: hidden;       /* Ensures border radius applies to content AND pseudo-border */
  border: none;           /* Remove normal border */
  z-index: 1;
}

.info-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;  /* border thickness */
  background: linear-gradient(113.2deg, #2440F9 0%, #FD0CB9 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  box-sizing: border-box;
}

/* ----- Info Box Text Styles ----- */
.info-label {
  display: block;
  color: #6b6b6b;
  font-size: 1.5rem;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
}

.info-value {
  color: #191A2B;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ----- Mobile Responsiveness ----- */
@media (max-width: 900px) {
  .info-grid {
    flex-direction: column;
    padding: 8vh 4vw;
    gap: 20px;
    align-items: stretch;
  }
  .info-box {
    max-width: 100%;
    width: 100%;
    padding: 24px 18px;
    margin-bottom: 0;
  }
  .info-label,
  .info-value {
    font-size: 1.2rem;
  }
}