/* General Styling */
.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
  font-weight: 600;
}

.field input {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.field textarea {
    width: 100%;
    height: 20vh;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    resize: none;  /* Prevents resizing of the textarea */
    overflow-y: auto;  /* Ensures scrolling happens only vertically if the content overflows */
    line-height: 1.5;  /* Adds space between lines of text */
    display: block;
    margin-top: 5px;
}

/* Focus Effect */
.field textarea:focus {
    border-color: #4460AA;
    outline: none;
    box-shadow: 0 0 5px rgba(68, 96, 170, 0.5);
}


/* Focus Effect */
.field input:focus {
  border-color: #4460AA;
  outline: none;
  box-shadow: 0 0 5px rgba(68, 96, 170, 0.5);
}

/* Submit Button */
input[type="submit"] {
  display: block;
  padding: 10px 30px;
  font-size: 16px;
  background-color: #4460AA;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Submit Button Hover Effect */
input[type="submit"]:hover {
  background-color: #365b8a;
  transform: scale(1.05);
}

h1, h2, h3, h4 {
    color: #2a2a2a; /* Darker color for headings */
}

/* Fixed navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Ensures the navbar takes full width */
    z-index: 9999; /* Makes sure the navbar stays on top of other elements */
background: #34495e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}

/* Adds top margin to the rest of the page so the content doesn't hide behind the navbar */
body {
    padding-top: 70px; /* Adjust this value if your navbar height is different */
}

.navbar-brand img {
    height: 50px; /* Logo size */
    margin-right: 15px;
}

.navbar-caption {
    font-size: 1.5em;
    color: #fff; /* White text for the caption */
}

.navbar-toggler {
    border: none;
}

.navbar-nav .nav-item .nav-link {
    color: #fff; /* White text for navbar links */
    padding: 10px 20px;
}

.navbar-nav .nav-item .nav-link:hover {
    background-color: #555; /* Darker background on hover */
}

/* Header section styling */
.header5 {
    background-image: url("\assets\images\bw.jpg");
    color: white;
    text-align: center;
    padding: 80px 0; /* Increase padding for a larger header */
    width: 100%; /* Full width */
    box-sizing: border-box; /* Ensure padding doesn't affect the width */
}

/* Make sure the header content is responsive */
.header5 h1 {
    font-size: 3.5em; /* Larger text for desktop */
    margin-bottom: 15px;
}

.header5 h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* Make the text responsive and shrink on smaller screens */
@media (max-width: 768px) {
    .header5 {
        padding: 60px 0; /* Reduce padding on mobile */
    }

    .header5 h1 {
        font-size: 2.5em; /* Shrink the title text on mobile */
    }

    .header5 h2 {
        font-size: 1.5em; /* Shrink the subtitle text on mobile */
    }
}


/* Features sections */
.features1 {
    background-color: #34495e; /* Light gray background for features */
    color: #333;
}

.features1 .mbr-section-title {
    font-size: 2em;
    color: #0f0f0f; /* black titles color for titles */
    margin-bottom: 20px;
}

.features1 .mbr-text {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Testimonials section */
.testimonials1 {
    background-color: #fff; /* White background for testimonials */
    color: #333;
}

.testimonials-item {
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

.testimonials-item .user_name {
    font-weight: bold;
    color: #0F0F0F; /* Blue color for user name */
}

.testimonials-item .user_text {
    font-style: italic;
}

/* Pricing section */
.pricing-table1 {
    background-color: #a58555; /* Very light gray for pricing */
}

.pricing-table1 .table-wrapper {
    background-color: #fff; /* White background for each pricing block */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.pricing-table1 .table-heading {
    background-color: #2980b9; /* Blue background for table headings */
    color: white;
    padding: 10px;
    font-size: 1.2em;
}

.pricing-table1 .pricing-value {
    font-size: 2em;
    font-weight: bold;
    color: #e74c3c; /* Red color for prices */
}

.pricing-table1 .list-group {
    padding: 15px;
    font-size: 1.1em;
}

.pricing-table1 .btn-primary {
    background-color: #2980b9; /* Blue button background */
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
}

.pricing-table1 .btn-primary:hover {
    background-color: #1abc9c; /* Teal color on hover */
}

/* Contact section */
.maps1 {
    background-color: #a58555; /* Light gray background */
    color: #333;
}

.maps1 .form-title {
    font-size: 2.5em;
    color: #2c3e50;
}

.maps1 .form-text {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.maps1 .form-control {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.maps1 .btn-form {
    background-color: #2980b9;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
}

.maps1 .btn-form:hover {
    background-color: #1abc9c;
}

/* Footer section */
.footer2 {
    background-color: #34495e; /* Dark gray background for footer */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer2 .mbr-text {
    font-size: 1.1em;
}

/* Optional: Style the images within the carousel */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensures the square images maintain their aspect ratio and cover the area */
border-radius: 5px;
}
