* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.4;

}

/* Optional: Specific element styling */
h1, h2, h3 {
  font-weight: 600; /* or 700, 400, etc. */
}
p { 
  font-weight: 400; /* or 700, 400, etc. */
}
.text-white{color: #fff;}
.highlight-screw {
  color: #fff;
}
.d-flex{
  display: flex;
}
.justify-content-between{
    justify-content: space-between;
}

.bg-blue{background-color: #3a3a3a;}

.bg-green{background-color: #3a3a3a;}

.bg-black{background-color: #080402;}

.button{
  display: inline-block;
  padding:5px 10px;
  background-color: #fff;
  color: #080402;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
}
.button:hover {
  background-color: #080402;
  color: #fff;
  border: 1px solid #fff;
}
.button-2 {
  display: inline-block;
  padding:5px 10px;
  background-color: #080402;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  border: 1px solid #fff;
  font-size: 14px;
  text-align: center;
}
.button-2:hover {
  background-color: #fff;
  color: #080402;
  border: 1px solid #080402;
}

.main-container{
  margin: 0 auto;
  padding:0;
}
/* Default Styles */
.top-bar {
  background: #080402;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 20px;
}

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

.top-bar-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.top-bar-box.left a {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

.top-bar-box.left a:hover {
  text-decoration: underline;
  color: #3a3a3a;
}


.navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  min-height:100px;
  display: flex;
  align-items: center;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo img {
  height: 60px;
  margin-right: 10px;
}

/* Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-menu a,
.dropdown-toggle {
  text-decoration: none;
  text-transform: uppercase;
  color: #080402;
  font-weight: 500;
  display: flex;              /* change from block to flex */
  align-items: center;        /* vertical center */
  justify-content: center;    /* optional: horizontal center */
  height: 100px;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar-menu a:hover,
.dropdown-toggle:hover {
  color: #3a3a3a;
  font-weight: 500;
}

/* Dropdown */
.dropdown {
  position: relative;

}

@keyframes opacity {
  from {opacity: 0;}
  to {opacity: 1; } 
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100px; /* directly below */
  left: 0;
  background: #fff;
  border-top: 5px solid #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 10;
  padding: 10px 20px;
  animation-name: opacity;

}

.dropdown-menu a {
  display: block;
  padding: 10px 0px;
  color: #000;
  height: auto;
  margin-left:0;
  transition: margin-left 1s;
}

.dropdown-menu a:hover {
  color: #3a3a3a;  
}
/* Show on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  animation: opacity 0.4s ease-in;
}

/* Hamburger */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
}
/* breadcrumb Base Styling */
.breadcrumb .breadcrumb-container {
  width: 100%;
  height: 400px;
  border-bottom: 5px solid #3a3a3a;
  position: relative;
  overflow: hidden;
}

/* breadcrumb Backgrounds */
.breadcrumb .breadcrumb-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  height: 400px;
}

/* Dark Overlay on Background */
.breadcrumb .breadcrumb-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust darkness */
  z-index: 1;
}

/* Slide Caption */
.breadcrumb .breadcrumb-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 80%;
  padding: 20px;
}

.breadcrumb .breadcrumb-caption h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb .breadcrumbn-caption p {
  font-size: 1.25rem;
}

.breadcrumb-links {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    border-radius: 4px;
}
.breadcrumb-links i {
  color: #fff;
}
.breadcrumb-links a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}
.breadcrumb-links a:hover {
    color: #3a3a3a;
    text-decoration: none;
}

/* main headings */

/* breadcrumb Base Styling */

.headings .headings-container {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

/* Slide Caption */
.headings .headings-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 100%;
  padding: 20px;
}

.headings .headings-caption h1 {
  font-size: 49px;
  font-weight: 700;
  margin-bottom: 20px;
}

.headings .headings-caption p {
  font-size: 1.25rem;
}


.slider .swiper-container {
  width: 100%;
  height: 700px;
  border-top: 5px #000 solid;
  position: relative;
  overflow: hidden;
}
/* Slide Backgrounds */
.slider .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider .slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.slider .slide-caption {
  flex: 1;
  padding-right: 120px;
  padding-left: 30px;
  margin-top: 40px;
}

.slider .slide-caption h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.0;
  text-transform:uppercase;
}

.slider .slide-caption p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  width: 450px;
}

.slider .slide-image {
  flex: 1;
  text-align: right;
}

.slider .slide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* optional */
}

.slide-video {
  flex: 1;
  max-width: 50%;
}

.slide-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border:#000 5px solid;
  object-fit: cover;
}

.slider-button{
  display: inline-block;
  padding:25px 20px;
  background-color: #080402;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
}
/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  width: 44px;
  height: 44px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

/* Optional Pagination Styling */
.swiper-pagination {
  bottom: 20px !important;
}


.step-boxes{
  display: flex;
}
.step-boxes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* handles spacing between boxes */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: -50px;
  z-index: 100;
}
.step-boxes-iner{
  display: flex;
  width: 386px;
  height: 170px;
  padding: 20px;
}
.step-boxes-iner .icon {
  width: 70px;
  flex-shrink: 0;
  margin-right: 15px;
  padding-top: 15px;
}

.step-boxes-iner .text {
  flex: 1;
}
.circle-number {
  width: 70px;
  height: 70px; 
  color: white;
  font-size: 45px;
  font-weight: 800;
  border-radius: 50%; 
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.step-boxes-iner h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: 1.4;
}

.step-boxes-iner p {
  font-size: 14px;
  line-height: 1.4;
}

.end{margin-right: 0;}

.ml20{margin-right: 20px;}

.newsletter-section {
  background: url('../images/bg-1.png') no-repeat center center/cover;
  
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 465px;
}

.newsletter-container {
  max-width: 750px;
  padding: 80px 0;
  margin: 0 auto;
}

.newsletter-section h3 {
  font-size: 49px;
  margin-bottom: 10px;
  font-weight: bolder;
  color: #fff;
}
.newsletter-section h3 span {
  font-size: 49px;
  margin-bottom: 10px;
  font-weight: 100;
  color: #fff;
}


.newsletter-section p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 45px;
}

.newsletter-form input[type="email"] {
  padding: 20px;
  font-size: 16px;
  border: 1px solid #fff;
  background-color: #3a3a3a;
  color: #fff !important;
  border-radius: 15px;
  flex: 1 1 250px;
  max-width: 460px;
  /* Fix for WebKit browsers like Safari/Chrome */
  -webkit-text-fill-color: #fff !important;
}

.newsletter-form button {
  padding: 12px 20px;
  background-color: #fff; /* your brand color */
  color: #080402;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #3a3a3a;
  color: #fff;
}

.site-footer {
  background: #080402;
  color: #fff;
  padding-top: 80px;
  
  font-size: 15px;
}

.footer-logo img{
width: 250px;
margin-bottom: 25px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr 2fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px ;
}
.footer-column h4 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
}
.footer-column h5 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #3a3a3a;
}
.footer-column span {
  font-size: 16px;
  color: #3a3a3a;
}

.footer-column p,
.footer-column a {
  color: #ccc;
  text-decoration: none;
}

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

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  background: #080402;
  max-width: 1200px;
  text-align: center;
  border-top: 1px solid #3a3a3a;
  padding: 20px;
  margin: 0 auto;
  font-size: 14px;
  color: #fff;
}
.footer-bottom a {
  color:#fff;
}
.footer-bottom a:hover {
  color:#fff;
  text-decoration: underline;
}

.social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}

.social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 10px;
  border: 2px solid #fff; /* LinkedIn blue or your theme color */
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icons li a:hover {
  color: #000;
  background-color: #fff;
  text-decoration:none;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.main-content {
  flex: 1 1 65%;
}

.sidebar {
  flex: 1 1 30%;
}

.blog-post {
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.5rem;
}

.post-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.post-thumbnail img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #0056b3;
  text-decoration: underline;
}

.pagination {
  margin-top: 2rem;
}



.faq-page .faq-item {
  width: 1000px;
  margin: 80px auto;
  padding: 0 0px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.faq-question {
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0;
}

.faq-answer {
  margin-top: 10px;
  
}

.faq-question.active + .faq-answer {
  display: block;
}

.product-section {
  background: #ccdf9d;
  padding: 80px 20px;
}
.product-container{
  width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.product-card {
  background-color: #f0f7d6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  width: 320px;
  padding: 20px;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card img {
  height: 200px;
  width: 100%; /* Make sure it fills the card width */
  object-fit: cover; /* Ensures no stretch — crops instead */
  border-radius: 10px;
  margin-bottom: 15px;
  display: block; /* Removes bottom spacing on images */
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.product-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}

.spec-button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #002f6c;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 0.9rem;
  text-align: center;
}


/* Contact Form 7 - Contact Page form 1 Styling */
form#wpcf7-f4d626bb-p* {
  background: #f8fdf3;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 600px;
  margin: 0 auto;
}

/* Labels */
form#wpcf7-f4d626bb-p* label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

/* Inputs & Textareas */
form#wpcf7-f4d626bb-p* input[type="text"],
form#wpcf7-f4d626bb-p* input[type="email"],
form#wpcf7-f4d626bb-p* input[type="tel"],
form#wpcf7-f4d626bb-p* textarea,
form#wpcf7-f4d626bb-p* select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

form#wpcf7-f4d626bb-p* input:focus,
form#wpcf7-f4d626bb-p* textarea:focus,
form#wpcf7-f4d626bb-p* select:focus {
  border-color: #2a6f3f;
  outline: none;
}

/* Submit Button */
form#wpcf7-f4d626bb-p* input[type="submit"] {
  background: #3a3a3a;
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

form#wpcf7-f4d626bb-p* input[type="submit"]:hover {
  background: #21497f;
}

/* Validation Errors */
form#wpcf7-f4d626bb-p* .wpcf7-not-valid-tip {
  color: #d9534f;
  font-size: 13px;
  margin-top: -10px;
  margin-bottom: 10px;
}

/* Success Message */
form#wpcf7-f4d626bb-p* .wpcf7-mail-sent-ok {
  background: #d6e792;
  padding: 15px;
  border-radius: 8px;
  color: #2a6f3f;
  font-weight: 600;
  margin-top: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  form#wpcf7-f4d626bb-p* {
    padding: 20px;
  }
}
