/* Build your Tailwind CSS into this file. */
.company-scroll-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    margin-top: 0rem;
  }
  
  .company-scroll-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: max-content;
    animation: scroll-infinite 30s linear infinite;
  }
  
  .company-item {
    flex-shrink: 0;
    width: 120px;
  }
  
  .company-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
  }
  
  @keyframes scroll-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
  }
  
  .company-scroll-container:hover .company-scroll-content {
    animation-play-state: paused;
  }
  
  .h-34 {
    height: 8.5rem; /* Similar to your Angular layout */
  }
  
  /* Sub-CTA text */
  .sub-cta-text {
    font-size: 0.875rem;
    color: #6b7280; /* gray-500 */
  }
  

  /* height helper for hero slider (approx same as Angular) */
.h-34 {
    height: 8.5rem;
  }
 
  /* home section css */
  :root {
    --orange: rgb(255, 85, 0);
    --gray: rgb(157, 169, 179);
    --purple: #763586;
}
 
h1 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    padding-bottom: 0.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
 
    background: linear-gradient(45deg, #e1bee7, #f8bbd0);
    background: linear-gradient(45deg, #ff9800, #e57373);
    background: linear-gradient(45deg, #ff5722, #f50057);
    background: linear-gradient(45deg, #003366, #008080);
 
    /* Compatibility properties */
    background-clip: text; /* Standard property */
    -webkit-background-clip: text; /* WebKit-specific property */
    -webkit-text-fill-color: transparent; /* WebKit-specific property */
 
    position: relative;
}
@media (max-width: 768px) {
    h1 {
        font-size: 2rem; /* Smaller font size for mobile */
        margin-bottom: 1.5rem; /* Adjust spacing if needed */
    }
}
/* Base Styles */
.nav-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
 
/* Color System */
.bg-primary {
    background-color: var(--purple);
}
.text-primary {
    color: var(--purple);
}
.border-primary {
    border-color: var(--purple);
}
.hover\:bg-primary:hover {
    background-color: var(--orange);
}
.hover\:text-primary:hover {
    color: var(--purple);
}
 
.bg-accent {
    background-color: var(--purple);
}
.text-accent {
    color: var(--purple);
}
.border-accent:hover {
    border-color: var(--orange);
}
.border-accent {
    border-color: var(--purple);
}
.bg-custom {
    border-color: var(--orange);
}
 
.text-secondary {
    color: var(--gray);
}
 
/* Enhanced Cards */
.enhanced-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
 
/* Animations */
.slide-up {
    animation: slideUp 0.6s ease-out;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}
 
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
/* Button Effects */
.hover-effect {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}
.hover-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.hover-effect:hover::after {
    width: 300%;
    height: 300%;
}
 
/* Hero Section Pattern */
.hero-pattern {
    background-image:
        radial-gradient(var(--gray) 1px, transparent 1px),
        radial-gradient(var(--gray) 1px, white 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.1;
}
 
/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple) 100%);
    background-clip: text; /* Standard property */
    -webkit-background-clip: text; /* WebKit-specific property */
    -webkit-text-fill-color: transparent; /* WebKit-specific property */
}
 
/* Dropdown Menu */
.relative .absolute {
    min-width: 200px; /* Set a minimum width to prevent wrapping */
    white-space: nowrap; /* Prevent text from wrapping to the next line */
}
 
/* Dropdown Menu Links */
.relative .absolute a {
    display: block;
    padding: 8px 16px; /* Adjust padding for more space */
    text-align: left;
    color: #4b5563; /* Ensure text color matches design */
    font-size: 16px; /* Adjust font size for consistency */
    font-weight: 500; /* Optional: Make the text more readable */
    text-decoration: none;
}
 
.relative .absolute a:hover {
    background-color: #f3f4f6; /* Optional: Add hover background */
    color: var(--purple); /* Adjust hover text color */
}
 
.feedback-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
 
  .feedback-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
 
  .feedback-card {
    flex-shrink: 0;
    width: 100%;
    padding: 0px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
  }
 
  .feedback-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
 
  .feedback-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
 
  .feedback-name {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
  }
 
  .feedback-role {
    font-size: 14px;
    color: #6b6b6b;
  }
 
  .feedback-rating {
    margin-top: 5px;
    display: flex;
  }
 
  .star-icon {
    width: 18px;
    height: 18px;
    fill: #fbbf24; /* Yellow color for the stars */
  }
 
  .feedback-text {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
  }
 
  /* Keep horizontal layout regardless of screen size */
  @media (max-width: 768px) {
    .feedback-card {
      width: 100%;
    }
  }

  .relative .absolute {
    min-width: 130px; /* Set a minimum width to prevent wrapping */
    white-space: nowrap; /* Prevent text from wrapping to the next line */
}

.beta-scroll-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    background-color: rgba(255, 204, 0, 0.3); /* Light yellow background */
    padding: 0.2rem 0;
  }
  
  /* ✅ Continuous Scroll Content */
  .beta-scroll-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: max-content;
    animation: beta-scroll-infinite 15s linear infinite;
  }
  
  /* ✅ Beta Message */
  .beta-message {
    font-size: 1rem;
    text-align: center;
    color: #333;
    display: inline-block; /* Ensures the text takes up its full width */
    width: max-content;
  }
  
  /* ✅ TRUE Infinite Scroll */
  @keyframes beta-scroll-infinite {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); } /* Moves by 100% so it loops smoothly */
  }
  
  /* ✅ Stops on Hover */
  .beta-scroll-container:hover .beta-scroll-content {
    animation-play-state: paused;
  }
  /* Adjust font size and padding for smaller screens */
  @media (max-width: 767px) {
    .beta-message {
      font-size: 0.875rem;
      padding: 0.25rem;
    }
  }
  