body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f8fbf9;
  color: #222;
}

.mic-hero {
  background: linear-gradient(90deg, #0c2c38 0%, #00703c 100%);
  color: #fff;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.mic-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.mic-left {
  flex: 1;
  min-width: 300px;
}

.mic-logo {
  width: 100px;
  margin-bottom: 40px;
}

.mic-left h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.mic-left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.since-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: default;
  backdrop-filter: blur(5px);
}

.mic-right {
  flex: 1;
  text-align: center;
  position: relative;
}

.mic-image {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(0, 255, 100, 0.3);
}








.membership-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-header p {
  color: #666;
  font-size: 1rem;
}

.form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid transparent;
}

.form-card.green { border-left-color: #16a34a; }
.form-card.blue { border-left-color: #2563eb; }
.form-card.purple { border-left-color: #8b5cf6; }
.form-card.orange { border-left-color: #f97316; }
.form-card.lightgreen { border: 2px solid #22c55e !important; }


.form-card.green .form-title i,
.form-card.green .form-title h3{
    color:#16a34a;
}

.form-card.blue .form-title i,
.form-card.blue .form-title h3{
    color:#2563eb;
}
.form-card.purple .form-title i,
.form-card.purple .form-title h3{
    color: #8b5cf6;
}
.form-card.orange .form-title i,
.form-card.orange .form-title h3{
    color: #f97316;
}
.form-card.lightgreen .form-title i,
.form-card.lightgreen .form-title h3{
    color: #22c55e;
}
.form-title {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 1.1rem;
}

.form-title .icon {
  font-size: 1.3rem;
  margin-right: 8px;
}

.membership-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  padding: 10px 0px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 500;
  margin-bottom: 8px;
}

label span {
  color: red;
}

.input-icon {
  display: flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  transition: border 0.3s ease, background 0.3s ease;
  gap:5px;
}
.input-icon i{
   color:#717182;
}

.input-icon:focus-within {
  border-color: #16a34a;
  background: #fff;
}

input,
select {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 1rem;
  font-family: inherit;
  color: #222;
}

select {
  appearance: none;
}

small {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

/* Terms and submit */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin-bottom: 8px;
}

.checkbox-container input {
  width: 18px;
  height: 18px;
}

.checkbox-container span {
  color: red;
}

.terms p {
  color: #666;
  font-size: 0.95rem;
  margin: 0 0 15px;
}

.submit-btn {
  width: 100%;
  background: #16a34a;
  color: #fff;
  padding: 15px;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #15803d;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}















.mic-footer {
  background: linear-gradient(90deg, #0c2c38 0%, #00703c 100%);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
  min-width: 250px;
}

.footer-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 12px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 40px auto 20px;
  max-width: 1200px;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
  }
}



@media (max-width: 750px) {
 .mic-image{
    max-width: none !important;
 }   
 .mic-container{
    flex-direction: column !important;
    gap:18px !important;
 }
 .mic-left{
    width: 100% !important; 
 }
}
