body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  background-color: #ffffff;
  color: #333;
}

.get-started-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.text-block {
  flex: 1 1 45%;
}

.text-block h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 800;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.support-link a {
  color: #f17000;
  text-decoration: none;
}

.form-block {
  flex: 1 1 45%;
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.checkbox-label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.submit-btn {
  background-color: #FFC300;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #ffb300;
}
/* Responsive Fixes */
@media (max-width: 768px) {
  .hero-grid,
  .split,
  .contact {
    flex-direction: column;
    align-items: center;
  }

  .search-box {
    margin-top: 10px;
  }
}

/* Custom Loader (Main Preloader) */
.custom-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Mulish', sans-serif;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.custom-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Logo Container for Animated Fill Effect */
.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

/* Base Logo (Image or SVG) */
.logo-base {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Fill Animation Using Mask */
.logo-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #FFC300;
  z-index: 1;
  mask-image: url('../images/color_remove.png');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url('../images/color_remove.png');
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: height 0.1s linear;
}

/* Percentage Text Under Loader */
.loader-percentage {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

/* Alternative Spinner (Optional Fallback) */
.loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #FFC300;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

/* Spinner Animation Keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
