* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}
:root {
  --primary-color: #e79d68;
}

.my-header {
  background-color: #ffffff;
}

.img-fluid {
  width: 100%;
}
.my-topbar {
  background-color: var(--primary-color);
  padding: 10px 0;
  color: white;
  font-weight: 600;
  width: 100%;
}
.my-topbar img {
  height: 30px;
  border: 2px solid white;
  border-radius: 300px;
  padding: 4px;
}
.navbar-nav li a {
  color: var(--primary-color);
  font-size: 1.1rem;
}
.navbar-nav li a:hover {
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
}
.nav-icons a i {
  color: white;
  transition: all 0.1s ease-in-out;
}
.logo {
  height: 80px;
  object-fit: cover;
}
.nav-icons a i:hover {
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  padding: 5px;
}

.hero-section {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-section video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.6)
  ); /* Linear gradient with black overlay */
  z-index: 1;
}

.hero-section .caption {
  position: absolute;
  background: conic-gradient(#e79d68, #ff9f68, #e79d68);

  /* Adding a subtle gradient */
  color: white;
  padding: 1.5em;
  bottom: 2em;
  /* font-size: 40px; */
  min-width: 40%;
  max-width: 80%;
  border-radius: 0 2em 2em 0;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Adding a shadow for more depth */
}

.hero-section .caption h1 {
  font-size: 35px;
}

/* about-section  */
.about-section h5 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
}

.about-section .btn-blue {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: var(--primary-color); /* Blue color */
  color: white;
  text-align: center;
  text-decoration: none; /* Remove underline */
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-blue:hover {
  background-color: var(--primary-color); /* Darker blue on hover */
  transform: translateY(-2px); /* Subtle hover effect */
}

/* trusted brands  */
.trusted-brands {
  overflow-x: hidden;
}
.trusted-brands .section-title {
  text-align: center;
  font-weight: 800;
  font-size: 3rem;
}
.marquee-item img {
  height: 180px;
  width: 100px;

  margin-bottom: 20px;
  padding: 40px 0;
}

.marquee-container {
  display: flex;
  position: relative;
  white-space: nowrap;
  animation: scroll-marquee 12s linear infinite;
}

.marquee-inner {
  display: inline-flex;
  gap: 50px; /* Space between items */
}

.marquee-item {
  line-height: normal;
  width: auto;
  font-size: 75px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  -webkit-text-stroke: 1px var(--primary-color);
  -webkit-text-fill-color: transparent;

  margin: 0;
  padding: 0;
}

.marquee-star {
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  color: var(--primary-color);
  font-size: 75px;
  font-weight: 800;
}

.marquee-container {
  display: flex;
  animation: scroll-marquee2 20s linear infinite;
}

/* Keyframe Animation for Scrolling */
@keyframes scroll-marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-marquee2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

/* latest tools  */

.latest-tool .thumbnail {
  display: block;
  width: 100%;
  border-radius: 0.5em 0.5em 0 0;
  background-position: center;
  background-size: cover;
  height: 18em;
  object-fit: cover;
  background-color: red;
}
.latest-tool {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.latest-tool h2 {
  text-align: center;
  font-weight: 800;
  font-size: 2.5em;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.toolbox-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.toolbox-item:hover {
  transform: translateY(-5px);
}

.thumbnail {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.toolbox-item a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #333;
}

.toolbox-item .title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.toolbox-item .title:hover {
  color: var(--primary-color);
}

.toolbox-item .date {
  font-size: 0.9em;
  color: #777;
}

.toolbox-item .preview {
  font-size: 1em;
  color: #555;
  margin-top: 10px;
}

/* @media (max-width: 768px) {
  .toolbox-item {
    margin-bottom: 20px;
  }
} */

/* location banner  */

.cta {
  background: #383838; /* Blue gradient */
  color: white;
  text-align: center;
  padding: 50px 20px;
  /* border-radius: 10px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.cta .button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 25px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.cta .button:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta {
    padding: 40px 15px;
  }
  .cta h2 {
    font-size: 1.8em;
  }
  .cta p {
    font-size: 1em;
  }
  .cta .button {
    font-size: 1em;
    padding: 10px 20px;
  }
}

/* footer section  */

.footer-main {
  background: conic-gradient(#e79d68, #ff9f68, #e79d68);

  padding: 40px 0 0 0;
  color: white;
}
.footer-main a {
  color: white;
  text-decoration: none;
}
.footer-main h5 {
  font-size: 3rem;
}

footer ul,
ol li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bootom-footer li a {
  color: rgb(255 255 255 / 49%);
}
.bootom-footer li a:hover {
  color: white;
}
.bootom-footer p {
  color: rgb(255 255 255 / 49%);
  font-size: 14px;
}
.bootom-footer p a {
  color: rgb(255 255 255 / 49%);
}
.bootom-footer p a:hover {
  color: white;
}

.footer-links {
  padding: 20px 0;
}

.footer-links p {
  border-bottom: 1px solid rgb(255 255 255 / 49%);
  color: white;
  padding-bottom: 24px;
}

.footer-links .footer-map {
  object-fit: cover;
}

.footer-links button {
  background: rgb(255 255 255 / 49%);
  color: black;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
}

.footer-links i {
  color: rgb(255 255 255 / 49%);
  font-size: 14px;
}

.footer-links img {
  height: 76px;
  filter: brightness(0) invert(1);
}

.footer-links h6 {
  font-size: 1.5rem;
  padding: 15px 0;
  color: white;
}

.recent-post-content-footer {
  color: rgb(255 255 255 / 49%);
}
.footer-links ul li {
  margin: 10px 0;
}
.footer-contectNo {
  font-size: 1rem;
  /* font-weight: 600; */
}
.footerMail a {
  text-decoration: none;
}

/* about */
.header {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0683a;
  color: white;
}

.header__content {
  padding: 20px;
  z-index: 2;
}

.header__title {
  font-size: 2em;
  margin-bottom: 10px;
}

.nav {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav__item {
  display: inline;
}

.nav__link {
  text-decoration: none;
  color: white;
  font-size: 1em;
  transition: color 0.3s;
}

.nav__link:hover {
  color: lightgray;
}

.header__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: 1;
}

.section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
  width: 100%;
  height: 450px;
  /* padding: 80px 0 40px; */
  color: black;
  margin-bottom: 80px;
}

.section-bg {
  background-color: #d1d1d1;
  padding: 30px 0;
  margin-bottom: 80px;
}

.section__image {
  width: 50%;
  min-height: 100%; /* Allow image to scale */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section__content {
  width: 50%;
  min-height: 450px;
  display: flex;
  text-align: justify;
  flex-direction: column;
  justify-content: center;
}

.section__title {
  font-size: 1.7em;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--primary-color);
}

.section__text {
  font-size: 1em;
  line-height: 1.5;
}
/* gallery */
.gallery-section {
  padding: 0 0 60px;
  /* background: #f8f9fa; */
  text-align: center;
}

.gallery-section h2 {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: bold;
}
.product-section {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: bold;
  padding: 60px 0;
}
.gallery-section p {
  color: #6c757d;
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-img {
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.gallery-img h1 {
  color: var(--primary-color);
  font-size: 1.8em;
}

.gallery-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.gallery-img:hover img {
  transform: scale(1.05);
}

/* contact */
.contact_area {
  padding: 80px 0;
  position: relative;
  background-color: #f9f9f9;
}

.section_title h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section_title h1 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.section_title p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact_main_info {
  margin-top: 30px;
}

.call-do-action-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.call-do-action-info:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.call-do-social_icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  margin-right: 15px;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.call-do-action-info:hover .call-do-social_icon {
  background: #b53e1f;
  transform: rotate(10deg);
}

.call_info p {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

.my-topbar a {
  text-decoration: none;
  color: white;
}

.call_info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

.call_info a {
  color:black;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.call_info a:hover {
  color: #b53e1f;
}

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-box h4 {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-form-box h1 {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
}

.form-box {
  margin-bottom: 15px;
  position: relative;
}

.form-box input,
.form-box textarea,
.form-box select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.form-box input:focus,
.form-box textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0px 0px 8px rgba(40, 167, 69, 0.5);
  outline: none;
}

.form-box textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
  width: 100%;
}

.contact-form button:hover {
  background: #ff9f68;
  transform: translateY(-3px);
}

.contact-form button i {
  margin-right: 8px;
}

.dance2 {
  -webkit-animation: dance2 4s alternate infinite;
  animation: dance2 4s alternate infinite;
}

@keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }

  50% {
    -webkit-transform: translate3d(25px, -25px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -25px, 25px);
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  width: 100%;
}

/* Product Card */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 5000px;
  width: 100%;
}

/* Product Card */
.product-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.product-card:hover {
  transform: scale(1.05);
}

/* Image Container */
.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Overlay Effect */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease-in-out;
}

.overlay h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.product-card:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
}

.product-card:hover .overlay h2 {
  opacity: 1;
}

/* Bottom Section with Opacity */
.product-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent */
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
}

.service-card .left-col-service {
  visibility: hidden;
  position: absolute;
}

.service-card {
  padding: 90px 0;
}

.service-card .left-col {
  position: sticky; /* Enables sticky positioning */
  top: 20px; /* Distance from the top of the viewport */
  align-self: flex-start; /* Ensures proper alignment within a flex container */
  height: fit-content; /* Ensures it adjusts to the content size */
  padding-left: 15px;
}

.service-card .left-col-data {
  position: sticky; /* Enables sticky positioning */
  top: 20px; /* Distance from the top of the viewport */
  align-self: flex-start; /* Ensures proper alignment within a flex container */
  height: fit-content;
}

.service-card .right-col .content-main {
  padding: 50px 0;
  color: var(--primary-color);
}

.service-card .right-col h1 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 17px;
  color: var(--primary-color);
}

.service-card .right-col p {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  color: black;

  line-height: 27px;
}

.service-card .right-col .accordion__content p {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  color: black;
  padding: 12px 20px 0;
  line-height: 24px;
}
.service-card .right-col p a {
  text-decoration: none;
  color: var(--primary-color);
}

.service-card .right-col .main-image {
  width: 100%;
  object-fit: cover;
}

.service-card .right-col img {
  height: 560px;
  width: 100%;
}

.service-card .right-col .small-img {
  display: flex; /* Ensure flexbox for alignment */
  gap: 1rem; /* Adjust the gap as per design */
  width: 100%;
  margin: 30px 0;
}

.service-card .right-col .small-img img {
  width: calc(50% - 0.5rem); /* Dynamic width for images within the container */
  height: 300px;
  border-radius: 8px; /* Add rounded corners if needed */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional styling for shadow */
}

.pbmit-ads-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 349px;
  padding: 30px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  color: white;
  text-align: center;
  margin-top: 40px;
}

.button-service {
  display: inline-block;
  padding: 13px 28px;
  letter-spacing: 1px;
  background-color: #faad00;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.3s;
}
.pbmit-ads-inner {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 49px;
}

.pbmit-ads-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}

.pbmit-all-post-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  border: 1px solid rgb(234, 230, 230);
}

.pbmit-all-post-list li a {
  display: block;
  text-decoration: none;
  color: black;
  padding: 10px 42px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pbmit-all-post-list li {
  margin: 4px 0;
  text-transform: uppercase;
}

.pbmit-all-post-list li a:hover {
  background-color: var(--primary-color);
  color: white;
}

.button-service:hover {
  color: var(--primary-color);
  background-color: white;
}

.pbmit-all-post-list li .yellow-dot {
  height: 8px;
  width: 8px;
  background-color: #faad00;
}

.privacy {
  padding: 80px 0px;
}

.privacy p {
  font-size: 17px;
  font-weight: 600;
}

.privacy h5 {
  font-weight: 550;
  color: var(--primary-color);
}

.privacy a{
  text-decoration: none;
  color: black;
}

.privacy a:hover{
  color: var(--primary-color);
}
