/* Modal Container */
.form-label {
  font-size: 13px;
}

input[type="date"] {
  padding-top: 6px;
  padding-bottom: 6px;
}

:root {
  --red: #e63946;
  --dark: #1a1a1a;
  --transition: all 0.3s ease;
}

/* === Top Bar === */
.top-bar {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
}

/* === Header === */
header.header {
  background-color: #fff;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.logo img {
  height: 55px;
  transition: var(--transition);
}

/* === Nav Links === */
.nav-link {
  color: var(--dark);
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--red);
  bottom: -4px;
  left: 0;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* === Dropdown === */
.explore {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  min-width: 220px;
}

.dropdown:hover .explore {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}

/* === Button === */
.btn-quote {
  background-color: var(--red);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.btn-quote:hover {
  background-color: #c52833;
  box-shadow: 0 3px 10px rgba(230, 57, 70, 0.4);
}

/* === Mobile View === */
@media (max-width: 768px) {
  .containerboss {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo img {
    height: 45px;
  }

  #mobileMenuBtn {
    border-color: var(--red);
    color: var(--red);
    background: none;
    margin-left: auto;
  }

  #mobileMenuBtn:hover {
    background: var(--red);
    color: #fff;
  }

  .mobile-menu {
    top: 70px;
    right: 10px;
    width: 240px;
    z-index: 999;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .social-icons {
    justify-content: center !important;
    text-align: center;
    width: 100%;
  }
}

/* ================================
   QUOTE MODAL – 10% COMPRESSION
================================ */

/* Keep width good */
.modal-dialog {
  max-width: 380px;
  height: 80%;
}

/* Modal container */
.quote-modal-compact {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}

/* Header – slightly tighter */
.quote-header-compact {
  background: linear-gradient(135deg, #ffb703, #ff6b81);
  padding: 10px 16px;
  /* compressed */
}

.quote-header-compact h6 {
  font-size: 16px;
}

.quote-header-compact small {
  font-size: 12px;
}

/* Body padding reduced ~10% */
.modal-body {
  padding: 14px !important;
}

/* Form section */
.form-section-compact {
  background: #f9fafb;
  padding: 12px;
  border-radius: 12px;
}

/* Inputs & selects */
.form-control-sm,
.form-select-sm {
  font-size: 13.5px;
  padding: 6px 10px;
}

/* Floating labels */
.form-floating>label {
  font-size: 12.5px;
  padding: 6px 10px;
}

/* Textarea height reduced slightly */
textarea.form-control-sm {
  min-height: 80px;
}

/* Submit button */
.btn-submit-compact {
  background: linear-gradient(135deg, #ffb703, #ff6b81);
  color: #fff;
  font-size: 13.5px;
  padding: 6px 24px;
  border: none;
  transition: all 0.25s ease;
  width: 50%;
}

.btn-submit-compact:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
  color: white;
}

/* ================================
   RESPONSIVE SAFETY
================================ */

@media (max-width: 576px) {
  .modal-dialog {
    margin: 10px;
  }

  .btn-submit-compact {
    width: 100%;
  }
}


@font-face {
  font-family: "Avenir-Small";
  src: url("../fonts/AvenirLTStd-Book.otf") format("opentype");
}

@font-face {
  font-family: "Avenir-Medium";
  src: url("../fonts/AvenirLTStd-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Avenir-Bold";
  src: url("../fonts/AvenirLTStd-Black.otf") format("opentype");
}

h1 {
  font-size: 50px;
  font-family: "Avenir-Bold", sans-serif;
}

h2,
h3,
h4,
h5,
h6,
strong {
  font-family: "Avenir-Medium", sans-serif;
}

p,
span,
strong,
a,
li {
  font-size: 14px;
}

:root {
  --primary: #FF5E14;
  --secondary: #cdf38b;
  --black: #000000;
  --light-primary: #e3edff;
  --gray: #5f5f5f;
  --light-gray: #dadada;
  --orange: #ff5000;
  --red: #e61111;
  --white: #ffffff;
  --darkish: linear-gradient(var(--gray), #696969);
  --background: linear-gradient(var(--primary), #eceff0);
  --secondry-background: linear-gradient(var(--secondary), #70c08b);
}

.orange {
  color: var(--orange);
}

.background {
  background-image: var(--background);
}

i,
:before,
:after {
  font-family: "FontAwesome";
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-image: var(--background);
}

::-webkit-scrollbar-track {
  background: var(--light-primary);
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
}

input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input:focus-visible {
  outline: none;
}

* {
  transition-duration: 0.3s;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding-top: 70px;
  font-family: "Avenir-Small", sans-serif;
}

.containerboss {
  width: 90%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: var(--primary);
  cursor: pointer;
}

img {
  max-width: 100%;
  max-height: 100%;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

button {
  outline: none;
}

.rounded {
  border-radius: 3px !important;
}

label {
  cursor: pointer;
}

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

.form-control {
  border-radius: 3px !important;
  position: relative;
}

.form-select:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
}

form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(100%);
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 2;
}

.proper-background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.heading {
  position: relative;
  padding-bottom: 15px !important;
  display: flex;
  justify-content: center;
}


.heading:before {
  content: "";
  position: absolute;
  width: 60px;
  bottom: 5px;
  border-radius: 4px;
  border: 2px solid;
}

button.primary-button {
  padding: 8px 40px;
  border: none;
  border-radius: 3px;
  position: relative;
  background-color: transparent;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

button.primary-button:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  z-index: -2;
}

button.primary-button:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-radius: 100px;
  background-color: rgb(0, 0, 0);
  z-index: -1;
  transition-duration: .3s;
}

button.primary-button:hover {
  color: white;
}

button.primary-button:hover:after {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition-duration: .3s;
}

.sticky-button {
  position: sticky;
  top: 100px;
}

/* ***************carosol******************* */
.owl-carousel {
  z-index: 0;
}

.owl-dots {
  display: none;
}

.show-dots {
  padding-bottom: 30px;
}

/* .show-dots .owl-dots {
  display: flex;
  justify-content: center;
  padding: 10px;
  bottom: 0;
  position: absolute;
  width: 100%;
} */

.owl-dots button {
  width: 10px;
  height: 10px;
  margin: 0px 4px;
  background-color: var(--primary) !important;
  border-radius: 10px;
  opacity: 0.5;
}

.owl-dots button.active {
  width: 20px;
  opacity: 1;
}

.show-nav {
  display: flex !important;
  align-items: center;
}

.show-nav .owl-nav {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  left: 0;
}

.show-nav .owl-nav button {
  width: 50px;
  height: 50px;
  background-image: var(--background) !important;
  color: var(--white) !important;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-nav .owl-nav button:hover {
  opacity: 1;
}

.show-nav .owl-nav button.owl-prev {
  border-radius: 52px;
  border-bottom-left-radius: 0;
  left: -50px;
  position: absolute;
  transform: rotate(45deg);
}

.show-nav .owl-nav button.owl-prev span {
  transform: rotate(-45deg);
}

.show-nav .owl-nav button.owl-next {
  border-radius: 52px;
  border-bottom-right-radius: 0;
  right: -50px;
  position: absolute;
  transform: rotate(-45deg);
}

.show-nav .owl-nav button.owl-next span {
  transform: rotate(45deg);
}

.show-nav .owl-nav button span {
  font-size: 40px;
  position: relative;
  bottom: 2px;
}

/* ***************carosol******************* */
/* ***************popup******************* */
.popup {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
}

.popup form {
  max-height: 80vh;
  overflow-x: hidden;
}

.popup.open {
  display: flex;
}

.popup .popupcard {
  background-color: var(--white);
  z-index: 4;
}

.popup .close-button {
  position: absolute;
  right: -11px;
  top: -13px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: var(--white);
  background-color: var(--bs-danger);
  border-radius: 4px;
}

.popup .popupbg {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #000000af;
}

.popup h5 {
  font-family: "Avenir-Bold", sans-serif;
}

.popup .fs-5 {
  font-family: "Avenir-Bold", sans-serif;
}

.popup small {
  color: var(--gray);
  font-size: 12px;
}

/* ***************popup******************* */
/* ***************content******************* */
.content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-family: 'Segoe UI', sans-serif;
  margin: 10px 0;
  padding: 5px;
}

.content p {
  font-size: 16px;
  margin-bottom: 15px;
  padding: 5px;
}

.content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
}

.content ul,
.content ol {
  padding: 5px;
}

.content li {
  margin-bottom: 5px;
  position: relative;
  display: flex;
  padding-left: 30px;
}

.content li:before {
  content: "\f101";
  position: absolute;
  width: 30px;
  text-align: center;
  left: 0;
  color: var(--primary);
}

.content img {
  width: 100%;
  height: auto;
  margin: 15px 0;
  padding: 5px;
  border-radius: 20px;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  max-width: 100%;
  padding-bottom: 10px;
}



.content th,
.content td {
  padding: 10px;
  text-align: left;
  white-space: nowrap;
  font-size: 15px;
  border: 1px solid #bdc3c7;
}

/* ***************content******************* */