
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  .image-background {
position: fixed;
top: 0;
left: 0;
width: 100%;
/* height: 100%; */
z-index: -1;
overflow: hidden;
background-size: cover;
background-repeat: no-repeat;
}

#bg-image {
width: 100%;
height: 100%;
object-fit: cover; 
}
  .wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  #bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
  }
  
  .content-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 1);
    
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .logo-container {
    display: flex;
    justify-content: center;
    /*padding-top: 40px;*/
  }
  
  .logo {
    
    height: auto;
  }
  
  .title-container {
    width: 100%;
    text-align: center;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .video-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  #content-video {
  width: 100%;
  max-width: 1500px;
  border-radius: 12px;
  padding: 4px;
  /* background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3, #ff0000); */
  background-size: 300% 300%;
  animation: gradientBorder 6s ease infinite;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  height:400px !important;
}

  /* New styles for description row */
  .description-row {
    width: 100%;
    /*display: flex;*/
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    color: black;
    padding-bottom:50px;
  }
  
  .campaign_video{
      padding:0px !important;
  }
  
  .description-column {
    flex: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .description-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .description-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff7730;
    text-shadow: 0 0 8px rgba(255, 119, 48, 0.4);
  }
  
  .description-text {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1rem;
  }

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


#content-video::-webkit-media-controls-panel {
  border-radius: 8px;
}


#content-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  z-index: -1;
}
  
  .bottom-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
  
  .countdown-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    /* background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(10, 10, 10, 0.8));
    border-radius: 16px; */
    padding: 20px;
    padding-top:20px;
    padding-bottom:0px !important;
    /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); */
    /* backdrop-filter: blur(5px); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
  }
  
 .countdown-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 119, 48, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}
  
  .countdown {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .time-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
  }
  
  .time-card {
    background: linear-gradient(135deg, #222, #333);
    border-radius: 8px;
    padding: 10px 5px;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .time-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    top: 50%;
    left: 0;
  }
  
  .time-card span {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
  }
  
  .time-divider {
    font-size: 2rem;
    font-weight: 700;
    color: #ff4500;
    margin: 0 -2px;
    animation: pulse 1s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  .label {
    margin-top: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
  }
  
  .cta-container {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
  }

  .ato-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    background: white;
    padding: 50px;
  }
  .btn-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    /* background: white; */
    /*padding: 50px;*/
    margin-bottom:20px;
  }
  .btn-container .cta-button{
    width:100%;
   }
  
  .cta-button {
    padding: 18px 35px;
    font-size: 1.3rem;
    font-weight: 700;
    /*background: linear-gradient(135deg, #ff4500, #ff7730);*/
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.4), 0 6px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: all 0.6s ease;
    z-index: -1;
  }
  
  .cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 25px rgba(255, 69, 0, 0.5), 0 10px 10px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button:hover:before {
    left: 100%;
  }
  
  .cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 5px 10px rgba(255, 69, 0, 0.4);
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .content-container {
      margin: 30px 15px;
      padding: 20px;
    }
    
    h1 {
      font-size: 1.8rem;
    }
    
    .description-row {
      flex-direction: column;
      gap: 20px;
    }
    
    .bottom-row {
      flex-direction: column;
    }
    
    .countdown {
      gap: 5px;
    }
    
    .time-card {
      min-width: 50px;
      padding: 8px 2px;
    }
    
    .time-card span {
      font-size: 1.5rem;
    }
    
    .label {
      font-size: 0.7rem;
    }
    
    .cta-button {
      padding: 15px 30px;
      font-size: 1.1rem;
      width: 100%;
    }
  }

  #bg-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #backgroundIframe{
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%; 
        min-height: 100%;
}
     
.contact-form-container {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin: 15px auto;
  overflow: hidden;
  border-top: 4px solid #ff6b6b;
}


.form-content {
  padding: 15px;
}


.form-group {
  margin-bottom: 12px;
  position: relative;
}


.wpcf7-form label {
  display: block;
  margin-bottom: 3px;
  font-weight: 500;
  color: #444;
  font-size: 13px;
}


.wpcf7-form-control {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  transition: all 0.2s ease;
}

.wpcf7-form-control:focus {
  box-shadow: 0 0 0 2px rgba(72, 209, 204, 0.2);
  border-color: #48d1cc;
  outline: none;
}


input[name="your-name"]:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

input[name="your-email"]:focus {
  border-color: #4e67f1;
  box-shadow: 0 0 0 2px rgba(78, 103, 241, 0.2);
}

input[name="your-subject"]:focus {
  border-color: #48d1cc;
  box-shadow: 0 0 0 2px rgba(72, 209, 204, 0.2);
}

textarea[name="your-message"]:focus {
  border-color: #ffbe0b;
  box-shadow: 0 0 0 2px rgba(255, 190, 11, 0.2);
}


textarea.wpcf7-form-control {
  height:100px;
  resize: vertical;
}

.wpcf7-submit {
  width: 100%;
  padding: 8px;
  background: linear-gradient(90deg, #4e67f1 0%, #48d1cc 100%);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(78, 103, 241, 0.3);
  margin-top:15px
}

.wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(78, 103, 241, 0.4);
}

.wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(78, 103, 241, 0.4);
}


.wpcf7 {
  display: block;
  width: 100%;
}





.wpcf7-not-valid {
  border-color: #ff6b6b;
}

.wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 11px;
  margin-top: 2px;
}


.cta-container {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius:10px

}


.form-group::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -3px;
  height: 60%;
  width: 3px;
  border-radius: 3px;
}

.form-group:nth-child(1)::before {
  background-color: #ff6b6b;
}

.form-group:nth-child(2)::before {
  background-color: #4e67f1;
}

.form-group:nth-child(3)::before {
  background-color: #48d1cc;
}

.form-group:nth-child(4)::before {
  background-color: #ffbe0b;
}

/* Responsive */
@media (max-width: 480px) {
  .wpcf7-form label {
      font-size: 12px;
  }
  
  .wpcf7-form-control {
      padding: 7px 8px;
      font-size: 12px;
  }
  
  .wpcf7-submit {
      padding: 7px;
      font-size: 13px;
  }
}

/* fb */

._56q9 {
  max-width: 800px;
  margin: 20px auto;
  border: 1px solid #e0e3eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}


._491z {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #f0f2f5;
}

._50f7 {
  font-size: 15px;
  font-weight: 600;
  color: #4a5568;
}

._pup {
  display: inline-block;
  font-size: 13px;
  color: #718096;
  margin-right: 70px;
  vertical-align: middle;
}


._55pi {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #2d3748;
  cursor: pointer;
  transition: all 0.2s ease;
}

._55pi:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
}


._4uyl {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #f0f2f5;
  align-items: flex-start;
}

._8o {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  flex-shrink: 0;
}

._1cb {
  width: 100%;
  min-height: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 10px 245px;
  font-size: 15px;
  resize: none;
  outline: none;
  background: #f8fafc;
  transition: all 0.2s ease;
  line-height: 1.4;
}

._1cb:focus {
  border-color: #4299e1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

._1cb::placeholder {
  color: #a0aec0;
}


._5lm5 {
  padding: 12px 16px;
  background: #f8fafc;
  text-align: center;
  font-size: 13px;
  color: #718096;
  line-height: 1.5;
}

._5lm5 a {
  color: #4299e1;
  text-decoration: none;
  font-weight: 500;
}

._5lm5 a:hover {
  text-decoration: underline;
}


._4k-6 {
  height: 1px;
  background: #e2e8f0;
  margin: 0 16px;
}


._3hj1 {
  padding: 8px 0;
}


@media (max-width: 576px) {
  ._56q9 {
      margin: 10px;
      max-width: 100%;
  }
  
  ._4uyl {
      padding: 12px;
  }
  
  ._8o {
      width: 32px;
      height: 32px;
  }
}
.wpcf7 form.invalid .wpcf7-response-output{
  color:red;
}
/*#content-video{*/
/*  min-height:500px;*/
/*  min-width: 900px;*/
/*}*/
