/*
Theme Name: The Contraction Method
Author: Admin
Description: Custom WordPress theme built with Tailwind CSS
Version: 1.0
License: GPL v2 or later
*/
html, body {
    margin: 0;
    padding: 0;
    background-color: #000000;
overflow-x: hidden
}

/* Default logo */
.custom-logo {
  max-width: 280px;
  height: auto;
}

/* Container */
.container-parent {
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .container-parent {
    padding-left: 15px;
    padding-right: 15px;
  }

  .custom-logo {
    max-width: 200px;
  }
}

/* Tablet (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .container-parent {
    padding-left: 30px;
    padding-right: 30px;
  }

  .custom-logo {
    max-width: 220px;
  }
}

/* Small desktop (1024px to 1179px) */
@media (min-width: 1024px) and (max-width: 1179px) {
  .container-parent {
    padding-left: 40px;
    padding-right: 40px;
  }

  .custom-logo {
    max-width: 230px;
  }
}

/* Medium desktop (1180px to 1249px) */
@media (min-width: 1180px) and (max-width: 1249px) {
  .container-parent {
    padding-left: 40px;
    padding-right: 40px;
  }

  .custom-logo {
    max-width: 230px;
  }
}

/* Large desktop (1250px to 1575px) */
@media (min-width: 1250px) and (max-width: 1575px) {
  .container-parent {
    padding-left: 60px;
    padding-right: 60px;
  }

  .custom-logo {
    max-width: 250px;
  }
}

/* Extra large desktop (1576px and above) */
@media (min-width: 1576px) {
  .container-parent {
    padding-left: 100px;
    padding-right: 100px;
  }

  .custom-logo {
    max-width: 300px;
  }
}


/* Testimonial Swiper Pagination Styles */
.testimonialSwiper .swiper-pagination {
  position: relative;
  bottom: 0;
}

.testimonialSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.testimonialSwiper .swiper-pagination-bullet:hover {
  opacity: 0.8;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  background-color: #F40000; 
  opacity: 1;
  width: 14px;
  height: 14px;
}

/* Responsive Pagination Sizes */
@media (min-width: 640px) {
  .testimonialSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  
  .testimonialSwiper .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 768px) {
  .testimonialSwiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
  
  .testimonialSwiper .swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
  }
}

.mobile-menu {
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
    }
    .mobile-menu.active {
      transform: translateX(0);
    }
    /* Overlay */
    .menu-overlay {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease-in-out;
    }
    .menu-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }


/* Contact Form 7 Custom Styling */
/* Assessment Form Styling */
.assessment-form-wrapper {
  font-family: 'Montserrat', sans-serif;
}

.assessment-form-wrapper .wpcf7-form p {
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .assessment-form-wrapper .wpcf7-form p {
    margin-bottom: 1.5rem;
  }
}

/* Label Styling */
.assessment-form-wrapper label {
  display: block;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.assessment-form-wrapper .radio-label {
  margin-bottom: 0.75rem;
}

/* Input, Textarea, Select Base Styling */
.assessment-form-wrapper input[type="text"],
.assessment-form-wrapper input[type="email"],
.assessment-form-wrapper input[type="tel"],
.assessment-form-wrapper textarea,
.assessment-form-wrapper select {
  width: 100%;
  background-color: transparent;
  border: 1px solid rgb(75, 85, 99);
  color: white;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  outline: none;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .assessment-form-wrapper input[type="text"],
  .assessment-form-wrapper input[type="email"],
  .assessment-form-wrapper input[type="tel"],
  .assessment-form-wrapper textarea,
  .assessment-form-wrapper select {
    padding: 10px;
  }
}

.assessment-form-wrapper input[type="text"]:focus,
.assessment-form-wrapper input[type="email"]:focus,
.assessment-form-wrapper input[type="tel"]:focus,
.assessment-form-wrapper textarea:focus,
.assessment-form-wrapper select:focus {
  border-color: #ef4444;
}

/* Textarea Specific */
.assessment-form-wrapper textarea {
  resize: none;
  min-height: 60px;
}

/* Select Dropdown with Arrow */
.assessment-form-wrapper select {
  background-color: black;
  appearance: none;
  cursor: pointer;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27white%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpolyline points=%276 9 12 15 18 9%27%3e%3c/polyline%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

/* Radio Buttons Container */
.assessment-form-wrapper .radio-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .assessment-form-wrapper .radio-wrapper {
    flex-direction: row;
    gap: 1.2rem;
  }
}

.assessment-form-wrapper .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .assessment-form-wrapper .wpcf7-radio {
    flex-direction: row;
    gap: 1.2rem;
  }
}

.assessment-form-wrapper .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.assessment-form-wrapper input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: #dc2626;
  cursor: pointer;
}

.assessment-form-wrapper .wpcf7-list-item-label {
  color: white;
  font-size: 0.875rem;
  cursor: pointer;
  margin: 0;
}

/* Submit Button */
.assessment-form-wrapper input[type="submit"] {
  width: 100%;
  background-color: #dc2626;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
margin-top: 20px;
}

@media (min-width: 640px) {
  .assessment-form-wrapper input[type="submit"] {
    width: auto;
  }
}

.assessment-form-wrapper input[type="submit"]:hover {
  background-color: #b91c1c;
}

/* Validation Messages */
.assessment-form-wrapper .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: block;
}

.assessment-form-wrapper .wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid;
}

.assessment-form-wrapper .wpcf7-validation-errors {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.assessment-form-wrapper .wpcf7-mail-sent-ok {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

/* Placeholder Text Color */
.assessment-form-wrapper input::placeholder,
.assessment-form-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Remove default CF7 styles */
.assessment-form-wrapper .wpcf7-form-control-wrap {
  display: block;
}

.assessment-form-wrapper span.wpcf7-not-valid-tip {
  position: relative;
}

.contact-from-container .contact-form-button {

    margin-top: -30px;
}
.contact-from-container .contact-form-button input{
	padding-left: 30px; 
padding-right: 30px; 
background-color: red; 
}
.contact-from-container label {
    margin-bottom: -10px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: white;
}