@media (max-width: 768px) { /* Adjust this width as needed for your breakpoint */
    /* Targeting the "Contact Us" button in the side menu */
   .btn {
        background-color: #2D6B93 !important; /* Change button background color */
        color: #ffffff !important; /* Change text color */
        font-size: 16px !important; /* Adjust font size */
        padding: 12px 24px !important; /* Adjust padding */
        border-radius: 0px !important; /* Rounded corners */
        text-align: left !important;
     
    }

    /* Adjust styling for the text within the button */
    .btn span {
        color: #ffffff !important; /* Ensure text color stays white */
     
    }

    /* Hover effect */
    .btn:hover {
        background-color: #ffffff !important; /* Darker shade on hover */
        color: #000000 !important;
    }
	
	
	/* Target the LinkedIn icon to make it larger */
.fa-linkedin1 {
    font-size: 24px !important; /* Adjust the icon size */
    width: 24px !important; /* Set a custom width if needed */
    height: 24px !important; /* Set a custom height if needed */
}
}


	



/* Basic Styling for Contact Form 7 Labels */
.un
.wpcf7 label {
    display: block; /* Each label on a new line */
    margin-bottom: 10px; /* Space between fields */
    font-size: 16px; /* Label font size */
Z}

/* Styling for Input Fields, Select, and Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"]{
    width: 100%; /* Full width of the container */
    max-width: 100%; /* Prevents overflow */
	  box-sizing: border-box; /* Includes padding and border in width */
    padding: 12px; /* Inside padding */
    font-size: 16px; /* Text size */
    margin-top: 5px; /* Spacing from label */
    border: 1px solid #ccc; /* Border style */
    border-radius: 0px; /* Rounded corners */
}

/* Customize the Contact Form 7 Submit Button */
.wpcf7 input.wpcf7-submit {
    background-color: #2D6B93; /* Button background color */
    color: #ffffff; /* Button text color */
    font-size: 24px; /* Font size */
    padding: 12px 24px; /* Padding */
    border: none; /* Border style */
    border-radius: 0px; /* Rounded corners */
    cursor: pointer; /* Pointer on hover */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* Hover effect */
.wpcf7 input.wpcf7-submit:hover {
    background-color: #000000; /* Hover background color */

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"] {
        font-size: 14px; /* Adjust font size for smaller screens */
        padding: 10px; /* Smaller padding for mobile */
    }
	}

	
	