
   :root {
      --primary-color: #0d6efd;
      --secondary-color: #198754;
      --dark-bg: #212529;
      --light-gray: #f8f9fa;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #333;
      scroll-behavior: smooth;
    }

    section {
      position: relative;
      padding: 40px 0;
    }

    .navbar-brand {
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--primary-color) !important;
    }
    
    .navbar-brand img {
        max-width: 100px;
        max-height: 100px;
    }

    .hero-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    }
    
    /* Left Side Background */
.hero-left {
    background: linear-gradient(270deg, #ffffff 0%, #f0f4ff 100%);
}


/* Right Side Background */
.hero-right {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}
    
    .text-orange-500 {
    color: #FF6600;
}

    .bg-orange-500 {
    background-color: #FF6600;
}

    .cta-orange {
    background-color: #FF6600;
}

    .cta-outline-orange {
    border: 1px solid #FF6600 ;
}

.cta-outline-orange:hover {
    background-color: #FF6600;
    color: #fff;
}
    .needs-card {
      border: 1px solid #eee;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .needs-card:hover {
      border-color: var(--primary-color);
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .testimonial-card {
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .btn-primary {
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 8px;
    }

    footer a:hover {
      color: var(--primary-color) !important;
    }

    .nav-link {
      font-weight: 500;
    }
    /* Floating WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 40px;
      right: 40px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      color: white;
    }

    /* Ensure responsiveness for small screens */
    @media (max-width: 600px) {
      .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
      }
    }
    