/* Form Container Styles */
.form-container {
}

/* Dialog Table Styles */
.form-container .Dialog.Tall {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
}

.form-container .Dialog.Tall td {
  padding: 0;
  vertical-align: top;
}

/* Form Title */
.form-container .form-title {
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  /* margin: 0 0 2rem 0; */
  line-height: 2.0;
}

/* Cell Containers */
.form-container .cell-20 {
  margin-bottom: 0;
}

.form-container .cell-20:last-child {
  margin-bottom: 0;
}

/* Input Container Styles */
.form-container .mwInput {
  position: relative;
}

.form-container .mwInput.text {
  display: block;
  width: 100%;
}

/* Input Field Styles */
.form-container .mwInput input[type="text"],
.form-container .mwInput input[type="email"] {
  border-radius:25px;
}


.form-container .mwInput {
  border-radius:25px;
}


.form-container .mwInput input[type="text"]:focus,
.form-container .mwInput input[type="email"]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-container .mwInput input[type="text"]::placeholder,
.form-container .mwInput input[type="email"]::placeholder {
  color: #9ca3af;
  font-size: 0.95rem;
}

/* Submit Button Styles */
.form-container .mwInput.button {
  margin-top: 0;
  width: 100%;
}

.form-container .mwInput input[type="submit"] {
    font-size: var(--btn-md-font-size);
    font-weight: var(--btn-font-weight);
    font-family: var(--btn-font-family);
    border-width: var(--btn-border-width);
    border-style: var(--btn-border-style);
    border-radius: 25px;
    text-transform: var(--btn-text-transform);
    letter-spacing: var(--btn-letter-spacing);
    padding: var(--btn-md-padding-y) var(--btn-md-padding-x);
    transition: var(--transition-200);
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    text-decoration: none;
}

.form-container .mwInput input[type="submit"]:hover {
      background: var(--primary-6);

}

.form-container .mwInput input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

/* Hover Effects for Input Fields */
.form-container .mwInput input[type="text"]:hover,
.form-container .mwInput input[type="email"]:hover {
  border-color: #d1d5db;
}

/* Error State (optional - add these classes via JavaScript) */
.form-container .mwInput.error input[type="text"],
.form-container .mwInput.error input[type="email"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Success State (optional - add these classes via JavaScript) */
.form-container .mwInput.success input[type="text"],
.form-container .mwInput.success input[type="email"] {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Responsive Design */
@media (max-width: 600px) {
  .form-container {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .form-container .form-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .form-container .mwInput input[type="text"],
  .form-container .mwInput input[type="email"],
  .form-container .mwInput input[type="submit"] {
    padding: 0.875rem;
  }
}




.footer { background:#454545; }























/* Image Card - Style 4 */
.img-card-style-4 {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.img-card-style-4 .img-card-wrap {
    display: flex;
    flex-direction: column;
    background: #F4F4F4;
    border-radius: 0;
    overflow: hidden;
}

.img-card-style-4 .img-card-wrap:hover {
}

.img-card-style-4 .img-card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.img-card-style-4 .img-card-body {
    padding: 30px;
    background: #F4F4F4;
}

.img-card-style-4 .img-card-title {
    margin: 0 0 20px 0;
    color: var(--third);
}

.img-card-style-4 .img-card-des {
    margin: 0 0 20px 0;
    /* font-size: 16px; */
    /* line-height: 1.8; */
}

.img-card-style-4 .img-card-des p {
    margin: 0 0 15px 0;
}

.img-card-style-4 .img-card-des p:last-child {
    margin-bottom: 0;
}

.img-card-style-4 .img-card-link {
    margin: 0;
}

.img-card-style-4 .img-card-link a {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.img-card-style-4 .img-card-link a:hover {
    background: #c0392b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .img-card-style-4 .img-card-body {
        padding: 20px;
    }
    
    .img-card-style-4 .img-card-title {
        margin-bottom: 15px;
    }
    
    .img-card-style-4 .img-card-des {
    }
}

@media (max-width: 480px) {
    .img-card-style-4 .img-card-body {
        padding: 15px;
    }
    
    .img-card-style-4 .img-card-title {
        margin-bottom: 12px;
    }
    
    .img-card-style-4 .img-card-des {
    }
    
    .img-card-style-4 .img-card-link a {
        padding: 10px 20px;
    }
}






.cta-style-2 .cta-wrap {
  position: relative;
}

.cta-style-2 .cta-img {
  overflow: hidden;
  position: relative;
  background-color: var(--primary-1);
}

.cta-style-2 .cta-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-style-2 .cta-text-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .cta-style-2 .cta-text-area {
    position: relative;
    border-top: 10px solid rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 991px) {
  .cta-style-2 .cta-text-area .content-area-wrap {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .cta-style-2 .cta-text-area .container {
    max-width: none;
  }
}

.cta-style-2 .cta-inner {
  padding: 60px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.95) 100%);
  color: #ffffff;
  text-align: right;
  border-top: none;
  max-width: 600px;
}

@media (max-width: 991px) {
  .cta-style-2 .cta-inner {
    padding: 30px 15px 30px;
    border-top: none;
    background: rgba(0, 0, 0, 0.85);
    text-align: left;
  }
}

.cta-style-2 .cta-content h2 {
  color: #ffffff;
}

@media (max-width: 991px) {
  .cta-style-2 .cta-content h2 {
  }
}

.cta-style-2 .cta-content p {
  /* font-size: 1rem; */
  /* line-height: 1.6; */
  /* margin-bottom: 2rem; */
  /* color: #ffffff; */
}

.cta-style-2 .cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .cta-style-2 .cta-btns {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.cta-style-2._bg-primary .cta-inner,
.cta-style-2._bg-secondary .cta-inner,
.cta-style-2._bg-third .cta-inner,
.cta-style-2._bg-fourth .cta-inner,
.cta-style-2._bg-white .cta-inner,
.cta-style-2._bg-light .cta-inner,
.cta-style-2._bg-gray .cta-inner,
.cta-style-2._bg-dark .cta-inner {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.95) 100%);
}

@media (max-width: 991px) {
  .cta-style-2._bg-primary .cta-inner,
  .cta-style-2._bg-secondary .cta-inner,
  .cta-style-2._bg-third .cta-inner,
  .cta-style-2._bg-fourth .cta-inner,
  .cta-style-2._bg-white .cta-inner,
  .cta-style-2._bg-light .cta-inner,
  .cta-style-2._bg-gray .cta-inner,
  .cta-style-2._bg-dark .cta-inner {
    background: rgba(0, 0, 0, 0.85);
  }
}

.cta-style-2.is-md .cta-img {
  height: 550px;
}

@media (max-width: 991px) {
  .cta-style-2.is-md .cta-img {
    height: auto;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 575px) {
  .cta-style-2.is-md .cta-img {
    aspect-ratio: 4/3;
  }
}

.cta-style-2.is-sm .cta-img {
  height: 450px;
}

@media (max-width: 991px) {
  .cta-style-2.is-sm .cta-img {
    height: auto;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 575px) {
  .cta-style-2.is-sm .cta-img {
    aspect-ratio: 4/3;
  }
}

.cta-style-2.is-lg .cta-img {
  height: 800px;
}

@media (max-width: 991px) {
  .cta-style-2.is-lg .cta-img {
    height: auto;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 575px) {
  .cta-style-2.is-lg .cta-img {
    aspect-ratio: 4/3;
  }
}

.cta-style-2.is-img-center .cta-img img {
  object-position: center;
}

.cta-style-2.is-img-top .cta-img img {
  object-position: center top;
}

.cta-style-2.is-img-bottom .cta-img img {
  object-position: center bottom;
}

/*
 |-----------------------------------------------------------------------------------------
 |
 |
 | CTA - Style 2 - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/

