  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

  body {
      font-family: 'Inter', sans-serif;
  }

  /* Custom gradients and effects */
  .windriver-slide-1 {
      background: linear-gradient(135deg,
              rgba(30, 95, 153, 0.85) 0%,
              rgba(41, 128, 185, 0.75) 50%,
              rgba(52, 152, 219, 0.65) 100%),
          url('https://assets.crowdstrike.com/is/image/crowdstrikeinc/fal-con-features-hero-v2-desktop?wid=2048&hei=640&fmt=png-alpha&qlt=95,0&resMode=sharp2&op_usm=3.0,0.3,2,0');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
  }

  .windriver-slide-2 {
      background: linear-gradient(135deg,
              rgba(30, 95, 153, 0.85) 0%,
              rgba(41, 128, 185, 0.75) 50%,
              rgba(52, 152, 219, 0.65) 100%),
          url('https://assets.crowdstrike.com/is/image/crowdstrikeinc/Sun-Peak-Hero-Desktop?wid=2048&hei=640&fmt=png-alpha&qlt=95,0&resMode=sharp2&op_usm=3.0,0.3,2,0');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
  }

  .windriver-slide-3 {
      background: linear-gradient(135deg,
              rgba(30, 95, 153, 0.85) 0%,
              rgba(41, 128, 185, 0.75) 50%,
              rgba(52, 152, 219, 0.65) 100%),
          url('https://assets.crowdstrike.com/is/image/crowdstrikeinc/Keystone_LP_Graphic_v3_sansLogos-04-desktop?wid=2048&hei=858&fmt=png-alpha&qlt=95,0&resMode=sharp2&op_usm=3.0,0.3,2,0');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
  }

  .glass-morph {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .glass-morph-hover:hover {
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .btn-glass {
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(255, 255, 255, 0.4);
  }

  .btn-glass-outline {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(255, 255, 255, 0.5);
  }

  .text-gradient {
      background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .slide-transition {
      transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .btn-shimmer::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
  }

  .btn-shimmer:hover::before {
      left: 100%;
  }

  .glass-box-shimmer::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.6s ease;
  }

  .glass-box-shimmer:hover::before {
      left: 100%;
  }

  /* Responsive grid for glass boxes */
  .glass-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      height: fit-content;
  }

  @media (max-width: 768px) {
      .glass-grid {
          grid-template-columns: 1fr;
      }
  }

  /****************/
  .feature-section {
      opacity: 1;
      animation: fadeInLeft 0.8s ease-out 0.2s forwards;
  }

  .feature-section:nth-child(even) {
      animation: fadeInRight 0.8s ease-out 0.2s forwards;
  }

  .feature-image {
      opacity: 1;
      animation: scaleIn 0.6s ease-out 0.4s forwards;
      transition: all 0.3s ease;
  }

  .feature-image:hover {
      transform: scale(1.05) rotate(1deg);
      box-shadow: 0 20px 40px rgba(30, 95, 153, 0.3);
  }

  .computer-mockup {
      background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
      border-radius: 20px 20px 8px 8px;
      box-shadow:
          0 0 0 8px #e2e8f0,
          0 0 0 12px #cbd5e1,
          0 25px 50px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
  }

  .computer-mockup::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 40px;
      background: linear-gradient(135deg, #64748b 0%, #475569 100%);
      border-radius: 20px 20px 0 0;
  }

  .computer-mockup::after {
      content: '';
      position: absolute;
      top: 15px;
      left: 20px;
      width: 12px;
      height: 12px;
      background: #ef4444;
      border-radius: 50%;
      box-shadow: 20px 0 0 #f59e0b, 40px 0 0 #10b981;
  }

  .screen-content {
      margin-top: 40px;
      padding: 20px;
      background: #ffffff;
      border-radius: 0 0 8px 8px;
  }

  .hover-lift {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hover-lift:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(30, 95, 153, 0.2);
  }

  .text-shimmer {
      background: linear-gradient(135deg, #1e5f99 0%, #2980b9 50%, #3498db 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: titleGlow 3s ease-in-out infinite alternate;
  }

  .feature-icon {
      background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
      transition: all 0.3s ease;
  }

  .feature-icon:hover {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 12px 35px rgba(52, 152, 219, 0.5);
  }

  .blog-section {
      opacity: 0;
      animation: slideInUp 0.6s ease-out 0.6s forwards;
  }

  .blog-card {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .blog-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 25px 50px rgba(30, 95, 153, 0.15);
  }

  .blog-image {
      height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
  }

  .blog-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(30, 95, 153, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .blog-card:hover .blog-image::before {
      opacity: 1;
  }

  .pulse-dot {
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1.2);
          opacity: 0.8;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }



  /* Testimonials Section Styles */
  .testimonials-section {
      position: relative;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }

  /* Testimonial Slider */
  .testimonial-slider-container {
      position: relative;
  }

  .testimonial-slide {
      display: none;
      opacity: 0;
      transform: translateX(50px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .testimonial-slide.active {
      display: block;
      opacity: 1;
      transform: translateX(0);
      animation: slideInTestimonial 0.8s ease-out forwards;
  }

  .testimonial-slide.prev {
      transform: translateX(-50px);
  }

  @keyframes slideInTestimonial {
      from {
          opacity: 0;
          transform: translateY(30px) scale(0.95);
      }

      to {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
  }

  /* Testimonial Images Layout */
  .testimonial-images {
      position: relative;
      height: 400px;
  }

  .main-image {
      position: relative;
      z-index: 3;
      transform: rotate(-2deg);
      transition: transform 0.3s ease;
  }

  .main-image:hover {
      transform: rotate(0deg) scale(1.05);
  }

  .side-images {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .side-img-1 {
      position: absolute;
      top: -20px;
      right: -30px;
      width: 120px;
      height: 150px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transform: rotate(8deg);
      z-index: 1;
      transition: all 0.3s ease;
  }

  .side-img-2 {
      position: absolute;
      bottom: -10px;
      left: -40px;
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      transform: rotate(-5deg);
      z-index: 2;
      transition: all 0.3s ease;
  }

  .testimonial-images:hover .side-img-1 {
      transform: rotate(5deg) translateY(-5px);
  }

  .testimonial-images:hover .side-img-2 {
      transform: rotate(-2deg) translateY(-3px);
  }

  /* Testimonial Content Animation */
  .testimonial-content {
      animation: fadeInContent 0.8s ease-out 0.3s both;
  }

  @keyframes fadeInContent {
      from {
          opacity: 0;
          transform: translateX(30px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  /* Slider Dots */
  .slider-controls {
      position: relative;
  }

  .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #cbd5e1;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .slider-dot:hover {
      background: #94a3b8;
      transform: scale(1.2);
  }

  .slider-dot.active {
      background: #1e5f99;
      transform: scale(1.3);
      position: relative;
  }

  .slider-dot.active::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
      animation: dotShimmer 2s infinite;
  }

  @keyframes dotShimmer {
      0% {
          left: -100%;
      }

      100% {
          left: 100%;
      }
  }

  /* Progress Animation */
  .slider-dot.active::before {
      content: '';
      position: absolute;
      top: -3px;
      left: -3px;
      right: -3px;
      bottom: -3px;
      border: 2px solid #1e5f99;
      border-radius: 50%;
      animation: progressRing 5s linear infinite;
  }

  @keyframes progressRing {
      0% {
          transform: rotate(0deg);
          border-color: #1e5f99 transparent transparent transparent;
      }

      25% {
          border-color: #1e5f99 #1e5f99 transparent transparent;
      }

      50% {
          border-color: #1e5f99 #1e5f99 #1e5f99 transparent;
      }

      75% {
          border-color: #1e5f99 #1e5f99 #1e5f99 #1e5f99;
      }

      100% {
          transform: rotate(360deg);
          border-color: #1e5f99 #1e5f99 #1e5f99 #1e5f99;
      }
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
      .testimonial-slide .grid {
          grid-template-columns: 1fr;
          gap: 2rem;
      }

      .testimonial-images {
          height: 300px;
          order: 2;
      }

      .testimonial-content {
          order: 1;
      }

      .side-img-1 {
          width: 80px;
          height: 100px;
          top: -10px;
          right: -15px;
      }

      .side-img-2 {
          width: 70px;
          height: 70px;
          bottom: -5px;
          left: -20px;
      }
  }

  /* Hover Effects */
  .testimonial-content>div:hover {
      box-shadow: 0 25px 50px rgba(30, 95, 153, 0.15);
      border-color: rgba(30, 95, 153, 0.2);
  }


  .trusted-section {
      min-height: 100vh;
      /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
      background: linear-gradient(135deg, #667eea 0%, #4b56a2 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 80px 0;
  }

  .trusted-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
      opacity: 0.3;
  }

  .floating-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
  }

  .shape {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      animation: floatUp 15s infinite linear;
  }

  .shape:nth-child(1) {
      width: 80px;
      height: 80px;
      left: 10%;
      animation-delay: 0s;
  }

  .shape:nth-child(2) {
      width: 60px;
      height: 60px;
      left: 80%;
      animation-delay: 5s;
  }

  .shape:nth-child(3) {
      width: 120px;
      height: 120px;
      left: 60%;
      animation-delay: 10s;
  }

  .shape:nth-child(4) {
      width: 40px;
      height: 40px;
      left: 30%;
      animation-delay: 7s;
  }

  @keyframes floatUp {
      0% {
          transform: translateY(100vh) rotate(0deg);
          opacity: 0;
      }

      10% {
          opacity: 1;
      }

      90% {
          opacity: 1;
      }

      100% {
          transform: translateY(-100px) rotate(360deg);
          opacity: 0;
      }
  }

  .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
  }

  .section-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
  }

  /* Content Side */
  .content-side {
      opacity: 0;
      transform: translateX(-50px);
      animation: slideInLeft 1s ease-out 0.5s forwards;
  }

  .content-side h2 {
      font-size: 3.5rem;
      font-weight: 800;
      color: white;
      margin-bottom: 20px;
      line-height: 1.1;
      background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .content-side .subtitle {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 30px;
      font-weight: 300;
  }

  .content-side p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 25px;
      line-height: 1.7;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin: 40px 0;
  }

  .stat-item {
      text-align: center;
      padding: 20px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: transform 0.3s ease;
  }

  .stat-item:hover {
      transform: translateY(-5px);
  }

  .stat-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: white;
      display: block;
      margin-bottom: 5px;
  }

  .stat-label {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #ff6b6b, #ffa500);
      color: white;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      margin-top: 20px;
      box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  }

  .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
  }

  /* Logos Side */
  .logos-side {
      opacity: 0;
      transform: translateX(50px);
      animation: slideInRight 1s ease-out 0.7s forwards;
  }

  .logos-container {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 30px;
      padding: 50px 40px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      position: relative;
      overflow: hidden;
  }

  .logos-container::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
      animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
      0% {
          transform: translateX(-100%) translateY(-100%) rotate(45deg);
      }

      100% {
          transform: translateX(100%) translateY(100%) rotate(45deg);
      }
  }

  .logos-title {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
  }

  .logos-title h3 {
      font-size: 1.8rem;
      color: #333;
      margin-bottom: 10px;
      font-weight: 700;
  }

  .logos-title p {
      color: #666;
      font-size: 1rem;
  }

  .logos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      position: relative;
      z-index: 1;
  }

  .logo-item {
      background: white;
      border-radius: 20px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid rgba(102, 126, 234, 0.1);
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px) scale(0.9);
      animation: logoFadeIn 0.6s ease-out forwards;
  }

  .logo-item:nth-child(1) {
      animation-delay: 1s;
  }

  .logo-item:nth-child(2) {
      animation-delay: 1.1s;
  }

  .logo-item:nth-child(3) {
      animation-delay: 1.2s;
  }

  .logo-item:nth-child(4) {
      animation-delay: 1.3s;
  }

  .logo-item:nth-child(5) {
      animation-delay: 1.4s;
  }

  .logo-item:nth-child(6) {
      animation-delay: 1.5s;
  }

  .logo-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
      transition: left 0.5s ease;
  }

  .logo-item:hover::before {
      left: 100%;
  }

  .logo-item:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
      border-color: rgba(102, 126, 234, 0.3);
  }

  .logo-item img {
      height: 60px;
      width: auto;
      max-width: 120px;
      object-fit: contain;
      filter: grayscale(0.3);
      transition: all 0.3s ease;
  }

  .logo-item:hover img {
      filter: grayscale(0);
      transform: scale(1.1);
  }

  /* Pulsing animation for random logos */
  .logo-item.pulse {
      animation: logoPulse 2s infinite;
  }

  @keyframes logoPulse {

      0%,
      100% {
          transform: scale(1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      }

      50% {
          transform: scale(1.05);
          box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
      }
  }

  /* Keyframe Animations */
  @keyframes slideInLeft {
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  @keyframes slideInRight {
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  @keyframes logoFadeIn {
      to {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
      .section-content {
          grid-template-columns: 1fr;
          gap: 50px;
          text-align: center;
      }

      .content-side h2 {
          font-size: 3rem;
      }

      .logos-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 768px) {
      .trusted-section {
          padding: 60px 0;
      }

      .content-side h2 {
          font-size: 2.5rem;
      }

      .stats-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .logos-container {
          padding: 40px 25px;
      }

      .logos-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
      }

      .logo-item {
          padding: 20px;
      }

      .logo-item img {
          height: 35px;
          max-width: 100px;
      }
  }

  @media (max-width: 480px) {
      .container {
          padding: 0 15px;
      }

      .content-side h2 {
          font-size: 2rem;
      }

      .logos-grid {
          grid-template-columns: 1fr;
      }

      .logo-item {
          padding: 25px;
      }
  }

  /* 

  .social-icon {
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
        }
        .footer-link {
            position: relative;
            transition: all 0.3s ease;
        }
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #3498db, #2980b9);
            transition: width 0.3s ease;
        }
        .footer-link:hover::after {
            width: 100%;
        }
        .hire-btn-fixed {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hire-btn-fixed:hover {
            transform: scale(1.1) translateY(-2px);
        }
        .footer-section {
            opacity: 0;
            animation-fill-mode: forwards;
        }
        .footer-bg-pattern {
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(52, 152, 219, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 75% 75%, rgba(30, 95, 153, 0.1) 0%, transparent 70%);
        } */



  .social-icon {
      transition: all 0.3s ease;
  }

  .social-icon:hover {
      transform: translateY(-5px) scale(1.1);
  }

  .footer-link {
      position: relative;
      transition: all 0.3s ease;
  }

  .footer-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #3498db, #2980b9);
      transition: width 0.3s ease;
  }

  .footer-link:hover::after {
      width: 100%;
  }

  .hire-btn-fixed {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hire-btn-fixed:hover {
      transform: scale(1.1) translateY(-2px);
  }

  .footer-section {
      opacity: 0;
      animation-fill-mode: forwards;
  }

  .footer-bg-pattern {
      background-image:
          radial-gradient(circle at 25% 25%, rgba(138, 124, 248, 0.15) 0%, transparent 70%),
          radial-gradient(circle at 75% 75%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  }

  .wave-gradient {
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  }

  .breadcrumb-bg {
      background: linear-gradient(135deg, rgba(30, 95, 153, 0.9) 0%, rgba(52, 152, 219, 0.8) 100%),
          url('https://windrivertool.co.uk/public/front/win/img/Banner.jpg') center/cover;
      position: relative;
      overflow: hidden;
  }

  .breadcrumb-bg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 60%, rgba(52, 152, 219, 0.2) 0%, transparent 70%),
          radial-gradient(circle at 70% 20%, rgba(30, 95, 153, 0.3) 0%, transparent 50%);
      animation: parallax 15s ease-in-out infinite;
  }

  .glass-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .floating-element {
      animation: breadcrumbFloat 4s ease-in-out infinite;
  }

  .floating-element:nth-child(2) {
      animation-delay: -1s;
  }

  .floating-element:nth-child(3) {
      animation-delay: -2s;
  }

  .cta-gradient {
      background: linear-gradient(135deg, #1e5f99 0%, #2980b9 35%, #3498db 70%, #5dade2 100%);
      position: relative;
      overflow: hidden;
  }

  .cta-gradient::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
      animation: parallax 20s ease-in-out infinite reverse;
  }

  @keyframes fadeInStagger {
      0% {
          opacity: 0;
          transform: translateY(30px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .stagger-animation {
      opacity: 0;
      animation: fadeInStagger 0.6s ease-out forwards;
  }

  .stagger-animation:nth-child(1) {
      animation-delay: 0.1s;
  }

  .stagger-animation:nth-child(2) {
      animation-delay: 0.2s;
  }

  .stagger-animation:nth-child(3) {
      animation-delay: 0.3s;
  }

  .stagger-animation:nth-child(4) {
      animation-delay: 0.4s;
  }

  .stagger-animation:nth-child(5) {
      animation-delay: 0.5s;
  }

  .stagger-animation:nth-child(6) {
      animation-delay: 0.6s;
  }

  .stats-counter {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }



  .plan-card {
      animation-play-state: paused;
      animation-delay: 0s;
      opacity: 0;
      transform: translateY(60px);
  }

  .plan-card.animate {
      animation-play-state: running;
  }

  .plan-card:nth-child(1) {
      animation-delay: 0.1s;
  }

  .plan-card:nth-child(2) {
      animation-delay: 0.2s;
  }

  .plan-card:nth-child(3) {
      animation-delay: 0.3s;
  }

  .plan-card:nth-child(4) {
      animation-delay: 0.4s;
  }

  .plan-card:hover {
      animation: cardHover 0.3s ease-out forwards, planFloat 4s ease-in-out infinite;
  }

  .popular-badge {
      background: linear-gradient(45deg, #ff6b6b, #ffa500);
      animation: pulse-glow 2s ease-in-out infinite;
  }

  .service-item {
      transition: all 0.3s ease;
  }

  .service-item:hover {
      transform: translateX(5px);
      color: #3498db;
  }

  .price-text {
      background: linear-gradient(45deg, #fff, #f0f8ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: priceGlow 2s ease-in-out infinite;
  }

  .glass-effect {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .plan-icon {
      animation: iconFloat 3s ease-in-out infinite;
  }

  .plan-icon:nth-child(odd) {
      animation-delay: 0.5s;
  }


  .floating-element {
      animation: float 6s ease-in-out infinite;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-20px);
      }
  }

  .cart-item {
      transition: all 0.3s ease;
  }

  .cart-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(30, 95, 153, 0.15);
  }

  .quantity-btn {
      transition: all 0.2s ease;
  }

  .quantity-btn:hover {
      background: #1e5f99;
      transform: scale(1.1);
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(-10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .animate-fadeIn {
      animation: fadeIn 0.8s ease-out;
  }

  /* Float animations */
  .animate-float {
      animation: float 6s ease-in-out infinite;
  }

  .animate-float-slow {
      animation: float 8s ease-in-out infinite;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  /* Bounce animation */
  .animate-bounce-slow {
      animation: bounceSlow 3s ease-in-out infinite;
  }

  @keyframes bounceSlow {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-8px);
      }
  }

  /* Pulse glow effect */
  .animate-pulse-glow {
      animation: pulseGlow 2s ease-in-out infinite;
  }

  @keyframes pulseGlow {

      0%,
      100% {
          opacity: 0.8;
          box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
      }

      50% {
          opacity: 1;
          box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
      }
  }

  /* Button pulse animation */
  .animate-buttonPulse {
      animation: buttonPulse 2s ease-in-out infinite;
  }

  @keyframes buttonPulse {

      0%,
      100% {
          transform: scale(1);
          box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
      }

      50% {
          transform: scale(1.02);
          box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
      }
  }

  /* Slide animations */
  .animate-slideInUp {
      animation: slideInUp 0.8s ease-out forwards;
      opacity: 0;
  }

  .animate-slideInLeft {
      animation: slideInLeft 0.8s ease-out forwards;
      opacity: 0;
  }

  .animate-slideInRight {
      animation: slideInRight 0.8s ease-out forwards;
      opacity: 0;
  }

  @keyframes slideInUp {
      0% {
          opacity: 0;
          transform: translateY(30px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes slideInLeft {
      0% {
          opacity: 0;
          transform: translateX(-30px);
      }

      100% {
          opacity: 1;
          transform: translateX(0);
      }
  }

  @keyframes slideInRight {
      0% {
          opacity: 0;
          transform: translateX(30px);
      }

      100% {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .blog-content h3 {
      @apply text-2xl font-bold text-windriver-dark mb-4 mt-8;
  }

  .blog-content h4 {
      @apply text-xl font-semibold text-windriver-dark mb-3 mt-6;
  }

  .blog-content p {
      @apply text-gray-700 leading-relaxed mb-4;
  }

  .blog-content ul,
  .blog-content ol {
      @apply mb-4 pl-6;
  }

  .blog-content li {
      @apply mb-2 text-gray-700;
  }

  .blog-content ul li {
      @apply list-disc;
  }

  .blog-content ol li {
      @apply list-decimal;
  }

  .blog-content blockquote {
      @apply border-l-4 border-windriver-primary bg-blue-50 p-4 my-6 italic;
  }

  .blog-content .highlight-box {
      @apply bg-gradient-to-r from-windriver-primary/10 to-windriver-accent/10 border-l-4 border-windriver-primary p-6 rounded-r-lg mb-6;
  }

  /* Sidebar styling */
  .sidebar-card {
      @apply bg-white rounded-xl shadow-lg hover:shadow-xl transition-all duration-300 transform hover:-translate-y-1;
  }

  .popular-post {
      @apply flex items-start space-x-3 p-3 hover:bg-gray-50 rounded-lg transition-colors duration-300;
  }

  .popular-post img {
      @apply w-16 h-16 object-cover rounded-lg;
  }

  /* Share buttons */
  .share-btn {
      @apply w-12 h-12 rounded-full flex items-center justify-center text-white transition-all duration-300 transform hover:scale-110;
  }

  /* Progress bar */
  .reading-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, #3b82f6, #06b6d4);
      z-index: 1000;
      transition: width 0.3s ease;
  }

  /* Code blocks */
  .blog-content pre {
      @apply bg-gray-900 text-green-400 p-4 rounded-lg overflow-x-auto mb-4;
  }

  .blog-content code {
      @apply bg-gray-100 px-2 py-1 rounded text-sm font-mono;
  }
  
  
  .plans-overlay {
    height: 100% !important;
    width: 100% !important;
    backdrop-filter: blur(78px) !important;
    border: none !important;
    border-radius: 1rem !important;
    background-image: linear-gradient(135deg, #667eea1f 0%, #764ba294 100%) !important;
    transform: none !important;
  }