.hero-video-section {
  /*position: relative;*/
  /*width: 100%;*/
  /*height: 80vh;*/
  /*overflow: hidden;*/
  /*display: flex;*/
  /*justify-content: center;*/
  /*align-items: center;*/
}

.background-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.new-hero-heading {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 15px 63px;
  margin: 0 auto;
  color: #000;
  font-family: 'Segoe UI', sans-serif;
}

.video-div{
    display:flex;
      justify-content: center;
}

.new-hero-heading h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.new-hero-heading span {
  color: #d60000; /* red for emphasis */
  font-weight: 700;
}

/* Responsive heading */
@media (max-width: 768px) {
  .new-hero-heading h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .new-hero-heading h2 {
    font-size: 1.3rem;
  }
}


/* Tablet */
@media (max-width: 768px) {
  .hero-video-section {
    height: auto;
    padding: 40px 0;
    flex-direction: column;
  }

  .hero-video {
    width: 95%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-video-section {
    height: auto;
    padding: 30px 0;
  }

  .hero-video {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
}



.new-form-section {
  /*position: relative;*/
  padding: 80px 20px 0px 20px;
  /*overflow: hidden;*/
  background-color: #fdfdfd;
}

.form-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.form-container {
  position: relative;
  z-index: 1;
  /*display: flex;*/
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-left {
  flex: 1 1 50%;
}

.form-left h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.form-left h2 span {
  color: #d60000;
}



.checklist {
  list-style: none;
  padding-left: 0;
  color: #444;
}

.checklist li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #1e1e1e;
}

.form-box {
  flex: 1 1 40%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-progress img {
  width: 40px;
  height: 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input, select {
  padding: 12px 15px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-row .country-code {
  white-space: nowrap;
  padding: 12px 15px;
  background: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row select {
  flex: 1;
}

button {
  background: #d60000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #b30000;
}

/* Responsive */
@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
    gap: 40px;
  }

  .form-left, .form-box {
    flex: 1 1 100%;
  }

  .form-row {
    flex-direction: column;
  }
}



.steps-container {
    display: flex;
    gap:60px;
    margin-bottom: 30px;
    position: relative;
}
.step-item {
    display: flex;

    align-items: center;
    z-index: 1;
    position: relative;
    width: 60px;
}
        .step-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
            position: relative;
        }
        .step-icon img {
            width: 30px;
            height: 30px;
            object-fit: cover;
        }
        .step-icon.active {
            background-color: #e3f2fd;
            border: 2px solid #0d6efd;
        }
        .step-icon.completed {
            background-color: #d1e7dd;
        }
        .step-connector {
            position: absolute;
            top: 25px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #dee2e6;
            z-index: 0;
        }
        .step-notification {
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #dc3545;
            color: white;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .form-step {
            display: none;
        }
        .form-step.active {
            display: block;
        }
        .btn-primary {
            background-color: #f01c31;
            border-color: #f01c31;
        }
        .btn-primary:hover {
            background-color: #d01525;
            border-color: #d01525;
        }
        .btn-outline-secondary {
            color: #6c757d;
            border-color: #6c757d;
        }
        .btn-outline-secondary:hover {
            background-color: #6c757d;
            color: white;
        }
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
        }
        .required::after {
            content: "*";
            color: #dc3545;
            margin-left: 2px;
        }
        .upload-btn {
            display: flex;
            align-items: center;
            color: #6c757d;
            border: 1px solid #ced4da;
            border-radius: 5px;
            padding: 8px 15px;
            cursor: pointer;
            background-color: #f8f9fa;
        }
        .upload-btn i {
            margin-right: 8px;
        }
        .phone-input-container {
            display: flex;
        }
        .country-select {
            width: 80px;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
        .phone-input {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
        .country-flag {
            width: 20px;
            height: 15px;
            margin-right: 5px;
        }
        .otp-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .otp-input {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 24px;
            border: 1px solid #ced4da;
            border-radius: 5px;
        }
        .form-buttons {
            display: flex;
            gap: 14px;
            margin-top: 30px;
        }
        .form-check-input:checked {
            background-color: #f01c31;
            border-color: #f01c31;
        }
        /* Validation styles */
        .is-invalid {
            border-color: #dc3545 !important;
            /*padding-right: calc(1.5em + 0.75rem);*/
            /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");*/
            background-repeat: no-repeat;
            background-position: right calc(0.375em + 0.1875rem) center;
            background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
        }
        .is-valid {
            border-color: #198754 !important;
            /*padding-right: calc(1.5em + 0.75rem);*/
            /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");*/
            background-repeat: no-repeat;
            background-position: right calc(0.375em + 0.1875rem) center;
            background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
        }
        .invalid-feedback {
            display: none;
            width: 100%;
            margin-top: 0.25rem;
            font-size: 0.875em;
            color: #dc3545;
        }
        .was-validated .form-control:invalid ~ .invalid-feedback,
        .form-control.is-invalid ~ .invalid-feedback,
        .was-validated .form-check-input:invalid ~ .invalid-feedback,
        .form-check-input.is-invalid ~ .invalid-feedback,
        .was-validated .form-select:invalid ~ .invalid-feedback,
        .form-select.is-invalid ~ .invalid-feedback {
            display: block;
        }
        .file-feedback {
            margin-top: 0.25rem;
            font-size: 0.875em;
        }
        
        
    .radio-group {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .radio-group input[type="radio"] {
      padding:7px;
    }
    
    
    .next-btn {
    border-radius: 10px;
    border: 2px solid rgba(237, 27, 36, 0.10);
    background: #ed1b24;
    color: #FFF;
    text-align: center;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.5px;
    padding: 8px 15px;
}

.back-btn {
    border-radius: 10px;
    border: 2px solid rgba(237, 27, 36, 0.10);
    background: #FFF;
    color: #ed1b24;
    text-align: center;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.5px;
    padding: 8px 15px;
}

.form-check{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.form-check input {
 padding:8px;
}


.section-3{
    /*position: relative;*/
    /*width: 100%;*/
    /*height: 41vh;*/
    /*overflow: hidden;*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}

.section-4{
    /*position: relative;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*overflow: hidden;*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/

    
}


  .reel-container {
      background: #fff;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      max-width: 540px;
      width: 100%;
      margin: auto;
    }

    .instagram-media {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 auto !important;
    }
