/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
}

header .social-info ul {
  list-style: none;
  text-align: right;
}

header .social-info ul li {
  display: inline-block;
  margin-left: 10px;
}

header .social-info ul li a {
  color: #333;
  font-size: 16px;
}

header .logo_part {
  text-align: center;
  margin-bottom: 20px;
}

header .main-menu .navbar-nav li a {
  font-size: 18px;
  text-transform: uppercase;
  color: #333;
}

header .main-menu .navbar-nav li a:hover {
  color: #0066cc;
}

header .main-menu .navbar-nav .dropdown-menu li a {
  font-size: 16px;
}

/* Breadcrumb */
.header-breadcrumb {
  background-color: #f1f1f1;
  padding: 20px 0;
}

.header-breadcrumb .breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
}

/* Blog Section */
.blog-posts {
  padding: 60px 0;
}

.blog-posts .section_header h1 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.blog-posts .section_header p {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

.blog-list {
  margin-top: 30px;
}

.blog-item {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.blog-item h2 {
  font-size: 22px;
  margin-top: 15px;
  color: #333;
}

.blog-item p {
  font-size: 16px;
  color: #777;
  margin: 10px 0;
}

.blog-item .read-more-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.blog-item .read-more-container .dots {
  font-size: 16px;
  color: #777;
}

.blog-item .read-more-container .btn-primary {
  background-color: #0066cc;
  color: #fff;
  border-radius: 5px;
  padding: 5px 15px;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 10px;
}

.blog-item .read-more-container .btn-primary:hover {
  background-color: #0057b7;
}


/* Emergency Contact Section */
.emergency-contact {
  background-color: #fff;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}

.emergency-contact .left-side {
  width: 50%;
}

.emergency-contact .right-side {
  width: 50%;
}

.emergency-contact .content h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.emergency-contact .phone,
.emergency-contact .email {
  display: inline-block;
  font-size: 18px;
  color: #0066cc;
  margin-top: 10px;
}

.emergency-contact .phone:hover,
.emergency-contact .email:hover {
  text-decoration: underline;
}

.emergency-contact img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Touch Section */
.touch .container {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.touch .section_header h2 {
  font-size: 36px;
  color: #333;
}

.touch .section_header p {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

.touch .input_form input,
.touch .input_form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.touch .input_form button {
  background-color: #0066cc;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

.touch .input_form button:hover {
  background-color: #0057b7;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.floating-buttons a {
  display: block;
  margin-bottom: 15px;
  background-color: #25d366;
  padding: 15px;
  border-radius: 50%;
}

.floating-buttons a img {
  width: 30px;
  height: 30px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
}

footer .footer-top {
  background-color: #444;
  padding: 40px 0;
}

footer .footer-sidebar .widget ul {
  list-style: none;
}

footer .footer-sidebar .widget ul li {
  margin-bottom: 10px;
}

footer .footer-sidebar .widget ul li a {
  color: #fff;
  font-size: 16px;
}

footer .footer-sidebar .widget ul li a:hover {
  text-decoration: underline;
}

footer .footer-sidebar .widget ul li i {
  margin-right: 10px;
}
