:root {
  --primary-color: #93262A;
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --light-text-color: #666;
  --link-hover-color: #93262A;
  --banner-margin-top: 50px;
  --font-family: "Fraunces", sans-serif;
  --font-weight: 500;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  word-spacing: 5px;
  text-transform: uppercase;
}

/* Navbar */
.dropdown-toggle::after {
  display: none;
}

.text-decoration-none {
  text-decoration: none !important;
}

.icon-width {
  width: 2rem;
}

.nav-link {
  color: var(--primary-color);
}

.navbar-nav .nav-link:hover {
  color: var(--link-hover-color);
}

/* Banner */
.banner {
  width: 100%;
  margin-top: var(--banner-margin-top);
}

.ban_img {
  width: 100%;
  position: relative;
}

.ban_img img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .ban_img img {
    min-height: 290px;
    object-fit: cover;
  }
}

/* Services */
h1 {
  text-align: center;
  color: var(--primary-color);
}

#services {
  background-color: rgb(248, 246, 243);
}

.img-thumbnail {
  max-width: 200px;
  max-height: 200px;
}

.image-hover:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#pdfViewer {
  width: 100%;
  height: 50px;
}

@media only screen and (max-width: 768px) {
  .modal-content {
    margin: 20px auto;
    width: 90%;
    max-width: none;
  }

  #pdfViewer {
    height: 50vh;
  }
}

/* About section */
.about-section {
  padding: 50px 0;
  text-align: left;
  background-color: var(--secondary-color);
}

.about-section h2 {
  color: var(--text-color);
}

.about-section p {
  color: var(--light-text-color);
}

@media (max-width: 767px) {
  .about-section {
    padding: 30px 0;
  }
}

/* Contact section */
.contact-section {
  padding: 50px 0;
  text-align: left;
  background-image: url('/img/img-bg-contact.jpg');
  background-size: cover;
}

.contact-section h2 {
  color: var(--text-color);
}

.contact-section p {
  color: var(--light-text-color);
}

.contact-section ul {
  list-style-type: none;
  padding: 0;
}

.contact-section ul li {
  margin-bottom: 10px;
}

.contact-section ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .contact-section {
    padding: 30px 0;
  }
}

/* Footer */
.footer-section {
  padding: 50px 0;
  text-align: left;
  background-color: #333;
  color: #fff;
}

.footer-section h3 {
  color: #fff;
}

.footer-section p {
  color: #ccc;
}

.social-icons {
  list-style-type: none;
  padding: 0;
}

.social-icons li {
  display: inline-block;
  margin-right: 10px;
}

.social-icons li:last-child {
  margin-right: 0;
}

.social-icons a {
  color: #fff;
}

.social-icons a:hover {
  color: var(--link-hover-color);
}

@media (max-width: 767px) {
  .footer-section {
    padding: 30px 0;
  }

  .social-icons li {
    margin-right: 8px;
  }
}

/* Fixed Icons */
.fixed-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.fixed-icons a {
  display: inline-block;
  margin-left: 10px;
  color: #ffffff;
  background-color: #007bff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.fixed-icons a:hover {
  background-color: #0062cc;
}

.fixed-icons a.whatsapp {
  background-color: #25d366;
}

.fixed-icons a.whatsapp:hover {
  background-color: #128c7e;
}

.fixed-icons a.call {
  background-color: #dc3545;
}

.fixed-icons a.call:hover {
  background-color: #c82333;
}

.fixed-icons a.email {
  background-color: #ffc107;
}

.fixed-icons a.email:hover {
  background-color: #e0a800;
}

/* Heading Styles */
h5 {
  color: #f77206;
}
