:where([class^="ri-"])::before { content: "\f3c2"; }
        
        body {
            font-family: 'Open Sans', sans-serif;
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
        }
        
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        .parallax-reverse {
            transform: translateY(0);
            transition: transform 0.5s ease-out;
        }
        
        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        
        .map-container {
            position: relative;
            overflow: hidden;
            height: 100%;
            min-height: 320px;
        }
        
        .custom-checkbox {
            position: relative;
            padding-left: 28px;
            cursor: pointer;
            user-select: none;
        }
        
        .custom-checkbox input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        
        .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 20px;
            width: 20px;
            background-color: #fff;
            border: 2px solid #e5e7eb;
            border-radius: 4px;
            transition: all 0.2s ease;
        }
        
        .custom-checkbox:hover input ~ .checkmark {
            border-color: #d1d5db;
        }
        
        .custom-checkbox input:checked ~ .checkmark {
            background-color: #2563eb;
            border-color: #2563eb;
        }
        
        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }
        
        .custom-checkbox input:checked ~ .checkmark:after {
            display: block;
        }
        
        .custom-checkbox .checkmark:after {
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        
        .custom-select {
            position: relative;
            display: inline-block;
            width: 100%;
        }
        
        .custom-select select {
            display: none;
        }
        
        .select-selected {
            background-color: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 12px 16px;
            cursor: pointer;
        }
        
        .select-selected:after {
            position: absolute;
            content: "";
            top: 18px;
            right: 16px;
            width: 8px;
            height: 8px;
            border: 2px solid #6b7280;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        
        .select-selected.select-arrow-active:after {
            transform: rotate(-135deg);
            top: 22px;
        }
        
        .select-items {
            position: absolute;
            background-color: white;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 99;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            margin-top: 4px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            max-height: 250px;
            overflow-y: auto;
            display: none;
        }
        
        .select-items div {
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .select-items div:hover {
            background-color: #f3f4f6;
        }
        
        .select-hide {
            display: none;
        }
        
        .same-as-selected {
            background-color: #f3f4f6;
        }
        
        .scroll-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }

        .company-name {
            font-family: 'Poppins', Arial, sans-serif;
            font-size: 32px;
            font-weight: 900;
            /* letter-spacing: 2px; */
            padding-left: 20px;
            text-transform: uppercase;
            white-space: nowrap; /* Force it to stay in one line */
            background: linear-gradient(270deg, #000000, #ffee00, #95abc3);
            background-size: 400% 400%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: animateGradient 8s ease infinite;
            /* text-shadow: 0 0 3px rgba(0, 255, 255, 0.7),
                         0 0 6px rgba(0, 119, 255, 0.6); */
            -webkit-text-stroke: 1px #000000;
          }
          
          /* Animate Stroke Color */
          @keyframes animateGradient {
            0% {
              background-position: 0% 50%;
              -webkit-text-stroke: 1px #ffffff;
            }
            50% {
              background-position: 100% 50%;
              -webkit-text-stroke: 1px #ffffff;
            }
            100% {
              background-position: 0% 50%;
              -webkit-text-stroke: 1px #ffffff;
            }
          }
          
          
          /* Responsive Breakpoints */
          
          /* Large screens (default already good) */
          
          /* Medium devices (tablets, small laptops) */
          @media (max-width: 1024px) {
            .company-name {
              font-size: 28px;
              letter-spacing: 1.5px;
            }
          }
          
          /* Small devices (large phones) */
          @media (max-width: 768px) {
            .company-name {
              font-size: 24px;
              letter-spacing: 1.2px;
            }
          }
          
          /* Extra small devices (phones) */
          @media (max-width: 480px) {
            .company-name {
              font-size: 20px;
              letter-spacing: 1px;
            }
          }
          
          /* Tiny phones */
          @media (max-width: 360px) {
            .company-name {
              font-size: 24px;
              letter-spacing: 0.8px;
            }
          }
          
          .white-shadow {
            text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8);
          }
          