/* Special offer banner */
.special-offer-banner {
  background-color: rgb(4, 8, 66); /* Blue background */
  color: white; /* White text */
  padding: 10px 20px; /* Adjust padding as needed */
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  max-width: 600px; /* Adjust this value as needed */
  margin: auto; /* This will center the banner */
}
/* Base styling for the FAQ section */
.faq-section {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
}

/* Styling for the FAQ title */
.faq-title {
  text-align: center;
  margin: 0;
  padding: 20px 0;
}

/* Styling for each FAQ question */
.faq-question {
  cursor: pointer;
  background: #f8f9fa;
  margin-bottom: .5rem;
  padding: .75rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

/* Hover effect for FAQ questions */
.faq-question:hover {
  background: #e9ecef;
}

/* Styling for the dropdown arrow */
.dropdown-arrow {
  float: right;
  transition: transform 0.3s ease;
}

/* Styling for FAQ answers when hidden */
.faq-answer {
  display: none;
  padding: 0;
  border-top: none;
  background: none;
}

/* Style when answer is shown */
.faq-answer.show {
  display: block;
  padding: 1rem;
  border-top: 1px solid #ddd;
  background: #f8f9fa;
}

/* Flipped arrow when answer is shown */
.faq-question.show .dropdown-arrow {
  transform: rotate(180deg);
}

/* Responsive design adjustments */
@media (max-width: 767px) {
  .special-offer-banner {
    padding: 10px 20px;
    font-size: 1.2em;
  }

  .faq-question {
    font-size: 1.25em;
    padding: 15px;
  }

  .faq-section {
    padding: 1.5rem;
  }

  .dropdown-arrow {
    font-size: 1em;
  }
}


.page-section#hours {
  background-color: #f8f9fa; /* Replace with the color that fits your design */
  padding: 40px 0; /* Adjust the padding to your preference */
  text-align: center; /* Centers the text */
}

.business-hours h3 {
  color: #202fff; /* A color that matches your border or brand */
  margin-bottom: 20px; /* Adds some space below the heading */
  font-size: 24px; /* Adjust the size as needed */
  text-transform: uppercase; /* Optional style to make the heading stand out */
}

.business-hours p {
  color: #333; /* Dark grey color for the text, easier to read */
  font-size: 18px; /* Slightly larger font for better readability */
  margin-bottom: 10px; /* Adds space between the days for clarity */
}

/* Optional: Add a container around your business hours to limit the width */
.business-hours-container {
  max-width: 600px; /* Adjust as needed */
  margin: auto; /* This centers the container */
  padding: 0 15px; /* Adds some padding on the sides */
}



/* Main form container */
.contact-form-container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 540px;
  margin: 40px auto;
  transition: all 0.3s ease-in-out;
}

/* Special Offer Banner */
.special-offer-banner {
  text-align: center;
  background-color: #202fff;
  color: #ffffff;
  padding: 15px 0;
  border-radius: 8px;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 1.25rem;
}

/* Input and textarea fields */
.contact-form-container .form-control {
  border: 2px solid #eeeeee;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 5px;
  transition: border-color 0.3s ease-in-out;
  width: 100%; /* Adjust width for padding and border */
  font-size: 1rem;
}

.contact-form-container .form-control:focus {
  border-color: #202fff;
  box-shadow: 0 0 0 2px rgba(32, 47, 255, 0.2);
}

/* Style for the submit button */
.contact-form-container .submit-button {
  background-color: #202fff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  transition: background-color 0.3s ease-in-out;
}

.contact-form-container .submit-button:hover {
  background-color: #161d99;
}

/* Responsive adjustments for mobile view */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 25px; /* Reduced padding */
    max-width: 100%; /* Full width on small screens */
    margin: 20px auto; /* Reduced margin */
  }

  .special-offer-banner {
    padding: 10px 0; /* Reduced padding */
    margin-bottom: 20px; /* Reduced margin */
    font-size: 1rem; /* Smaller font size */
  }

  .contact-form-container .form-control,
  .contact-form-container .submit-button {
    padding: 10px; /* Reduced padding */
  }

  .contact-form-container .submit-button {
    padding: 12px 0; /* Adjusted padding for better tap target */
  }

  .contact-header {
    padding: 60px 0 10px; /* Reduced top padding */
  }

  .contact-header .section-heading {
    font-size: 1.5em; /* Smaller heading size */
  }
}

/* Contact header styles */
.contact-header {
  padding: 120px 0 10px;
  background-color: #f8f9fa;
  text-align: center;
  border-bottom: 2px solid #004085;
}

.contact-header .section-heading {
  color: #03162a;
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: bold;
}

/* Additional styles for animations and loading states are unchanged */


/* Additional styles for input focus animation */
.contact-form-container .form-control:focus {
  background-color: #f8f9fa;
  border-color: #0056b3;
}

/* Loading animation style for the button */
.contact-form-container .submit-button.is-loading {
  pointer-events: none; /* Disable button clicks while loading */
  opacity: 0.75;
  position: relative;
}

.contact-form-container .submit-button.is-loading:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: button-loading-spinner 1.2s linear infinite;
}

@keyframes button-loading-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0
;
}
to {
opacity: 1;
}
}

/* Fly-in from the left animation */
@keyframes flyInLeft {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

/* Applying the animations to the elements with a delay */
.contact-form-container .form-control,
.contact-form-container .submit-button {
animation: fadeIn 1s ease-in-out both;
}

.special-offer-banner {
animation: flyInLeft 1s ease-in-out both;
}

/* Delayed animation classes */
.animation-delay-1 {
animation-delay: 0.5s;
}

.animation-delay-2 {
animation-delay: 1s;
}

.animation-delay-3 {
animation-delay: 1.5s;
}

.animation-delay-4 {
animation-delay: 2s;
}

/* Ensure animation is applied on page load /
.contact-form-container,
.special-offer-banner {
opacity: 0; / Set to 0 to see the animation on page load */

  
.blog-header {
  padding: 0; /* Removes all padding */
  background-color: #f8f9fa; /* Keep your background color */
  text-align: center; /* Keep text aligned to the center */
  border-bottom: 2px solid #004085; /* Keep the bottom border for distinction */
}

.blog-header .section-heading {
  color: #03162a; /* Heading color */
  margin-bottom: 20px; /* Space below the heading */
  font-size: 2em; /* Heading size */
  font-weight: bold; /* Heading weight */
}

.section-subheading-contact {
  font-size: 16px;
  color: #333;
  margin-top: 5px; /* Adjust as needed */
}



