

/*  custom header setup styles in header php file  */
/* Force header in one line */
#my-custom-header .my-header-container > .elementor-element {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* Fix the inner wrapper */
#my-custom-header .e-con-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
	  flex-direction: row;
	height:80px
}

/* Align logo + menu + button in one row */
#my-custom-header .pxl-logo,
#my-custom-header .pxl-menu,
#my-custom-header .elementor-widget-button {
    display: flex !important;
    align-items: center !important;
}

/* Header spacing */
#my-custom-header {
    padding: 10px 0;
    background: #fff;
}

/* Make logo correct size */
#my-custom-header .pxl-logo img {
    height: 40px;
    width: auto;
}

.my-header-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.e-con-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.pxl-logo img {
    height: 55px !important;
    width: auto !important;
}

.pxl-menu__primary {
    display: flex;
    gap: 25px;
    list-style: none;
}

.pxl-menu__primary a {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

.pxl-menu__primary li:hover > a {
    color: #0073e6;
}
.elementor-element-right{
 display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* .sub-menu {
    display: none;
    position: absolute;
    background: #fff;
    padding: 10px 0;
    border: 1px solid #eee;
    list-style: none;
} */

/* .menu-item-has-children:hover .sub-menu {
    display: block;
} */

.elementor-button-pricing {
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 4px;
	  background-color: #fff;
}

/* .elementor-button:hover {
    background: #444 !important;
}  */

/*  ends here*/

h1.pxl-ptit__text {
    display: block !important;
}
#pxl-ptit__default {
    display: block !important;
}
h1.entry-title {
    display: block !important;
}


<!-- This is footer entire -->


<!-- This is Sign up form -->
/* --- Global Form Styling & Font Application --- */

/* Apply DM Sans Regular/Medium to all form elements */
.contact-form-container,
.contact-form-container input {
    font-family: 'DM Sans', sans-serif;
    color: #333333; /* Dark text for readability */
}

/* --- Section Spacing --- */

/* Add space between Name, Email, and Phone sections */
.contact-form-container .cf7-section {
    margin-bottom: 25px; /* Creates the distance between form groups */
}

/* --- Title Styling --- */

.contact-form-container .form-title {
    font-weight: 600; /* SemiBold for the main title */
    font-size: 24px;
    margin-bottom: 5px;
    color: #000000; /* Title color set to Black */
    text-align: center; /* Center the main title */
}

.contact-form-container .form-subtitle {
    font-weight: 500; /* Medium for subtitles */
    font-size: 14px;
    color: #666666;
    margin-top: 0;
    margin-bottom: 30px; /* Space below subtitle */
    text-align: center; /* Center the subtitle */
}

/* Removed: .contact-form-container .cf7-help-text styling */


/* --- Input Field Styling --- */

/* Style for all input fields (text, email, tel) */
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container .wpcf7-text,
.contact-form-container .wpcf7-email,
.contact-form-container .wpcf7-tel {
    /* Base styles for all inputs */
    width: 100%;
    padding: 15px 18px; /* Slightly increased padding for a larger field height */
    border: 1px solid #e0e0e0;
    border-radius: 8px; /* Rounded corners for input fields */
    font-weight: 400; /* Regular for input text (sharper feel) */
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.contact-form-container input::placeholder {
    color: #999999;
    font-weight: 400;
}

.contact-form-container input:focus {
    border-color: #555555; /* Darker border on focus */
    outline: none;
}

/* Removed: Layout for Name fields (First Name/Last Name side-by-side) */
/* .cf7-name-fields and related classes are no longer needed */


/* --- Submission Button Styling --- */

.contact-form-container .wpcf7-submit {
    /* Reset default button styling */
    cursor: pointer;

    /* Requested Button Style */
    background-color: #444444; /* Dark Grey background */
    color: #ffffff; /* White text */
    font-weight: 600; /* SemiBold */
    font-size: 18px;
    
    /* Padding */
    padding: 15px 30px; 
    
    /* Shape */
    border: none;
    border-radius: 12px; 
    
    /* Center the button */
    display: block;
    width: auto;
    max-width: 200px; 
    margin: 40px auto 10px auto; /* Increased top margin for space above the button */
    text-align: center;
    transition: background-color 0.3s;
}

.contact-form-container .wpcf7-submit:hover {
    background-color: #333333; /* Slightly darker on hover */
}

/* --- Mobile Responsiveness Adjustments (Max-width 600px) --- */
@media (max-width: 600px) {

    /* Force the main form container to use full width with internal padding */
    .contact-form-container {
        /* Prevents the form from being wider than the screen */
        width: 100% !important; 
        box-sizing: border-box; 
        padding: 0 15px; /* Add some padding on the sides for breathing room */
    }

    /* Ensure all input fields and the submit button use 100% of the available width */
    .contact-form-container input[type="text"],
    .contact-form-container input[type="email"],
    .contact-form-container input[type="tel"],
    .contact-form-container .wpcf7-text,
    .contact-form-container .wpcf7-email,
    .contact-form-container .wpcf7-tel,
    .contact-form-container .wpcf7-submit {
        width: 100% !important; /* Important: ensures they take full width */
        max-width: 100% !important; /* Override any potential max-width limitations */
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Ensure the submit button is center-aligned when it takes full width */
    .contact-form-container .wpcf7-submit {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Reduce spacing for a more compact mobile look */
    .contact-form-container .cf7-section {
        margin-bottom: 18px; 
    }
    
    .contact-form-container .form-title {
        font-size: 22px;
    }
    
    .contact-form-container .form-subtitle {
        margin-bottom: 20px;
    }
}
<!-- This is Sign up form -->


<!-- Footer Copyright-->


footer#pxl-footer-default {
    display: none !important;
}

/* Add spacing between all CF7 fields */
#new-signup .cf7-section {
    margin-bottom: 18px;
}

/* Section titles spacing */
#new-signup b {
    display: block;
    margin: 20px 0 10px;
    font-size: 18px;
}

.new-sign-form-container input::placeholder {
  color: #999999;
  font-weight: 400;
}

.new-sign-form-container .form-title {
    font-weight: 600; /* SemiBold for the main title */
    font-size: 24px;
    margin-bottom: 5px;
    color: #000000; /* Title color set to Black */
    text-align: center; /* Center the main title */
}

.new-sign-form-container .form-subtitle {
    font-weight: 600; /* SemiBold for the main title */
    font-size: 16px;
    margin-bottom: 5px;
    color: #000000; /* Title color set to Black */
    text-align: start; /* Center the main title */
}

.wpcf7-response-output {
	text-align:center;
}


/* Blog post heading font styles */
.single-post .pxl-post__content h1 {
    font-family: 'Poppins', sans-serif;
font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.8px;
	letter-spacing:0;
}

.single-post .pxl-post__content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
	letter-spacing:0;
}

.single-post .pxl-post__content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
	letter-spacing:0;
}

.single-post .pxl-post__content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.35;
	letter-spacing:0;
}



