:root {
            --primary: #000000;
            --secondary: #333333;
            --accent: #666666;
            --light: #f5f5f5;
            --dark: #000000;
            --border: #e0e0e0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background-color: white;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .logo {
            font-size: 24px;
            font-weight: 500;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px; /* Space between logo image and text */
        }
        
        .logo-image {
            height: 40px; /* Adjust based on your logo's dimensions */
            width: auto;
        }
        
        .logo-text {
            font-weight: 500;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 400;
            transition: color 0.3s;
            font-size: 14px;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: white;
            color: black;
            border: 1px solid black;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .btn:hover {
            background-color: black;
            color: white;
        }
        
        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 0;
            min-height: 80vh;
        }
        
        .hero-content {
            flex: 1;
            padding-right: 50px;
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
        }
        
        h1 {
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 20px;
            color: var(--primary);
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        
        .highlight {
            font-weight: 500;
        }
        
        .hero p {
            font-size: 16px;
            margin-bottom: 30px;
            color: #333;
            max-width: 500px;
        }
        
        .stat {
            display: inline-block;
            margin-right: 30px;
            margin-top: 20px;
        }
        
        .stat-number {
            font-size: 32px;
            font-weight: 500;
            color: var(--primary);
            display: block;
        }
        
        .stat-label {
            font-size: 14px;
            color: #666;
        }
        
        /* Features Section */
        .section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 400;
            letter-spacing: -0.5px;
        }
        
        .section-subtitle {
            font-size: 16px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background-color: white;
            border: 1px solid var(--border);
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
            border: 1px solid black;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: black;
            font-size: 14px;
            font-weight: normal;
        }
        
        .feature-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--dark);
            font-weight: 500;
        }
        
        .feature-description {
            color: #666;
            font-size: 14px;
        }
        
        /* Image Showcase */
        .showcase {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            margin: 60px 0;
        }
        
        .showcase-item {
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .showcase-item.large {
            grid-column: span 8;
            grid-row: span 2;
        }
        
        .showcase-item.medium {
            grid-column: span 4;
            grid-row: span 1;
        }
        
        .showcase-item.small {
            grid-column: span 4;
            grid-row: span 1;
        }
        
        .showcase-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        /* Minimalistic hover effect for showcase items */
        .showcase-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-1px);
        }
        
        .showcase-item:hover img {
            transform: scale(1.03);
        }
        
        .showcase-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: rgba(0,0,0,0.7);
            color: white;
            transition: transform 0.3s ease;
        }
        
        .showcase-item:hover .showcase-caption {
            background: rgba(0,0,0,0.8);
        }
        
        .showcase-caption h3 {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 5px;
        }
        
        .showcase-caption p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        
        /* Diagnosis Categories */
        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .category {
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border);
            background: white;
            transition: all 0.3s ease;
        }
        
        .category:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(0px);
        }
        
        .category-header {
            background-color: var(--primary);
            color: white;
            padding: 12px 16px;
            font-size: 16px;
            font-weight: 400;
        }
        
        .category-list {
            padding: 16px;
            flex-grow: 1;
        }
        
        .category-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .category-number {
            width: 24px;
            height: 24px;
            background-color: white;
            color: black;
            border: 1px solid black;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: normal;
            margin-right: 12px;
        }
        
        .category-name {
            color: var(--dark);
            font-weight: 400;
            font-size: 14px;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
        }
        
        .service-image {
            grid-column: span 7;
            grid-row: span 1;
            height: 400px;
        }
        
        .service-text {
            grid-column: span 5;
            grid-row: span 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #f9f9f9;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .service-title {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 20px;
        }
        
        .service-description {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-card {
            text-align: center;
            padding: 30px;
        }
        
        .stat-card-number {
            font-size: 48px;
            font-weight: 300;
            margin-bottom: 10px;
        }
        
        .stat-card-label {
            font-size: 16px;
            color: #666;
        }
        
        /* CTA Section */
        .cta {
            background-color: black;
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta h2 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 400;
        }
        
        .cta p {
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .cta .btn {
            background-color: white;
            color: black;
            border: 1px solid white;
        }
        
        .cta .btn:hover {
            background-color: transparent;
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: white;
            color: black;
            padding: 60px 0 20px;
            border-top: 1px solid #eee;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-description {
            color: #666;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .footer-column h3 {
            font-size: 16px;
            margin-bottom: 20px;
            color: black;
            font-weight: 500;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: black;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            padding: 10px;
            color: black;
            text-decoration: none;
            transition: opacity 0.3s;
            font-size: 14px;
        }
        
        .social-link:hover {
            opacity: 0.7;
        }
        
        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 12px;
        }
        
        .footer-button {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid black;
            border-radius: 100px;
            text-decoration: none;
            color: black;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .footer-button:hover {
            background-color: black;
            color: white;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: left;
                padding: 60px 0;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .service-image, .service-text {
                grid-column: span 12;
            }
            
            .showcase-item.large, 
            .showcase-item.medium, 
            .showcase-item.small {
                grid-column: span 12;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            h1 {
                font-size: 36px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        /* Add this to your existing CSS file (style.css) */

/* Add this to your existing CSS file (style.css) */

/* Gradient banner that stretches across the full page width */
.gradient-banner {
  width: 100%;
  padding: 20px 0; /* Thinner vertical padding */
  margin: 30px 0;
  background: linear-gradient(90deg, 
      rgba(94, 29, 79, 1) 0%, 
      rgba(159, 51, 94, 1) 25%, 
      rgba(212, 106, 76, 1) 75%, 
      rgba(235, 151, 63, 1) 100%);
  position: relative;
  overflow: hidden;
}

/* Container for the gradient banner content */
.gradient-banner-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Adding subtle noise texture overlay */
.gradient-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Text styling for the gradient banner */
.gradient-banner-text {
  color: white;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.gradient-banner .btn {
  background-color: white;
  color: black;
  border: 1px solid white;
  position: relative;
  z-index: 1;
  margin-left: 20px;
}

.gradient-banner .btn:hover {
  background-color: transparent;
  color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
  .gradient-banner-content {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px 20px;
  }
  
  .gradient-banner-text {
      margin-bottom: 15px;
  }
  
  .gradient-banner .btn {
      margin-left: 0;
  }
}

@media (max-width: 992px) {
    .showcase-item.large, 
    .showcase-item.medium, 
    .showcase-item.small {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .showcase-item.large, 
    .showcase-item.medium, 
    .showcase-item.small {
        grid-column: span 12;
    }
    
    .feature-card:hover,
    .category:hover,
    .showcase-item:hover {
        transform: translateY(-3px);
    }
}

/* Microsoft for Startups Badge */
.backed-badge {
    margin-top: 30px;
    display: inline-block;
}

.backed-badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background-color: #f5f5f5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.backed-badge-content:hover {
    background-color: #e8e8e8;
}

.microsoft-logo {
    height: 20px;
    width: auto;
}

.backed-text {
    font-size: 14px;
    color: #333;
}

.backed-text strong {
    font-weight: 500;
}

/* Responsive adjustments for the badge */
@media (max-width: 768px) {
    .backed-badge {
        margin-top: 25px;
    }
    
    .backed-badge-content {
        padding: 8px 14px;
    }
    
    .microsoft-logo {
        height: 18px;
    }
    
    .backed-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .backed-badge-content {
        padding: 6px 12px;
    }
    
    .microsoft-logo {
        height: 16px;
    }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-member:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.team-image {
    overflow: hidden;
    height: 320px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.03);
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--primary);
}

.team-position {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--accent);
}

/* Team social links */
.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    text-decoration: none;
    color: var(--primary);
    font-size: 14px;
    transition: color 0.3s ease;
}

.team-social-link:hover {
    color: var(--accent);
}

.social-icon {
    width: 16px;
    height: 16px;
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .team-social-link {
        font-size: 13px;
    }
    
    .social-icon {
        width: 14px;
        height: 14px;
    }
}

/* Responsive adjustments for the team section */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-image {
        height: 280px;
    }
    
    .team-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .team-image {
        height: 240px;
    }
    
    .team-name {
        font-size: 18px;
    }
}

/* Simple Team Section */
.team-compact {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.team-member-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
}

.team-image-round {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.team-image-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info-simple {
    text-align: center;
}

.team-name-simple {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--primary);
}

.team-position-simple {
    font-size: 14px;
    color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .team-image-round {
        width: 150px;
        height: 150px;
    }
    
    .team-name-simple {
        font-size: 16px;
    }
    
    .team-position-simple {
        font-size: 13px;
    }
}

/* Adjust spacing between showcase and team section */
#showcase + #team {
    padding-top: 20px; /* Reduce the top padding of team section when after showcase */
}

/* You can also adjust the section padding in general */
.section {
    padding: 30px 0;
}

/* And make the specific adjustment for the team section */
#team {
    padding-top: 40px;
}

/* Premium Gradient Buttons - Fixed Version */
.btn-premium {
  background: linear-gradient(90deg, 
      rgba(94, 29, 79, 1) 0%, 
      rgba(159, 51, 94, 1) 25%, 
      rgba(212, 106, 76, 1) 75%, 
      rgba(235, 151, 63, 1) 100%);
  color: white;
  border: 1px solid transparent; /* Add transparent border by default */
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Adding subtle noise texture overlay */
.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

/* Clean color invert hover effect with no layout shift */
.btn-premium:hover {
  background: white;
  color: #333;
  border-color: #333; /* Change border color on hover instead of adding a new border */
}