/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;

  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Section Styling */
/* Section Styling */
.contact-section {
  text-align: center;
  max-width: 800px;
  /* UPDATED: Added 100px margin to the top */
  margin: 100px auto 0;
  padding: 40px 20px;
}


.collaborate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(123, 47, 247, 0.4);
  margin-bottom: 30px;
}

.collaborate-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* Small "24/7" pill */
.collaborate-btn .tag {
  background: linear-gradient(90deg, #7b2ff7, #9f44d3);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(123, 47, 247, 0.8);
}


/* Heading */
.contact-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-subtext {
  font-size: 16px;
  color: #a1a1aa;
  margin-bottom: 20px;
}

/* Button */
.primary-btn {
  background: linear-gradient(90deg, #7b2ff7, #9f44d3);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.6);
  transition: all 0.3s ease;
}
.primary-btn:hover {
  transform: translateY(-3px);
}

/* Form */
.contact-form {
  background: #111;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 0 40px rgba(123, 47, 247, 0.5);
  text-align: left;
}

/* Form Rows */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
  margin-bottom: 20px;
}

/* Labels */
label {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 6px;
}

/* Inputs, Select, Textarea */
input, select, textarea {
  background: #000;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  color: #fff;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: #7b2ff7;
  box-shadow: 0 0 8px rgba(123, 47, 247, 0.6);
}

/* Textarea */
textarea {
  min-height: 100px;
  resize: none;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #7b2ff7, #9f44d3);
  border: none;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.6);
  transition: all 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-3px);
}
        .site-footer {
            background-color: #05020c;
            color: #a0a0a0;
            padding: 50px 20px 20px 20px;
            margin-top: auto;
            border-top: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

      .footer-logo {
        height: 100px;
        margin-bottom: 15px;
      }
      .footer-heading {
            font-size: 24px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
           
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150%;
            height: 400px;
            background: radial-gradient(circle, rgba(163, 125, 253, 0.1), transparent 70%);
            pointer-events: none;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column .logo-svg {
            height: 40px;
            margin-bottom: 15px;
        }

        .footer-column p {
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-column h3 {
            color: #ffffff;
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a0a0a0;
            text-decoration: none;
            transition: color 0.3s, padding-left 0.3s;
        }

       

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-input {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            color: #fff;
            padding: 12px;
            border-radius: 8px;
            font-family: inherit;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }

        .newsletter-input:focus {
            border-color: var(--primary-purple);
            box-shadow: 0 0 0 3px rgba(163, 125, 253, 0.3);
        }

        .subscribe-btn {
            background-color: var(--primary-purple);
            color: #fff;
            font-weight: 500;
        }
        
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
        }

        .footer-socials {
            display: flex;
            gap: 15px;
        }

        .footer-socials a {
            color: #a0a0a0;
            font-size: 18px;
            transition: color 0.3s, transform 0.3s;
        }

        .footer-socials a:hover {
            color: #fff;
            transform: scale(1.2);
        }