* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
     font-family: "Roboto", sans-serif;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #007bff; /* blue color */
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}



/* TOP BAR */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding:10px 0px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  max-height: 110px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-top: 20px;
}

.phone {
  font-weight: 600;
  font-size: 20px;
  list-style: none;
  text-decoration: none;
  color:#555555!important;
}

.top-right .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #555;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
}
/* NAVBAR */
.main-header {
  background: #d20c2d;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
h1.single-blog-title {
  padding: 12px;
  font-family: auto;
}
.blog-excerpt.mb-4 P {
  font-size: 18px;
  font-family: fangsong;
  padding: 12px;
}

.blog-content {
  font-size: 18px;
  font-family: fangsong;
  padding: 12px;
}
.single-blog-meta {
  text-align: center;
  background: #d20c2d;
  padding: 12px;
  color: #fff;
  font-family: emoji;
}
.single-container {
  padding: 26px;
}
.single-container

 {
    padding: 26px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.3s;
}

.menu li a:hover {
  opacity: 0.8;
}

/* DROPDOWN MENU */
.menu-item.has-dropdown {
  position: relative;
}

.menu-item.has-dropdown > a {
  cursor: pointer;
}

.menu-item.has-dropdown > a .fa-chevron-down {
  font-size: 12px;
  transition: transform 0.3s;
}

.menu-item.has-dropdown.active > a .fa-chevron-down,
.menu-item.has-dropdown:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 1000;
}

.menu-item.has-dropdown.active .sub-menu,
.menu-item.has-dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Desktop hover support */
@media (min-width: 992px) {
  .menu-item.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.sub-menu .menu-item {
  margin: 0;
}

.sub-menu .menu-item a {
  color: #333;
  padding: 10px 20px;
  display: block;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s;
}

.sub-menu .menu-item a:hover {
  background-color: #f5f5f5;
  opacity: 1;
}

/* SEARCH */
.search-box {
  position: relative;
}

.search-box input {
  padding: 8px 35px 8px 10px;
  border: none;
  border-radius: 2px;
  outline: none;
}

.search-box .clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #666;
}

/* CONTROLS */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}



.slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}


.switch-section {
  padding: 60px 0;
  background: #fff;
}

/* Top content */
.section-top {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.section-top h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0b2545;
}

.section-top p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Bottom layout */
.switch-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.switch-image img {
  max-width: 420px;
  width: 100%;
}

/* Text side */
.switch-text h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.switch-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #333;
}

/* Button */
.btn-red {
  display: inline-block;
  background: #e3062c;
  color: #fff;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: 0.3s ease;
}

.btn-red:hover {
  background: #b80422;
}


.product-types {
  
  background: #fff;
}



.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  text-align: center;
  margin: 35px 0;
}

.product-item img {
    max-width: 160px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1c1c1c;
}

.quote-video-section {
  padding: 100px 0;
  background: #fff;
}


/* Quote */
.quote-content {
  text-align: center;
  margin-bottom: 80px;
}

.quote-top {
  font-style: italic;
  font-size: 20px;
  margin-bottom: 15px;
}

.quote-highlight {
  font-size: 42px;
  font-weight: 700;
  color: #e3062c;
  margin-bottom: 15px;
}

.quote-author {
  font-size: 16px;
  color: #333;
}

.media-content {
  display: flex;
  flex-direction: row;      /* side by side instead of stacked */
  justify-content: center;  /* center the videos horizontally */
  align-items: flex-start;  /* align to top */
  gap: 40px;                /* space between videos */
  flex-wrap: wrap;          /* allow wrapping on smaller screens */
}
/* Main video */
.video-box, .logo-box {
  flex: 1 1 300px;          /* flexible width, min 300px */
  max-width: 600px;         /* optional max width */
  position: relative; 
  overflow: hidden;         /* ensures play button stays inside video */
}

.video-box video,
.logo-box video {
  width: 100%;
  height: auto;       /* maintains aspect ratio */
  display: block;
}

/* Play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #000;
    cursor: pointer;
    opacity: 0;                /* hidden by default */
    background-color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show play button on hover */
.video-box:hover .play-btn,
.logo-box:hover .play-btn {
    opacity: 0.8;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}


.estimate-form-section {
padding: 0px 20px 40px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.estimate-form-section .highlight-text {
  color: #e3062c;
  font-style: italic;
  margin-bottom: 10px;
}

.estimate-form-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.estimate-alert {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 24px;
  list-style: none;
}
.estimate-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.estimate-alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.estimate-alert-error ul { padding-left: 1.2em; }

.estimate-form {
  width: 100%;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 45%;
  margin-bottom: 20px;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group label {
  display: block;
  font-weight: normal;
  margin-bottom: 5px;
}

.btn-submit {
  background-color: #45a049;
  color: #fff;
  font-size: 18px;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #61ce70;
}



.feature-section {
  padding-bottom: 50px;
}
.feature-section-main {
      display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #000;
}

.text-content p {
  font-size: 20px;
  color: #8A8A8A;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #e60023;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 15px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #b5001a;
}

.image-content {
  flex: 1;
  min-width: 300px;
}

.image-content img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.logo-section {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    min-height: 400px;       /* adjust height as needed */
}

.logo-section-main img {
    max-width: 100%;
    height: auto;
    display: block;
}
.customers-wrapper {
  padding: 50px 15px;
  font-family: Arial, Helvetica, sans-serif;
  color: #6b7280;
  background: #fff;
}


/* Logo */
.logo-table {
  text-align: center;
  margin-bottom: 35px;
}

.logo-table img {
  max-height: 100px;
}

/* Header */
.customers-header {
  display: grid;
  grid-template-columns: 38% 62%;
  border: 1px solid #cfd6df;
  margin-bottom: 28px;
}

.customers-header .left,
.customers-header .right {
  padding: 22px 26px;
  font-size: 22px;
  line-height: 1.3;
}

.customers-header .left {
  color: #7b8794;
}

.customers-header .right {
  font-weight: 700;
  color: #0f172a;
  border-left: 1px solid #cfd6df;
}

/* Content */
.customers-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #cfd6df;
}

.customers-content .col {
  padding: 26px 28px;
  border-right: 1px solid #cfd6df;
}

.customers-content .col:last-child {
  border-right: none;
}

.customers-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.customers-content li {
  font-size: 16px;
  line-height: 1.85;
}
.footer {
  font-family: Arial, Helvetica, sans-serif;
}

/* ---------- TOP ---------- */
.footer-top {
  background: #d31145;
  padding: 90px 0 70px;
}

.footer-container {
  width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr 260px;
  column-gap: 50px;
}

/* NEWSLETTER */    
.footer-newsletter {
  background: #fff;
  padding: 15px;
  color: #333;
}

.newsletter-title{
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter-alert {
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 14px;
  list-style: none;
}
.newsletter-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.newsletter-alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.newsletter-alert-error ul { padding-left: 1.2em; }

.footer-newsletter label {
  font-size: 14px;
  display: block;
  margin: 10px 0;
}

.footer-newsletter input {
  width: 100%;
  padding: 7px;
  border: 1px solid #9ca3af;
}

.captcha {
  margin: 15px 0;
  font-size: 12px;
}

.captcha input {
  margin-right: 6px;
}
.footer-newsletter button {
  background: #7a7a7a;
  color: #fff;
  border: none;
  padding: 9px 35px;
  margin-top: 20px;
}

/* CENTER */
.footer-center {
  color: #fff;
}

.footer-quote {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 35px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  font-size: 14px;
  font-weight:600;
  color:#fff;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
  color: #fff;
}

/* RIGHT */
.footer-right {
  color: #fff;
  text-align: right;
}

.footer-icons span {
  display: inline-block;
  background: #3b3b3b;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  margin-left: 8px;
}

.footer-phone {
  font-size: 18px;
  font-weight: 700;
  margin: 18px 0 25px;
}

.footer-associations p {
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.footer-associations img {
  width: 105px;
  margin-left: 8px;
}

/* ---------- BOTTOM ---------- */
.footer-bottom {
  background: #2f2f2f;
  padding: 15px 0;
  color: #bdbdbd;
  font-size: 13px;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
}
