.btn {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: #B60B0B;
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  border: 1px solid #b60b0b00;
}

.btn-primary:hover {
  background-color: white;
  color: #B60B0B;
  border: 1px solid #B60B0B;
}

.btn-white {
  padding: 0.3rem 0.5rem;
  background: white;
  color: #3f4293;
  font-size: 15px;
  border-radius: 10px;
  outline: none;
}

.btn-white:hover {
  background-color: #f4efff;
}

.btn-custom {
  padding: 7px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  font-size: 13px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-weight: 700;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.4s ease-in;
}

.btn-custom span {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: 5px;
}

.btn-custom:hover {
  color: var(--primary-color);
  background-color: #fff;
}

.btn-consult {
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(75deg, #B60B0B, #000);
  font-size: 13px;
  color: white;
  border: 1px solid var(--primary-color);
  font-weight: 700;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.4s ease-in;
}

.btn-consult span {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: white;
  margin: 5px;
}

.btn-consult:hover {
  background: linear-gradient(45deg, #000, #B60B0B);
}

/* navbar */

.service-card .overlay .heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.service-card .overlay img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.service-card h5 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin: 0;
  /* color: #fff; */
}

.service-card p {
  font-size: clamp(0.875rem, 2vw, 0.8rem);
  margin: 0;
  display: none;
  /* color: #f1f1f1; */
  transition: all 0.4s ease-in-out;
}

.service-card:hover p {
  display: block;
}

/* .service-card:hover img {
  transform: scale(1.1);
} */
.btn-services {
  width: 130px;
  display: inline-flex;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  background: #232526;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #414345, #232526);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #414345, #232526);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: white;
}

/* sec-5 */
.five {
  background: linear-gradient(180deg, #fff1f1, #ffdede);
}

.hows-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hows-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hows-card .img-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hows-card .img-box0 {
  display: flex;
  justify-content: center;
  /* horizontally center */
  align-items: center;
  /* vertically center */
}

.hows-card .img-box0 img {
  width: 6vw;
  height: auto;
  display: block;
  object-fit: cover;
  margin-top: 2vh;
}

.hows-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.hows-card .details {
  padding: 1.5rem;
  flex-grow: 1;
}

.hows-card p {
  font-size: 0.9rem;
}

/* product sec */
.bg-light-gray {
  background-color: #f1f1f179;
}

.product-card {
  width: 100%;
  height: 19rem;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.product-card p {
  font-weight: 500;
  font-size: 1rem;
  color: #333333;
  margin: 0;
}

.pro-det {
  background-color: #fddbdb5d;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  flex-direction: column;
  border-radius: 10px;
  /* border-top: 1px solid rgb(197, 197, 197); */
}

.pro-det p {
  font-size: 0.8rem;
}

/* sec-6 */
.bg-sky {
  background-color: #529af828;
}

.state-card {
  width: 15rem;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;

  flex-direction: column;
  background: linear-gradient(115deg, #ffffff, #529af854);
  border-radius: 10px;
  margin: 10px;
  transition: all 0.5s ease-in-out;
}

.state-card:hover {
  scale: 0.9;
}

/* sec-8 */
.bg-dark-sky {
  background-image: radial-gradient(circle 1588px at -27.3% 144%, rgb(105, 1, 1) 0%, rgba(0, 0, 0, 1) 43.4%, rgba(0, 0, 0, 1) 65.8%, rgba(255, 22, 22, 1) 100.2%);
}

.eight .heading h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.eight .heading p {
  font-size: clamp(1rem, 0.8vw + 0.5rem, 1.2rem);
  color: #fff;
  font-weight: 600;
}

.btn-ad {
  background-color: #fff;
  color: #9e0606;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  /* box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2); */
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
  min-width: 180px;
  text-align: center;
}

.btn-ad:hover {
  background-color: #9e0606;
  color: #fff;
}

.adv-img img.ad-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.adv-img:hover img.ad-img {
  transform: scale(1.05);
}


/* sec-9 */

.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border: none !important;
  --bs-accordion-btn-focus-border-color: none;
  --bs-accordion-active-color: inherit;
  --bs-accordion-active-bg: transparent;
}

.accordion-button {
  padding: 1rem 0.5rem !important;
  border-bottom: 2px solid #9e0606 !important;
}

.accordion-button p {
  margin-bottom: 0px !important;
}

.accordion-item {
  border: none !important;
  background-color: transparent;
}

.accordion-button {
  border: none;
  background-color: transparent;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  border: none;
  background-color: transparent;
  box-shadow: none !important;
}

.accordion-button:focus {
  border: none;
  box-shadow: none !important;
}

.accordion-collapse {
  border: none !important;
}

.accordion-body {
  padding: 15px 0;
  border: none !important;
}

.ad-img-2 {
  height: auto;
  width: 200px;
}

/* footer */
.bg-footer {
  background-color: #000;
}

.footer-inner-bg {
  background-color: #c6d9f11a;
}

footer ul {
  padding-left: 0rem;
}

footer ul li {
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  /* padding-left: 20px; */
  /* Space for the SVG icon */
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Optional: Hover effect on the text color */
footer ul li:hover span {
  color: #d3d3d3;
  /* Change text color on hover */
}

.footer-bottom p {
  margin-bottom: 0rem !important;
  font-weight: 600;
}

.footer-bottom p:hover {
  color: #9e0606;
}

/* scroll to top */
/* srool to top */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #043B71;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  z-index: 23;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #084e94;
  /* Darker red on hover */
  transform: translateY(-2px);
}

.scroll-to-top:focus {
  outline: none;
}

.modal-content {
  background: #ffeeee;
  backdrop-filter: blur(8px);
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
}

/* about Page  */
.v-card {
  display: flex;
  padding: 1.5rem;
  justify-content: start;
  /* align-items: center; */
  flex-direction: column;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  background: #f857a6;
  /* fallback for old browsers */
  background: linear-gradient(to right, #ffd6da3d, #ffe1f036);

}

.icon-heading {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.icon-heading img {
  height: 4rem;
  width: 4rem;
  margin-right: 10px;
}

.icon-heading h3 {
  font-size: 1.5rem;
}

/* contact us  */
.mail-div,
.con-div {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  flex-direction: column;
  background: #ffe2e6a1;
  padding: 0rem 1.5rem;
  margin: 10px;
  /* height: 200px; */
  border-radius: 10px;
}

.m-detail,
.cont-detail {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.m-detail span img,
.cont-detail span img {
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

.m-detail p a,
.cont-detail p a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: black;
}

.m-detail p a:hover {
  color: #a3032b;
}

.bg-gradient-con {
  background: linear-gradient(180deg, #fff, #dac9ff);
}

.bg-light-red-gradient {
  background: linear-gradient(180deg, #fff, #ffd2d0c2);
}

.map iframe {
  border-radius: 10px;
}


/* Media Query */

@media screen and (max-width: 600px) {
  /* section 1 */

  .banner {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .btn-custom {
    padding: 4px 8px;
  }

  .sec-pad {
    padding: 1rem;
  }

  .nav-img {
    width: auto;
    height: 50px;
  }

  .top-contact img {
    width: 20px;
    height: 20px;
    /* margin: 5px; */
  }

  .top-social-media a img {
    width: 20px;
    height: 20px;
  }

  .top-contact p {
    display: none;
    content: none;
  }

  .nav-top {
    border-bottom: 2px solid #1b6aa8;
    display: flex;
    justify-content: space-between;
  }

  .form-box {
    width: 100%;
  }

  .ban-aero {
    height: auto;
    width: 50px;
    position: absolute;
    right: 5px;
    top: -46px;
    z-index: -1;
  }

  .btn-ad {
    width: 100%;
  }

  .eight .heading h2 {
    font-size: 1.5rem;
  }

  .eight .heading p {
    font-size: 1rem;
  }

  .adv-img {
    margin-top: 1rem;
  }

  p {
    font-size: 0.9rem;
  }

  /* map */
  .map {
    width: 100vw;
    height: auto;
  }

  .map iframe {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .form-box {
    width: 100%;
  }

  .eight .heading h2,
  .eight .heading p {
    text-align: center;
  }

  .eight .d-flex.mt-4 {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-ad {
    width: 80%;
    text-align: center;
  }

  .adv-img {
    margin-top: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .form-box {
    width: 80%;
  }
}

#loader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
}



.signal-about-section {padding:70px 0; background:#fff;}
.signal-products-section {padding:70px 0; background:#f7f7f7;}
.signal-contact-section {padding:70px 0; background:#fff;}
.section-heading {text-align:center; margin-bottom:45px;}
.section-heading h2 {position:relative; display:inline-block; margin:0; padding-bottom:15px; font-size:34px; font-weight:700; color:#222; text-transform:uppercase;}
.section-heading h2:after {content:""; position:absolute; left:50%; bottom:0; width:55px; height:3px; background:#d90404; transform:translateX(-50%);}
.section-heading span {display:none;}
.signal-content {max-width:1100px; margin:auto;}
.signal-content p {margin:0 0 18px; font-size:16px; line-height:1.75; color:#555; text-align:justify;}
.signal-content h3 {margin:30px 0 15px; font-size:22px; font-weight:700; color:#222;}
.signal-content ul {margin:10px 0 25px; padding-left:25px;}
.signal-content ul li {margin-bottom:10px;font-size:16px; line-height:1.6; color:#555;}
.product-row {row-gap:30px;}
.product-card {background:#fff; padding:15px; border-radius:8px; box-shadow:0 5px 25px rgba(0,0,0,.08); transition:.3s; height:100%;}
.product-card:hover {transform:translateY(-7px); box-shadow:0 12px 30px rgba(0,0,0,.14);}
.product-image {width:100%; height:250px; display:flex; align-items:center; justify-content:center; overflow:hidden; background:#fff; border-radius:5px;}
.product-image img {width:225px; height:225px; max-width:100%; object-fit:contain; transition:.4s;}
.product-card:hover .product-image img {transform:scale(1.05);}
.product-line {width:45px; height:3px; background:#d90404; margin:15px auto 5px;}
.contact-row {align-items:stretch;}
.contact-form-box,
.contact-info-box {height:100%; padding:30px; background:#fff; border:1px solid #eee; border-radius:8px; box-shadow:0 8px 30px rgba(0,0,0,.07);}
.fa-phone:before {content:"\f095"; transform:rotate(92deg);}

.contact-form-box h3,
.contact-info-box h3 {margin:0 0 25px; font-size:24px; font-weight:700; color:#222;}
.form-group {margin-bottom:20px;}
.form-group label {display:block; margin-bottom:8px; font-size:15px; font-weight:600; color:#333;}
.form-group input,
.form-group textarea {width:100%; padding:13px 15px; border:1px solid #ddd; border-radius:4px; outline:none; font-size:15px; color:#333; background:#fff; transition:.3s;}
.form-group input:focus,
.form-group textarea:focus {border-color:#d90404; box-shadow:0 0 0 3px rgba(217,4,4,.08);}
.form-group textarea {height:130px; resize:vertical;}
.contact-form-box button {border:0; padding:13px 28px; background:#d90404; color:#fff; font-size:15px; font-weight:600; border-radius:4px; cursor:pointer; transition:.3s;}
.contact-form-box button:hover {background:#a80000;}
.map-box {width:100%; height:280px; overflow:hidden; border-radius:6px; margin-bottom:25px;}
.map-box iframe {width:100%; height:100%; border:0;}
.address-box {padding-top:5px;}
.address-box h3 {font-size:21px; margin-bottom:20px;}
.address-box ul {padding:0; margin:0; list-style:none;}
.address-box ul li {display:flex; align-items:flex-start; gap:12px; margin-bottom:17px; color:#555; font-size:15px; line-height:1.6;}
.address-box ul li span {width:32px; height:32px; min-width:32px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:#d90404; color:#fff; font-size:14px;}
.address-box ul li a {color:#555; text-decoration:none; transition:.3s;}
.address-box ul li a:hover {color:#d90404;}

@media (max-width:991px) {
	.signal-about-section,
	.signal-products-section,
	.signal-contact-section {padding:50px 0;}
	.section-heading h2 {font-size:30px;}
	.contact-form-box {margin-bottom:30px;}
}

@media (max-width:767px) {
	.signal-about-section,
	.signal-products-section,
	.signal-contact-section {padding:40px 0;}
	.section-heading {margin-bottom:30px;}
	.section-heading h2 {font-size:25px;}
	.signal-content p,
	.signal-content ul li {font-size:15px;}
	.signal-content h3 {font-size:20px;}
	.product-image {height:230px;}
	.contact-form-box,
	.contact-info-box {padding:20px;}
}

@media (max-width:575px) {
	.section-heading h2 {font-size:22px;}
	.product-card {padding:10px;}
	.product-image {height:220px;}
	.contact-form-box,
	.contact-info-box {padding:18px;}
	.map-box {height:240px;}
}



.product-card img {height:220px; object-fit:contain; background:#fff; padding:10px;}
.product-card {border-radius:12px; transition:0.3s; border:1px solid #eee;}
.product-card:hover {transform:translateY(-5px); box-shadow:0 8px 20px rgba(0,0,0,0.15) !important;}
.product-content h6 {font-size:18px; font-weight:600; padding-bottom:8px; color:#000;}
.product-content p {font-size:16px; font-weight:400; padding-bottom:8px; color:#444;}
