@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

:root {
  --primary: #fd7e14;
  --dark: #000;
  --light: #fff;
  --topbar-bg: #1a1a1a;
  --blue-dark: #141d41;
  --bg: var(--light);
  --text: var(--dark);
  --section-bg: #f2f2f2;
  --card-bg: var(--light);
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  color: var(--dark);
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 40px;
  height: 40px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-xl-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}
.fa-check {
  background-color: #141d41;
  color: #f5f4f3;
  border-radius: 50%;
  padding: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 14px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
/* Custom Quote Button Style */
.btn-quote {
  background: #141d41;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.btn-quote:hover {
  background: #f77e0b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.btn-quote:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2);
}

/*** Navbar Start ***/

/* Topbar */
.topbar-wrapper {
  background-color: var(--topbar-bg);
  font-size: 14px;
  padding: 5px 0;
}

.topbar-wrapper a {
  color: var(--light);
  text-decoration: none;
}

.topbar-wrapper a:hover {
  color: var(--primary);
}

.topbar-left,
.topbar-center,
.topbar-right {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 10px;
}

.topbar-center i {
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 6px;
  transition: all 0.3s ease;
}

.topbar-center i:hover {
  color: #fff;
}

.social-btn i {
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-btn i:hover {
  background: var(--primary);
  color: #fff;
}

/* Navbar */
.custom-navbar {
  background: var(--light);
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.custom-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.custom-navbar .navbar-brand img {
  height: 40px;
}

.custom-navbar .nav-link {
  font-weight: 500;
  color: var(--dark);
  margin: 0 8px;
  text-transform: uppercase;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--primary);
}

.custom-navbar .dropdown-menu {
  border-radius: 0.3rem;
  border: none;
}

.custom-navbar .dropdown-item:hover {
  background: var(--primary);
  color: var(--light);
}

/* Search Form */
form.example {
  display: flex;
  margin: 0;
  flex-shrink: 0;
  width: 200px;
}

form.example input[type="text"] {
  padding: 5px;
  font-size: 17px;
  border: 1px solid grey;
  width: 70%;
  background: #fff;
  border-radius: 4px 0 0 4px;
}

form.example button {
  width: 30%;
  padding: 5px;
  background: var(--primary);
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}

form.example button:hover {
  background: var(--primary);
}

/* Mobile Sidebar */
.menu {
  position: fixed;
  height: 100%;
    width: 298px;
  top: 0;
  left: -100%;
  background: #fff;
  z-index: 1000;
  padding: 20px;
  transition: all 0.4s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.menu.active {
  left: 0;
}

.menu .siderbarClose {
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
  margin-bottom: 20px;
  display: block;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu ul li {
  margin: 15px 0;
}

.menu ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  display: block;
}

.menu ul li a:hover {
  color: var(--primary);
}

/* Mobile Sidebar Toggle */
.sidebarOpen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background-color: var(--primary);
  width: 45px;
  height: 45px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1050;
}

.sidebarOpen:hover {
  background-color: var(--primary);
}
/* Enable dropdown on hover for desktop */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .sidebarOpen {
    display: none !important;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .custom-navbar .navbar-collapse {
    display: none !important;
  }

  .sidebarOpen {
    display: inline-flex;
  }
}
@media screen and (min-width: 768px) {
  .custom-navbar .navbar-brand img {
    height: 38px;
  }
}

/*** Carousel Hero Header Start ***/
.banner-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  color: white;
  background-color: var(--primary, #04AA6D);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--blue-dark, #028a5e);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

@media (max-width: 768px) {
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .slider-prev,
  .slider-next {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .banner-container {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .banner-container {
    height: 35vh;
  }
}

/* ===== Responsive Heights ===== */
@media (max-width: 992px) {
  .banner-container {
    height: 70vh;
  }
}
@media (max-width: 768px) {
  .banner-container {
    height: 50vh;
  }
}
@media (max-width: 576px) {
  .banner-container {
    height: 21vh;
  }
}
@media (max-width: 375px) {
  .banner-container {
    height: 21vh;
  }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)),
    url("../img/pgbanner-1.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  padding: 60px 0 60px 0;
  width: 100%;
}

.bg-breadcrumb h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
  background: transparent;
  padding: 0.75rem 1rem;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  justify-content: center;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--dark);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .active {
  color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .bg-breadcrumb h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .bg-breadcrumb {
    min-height: 250px;
    padding: 50px 0;
  }
  .bg-breadcrumb h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .bg-breadcrumb {
    min-height: 200px;
    padding: 40px 0;
  }
  .bg-breadcrumb h1 {
    font-size: 1.5rem;
  }
  .breadcrumb {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
}
/*** Single Page Hero Header End ***/

/*** counter start ***/
.banner-section {
  position: relative;
  background: url("../img/what-we-offer.jpg") center/cover no-repeat;
  padding: 80px 0;
  overflow: hidden;
}

.counter-card {
  background-color: #fff;
  padding: 25px 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
  margin: 15px 0;
}
.counter-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  color: var(--blue-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 5px;
}

.counter-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--blue-dark);
}

.counter-text {
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .counter {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .counter {
    font-size: 1.8rem;
  }
  .counter-card {
    padding: 20px 10px;
  }
}
@media (max-width: 576px) {
  .counter {
    font-size: 1.5rem;
  }
}

/*** counter End ***/

/*** Projects Start ***/
.projects .nav-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  background-color: #ccc;
  color: var(--blue-dark);
}

.projects .nav-item a {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.projects .nav-item a:hover {
  background: var(--blue-dark);
  color: #fff;
}

.projects .nav-item a span {
  color: #fff;
  font-weight: 500;
}

.projects .nav-item a.active {
  background: var(--blue-dark);
  color: #fff;
}

.projects .nav-item a.active span {
  color: #fff;
}

.projects .projects-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.projects .nav-item a.active .projects-icon {
  background: #fff;
}

.projects .nav-item a.active .projects-icon span {
  color: var(--bs-primary);
}

/* Projects Item */
.projects-item {
  margin-bottom: 30px;
  text-align: left;
}

.projects-item img {
  height: 300px;
  width: 96%;
}

.projects-item .projects-content {
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  width: 747px;
}

.projects-item .projects-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.projects-item .projects-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.projects-item .projects-content a.btn {
  font-size: 0.95rem;
  padding: 8px 20px;
}

/* ✅ Responsive Styles Only */

/* For Large Tablets and below (≤1200px) */
@media (max-width: 1200px) {
  .projects-item .projects-content {
    width: 100%;
    margin-top: 10px;
    padding: 20px;
  }
  .projects-item img {
    width: 100%;
    height: auto;
  }
}

/* For Tablets (≤992px) */
@media (max-width: 992px) {
  .projects .nav-item a {
    font-size: 1rem;
    padding: 12px;
  }
  .projects .projects-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    margin-right: 10px;
  }
  .projects-item {
    text-align: center;
  }
  .projects-item img {
    width: 100%;
    height: auto;
  }
  .projects-item .projects-content {
    width: 100%;
    text-align: center;
  }
}

/* For Tablets and Small Screens (≤768px) */
@media (max-width: 768px) {
  .projects .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .projects .nav-item {
    width: 48%;
  }

  .projects-item .projects-content {
    width: 100%;
    padding: 15px;
  }

  .projects-item .projects-content h4 {
    font-size: 1.2rem;
  }

  .projects-item .projects-content p {
    font-size: 0.95rem;
  }

  .projects-item img {
    height: auto;
  }
}

/* For Mobile (≤576px) */
@media (max-width: 576px) {
  .projects .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .projects .nav-item {
    width: 100%;
  }

  .projects .nav-item a {
    justify-content: flex-start;
    font-size: 1rem;
    padding: 10px;
  }

  .projects-item img {
    width: 100%;
    height: auto;
  }

  .projects-item .projects-content {
    width: 100%;
    padding: 12px;
    text-align: left;
  }

  .projects-item .projects-content h4 {
    font-size: 1.1rem;
  }

  .projects-item .projects-content p {
    font-size: 0.9rem;
  }

  .projects-item .projects-content a.btn {
    padding: 6px 15px;
    font-size: 0.85rem;
  }
}

/*** Projects End ***/

/* why choose us */
.why-section {
  position: relative;
  background: url("../img/bg-1.webp") center/cover no-repeat;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.why-section .row {
  align-items: stretch;
}

.why-content,
.why-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
}

.why-content-inner {
  background: #fff;
  color: var(--blue-dark);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 642px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-content-inner h3 {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.why-content-inner p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.why-content-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-content-inner ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--blue-dark);
}

.why-img img {
  width: 100%;
  height: 471px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .why-section {
    padding: 60px 20px;
    text-align: center;
  }

  .why-section .row {
    flex-direction: column-reverse;
  }

  .why-content,
  .why-img {
    height: auto;
  }

  .why-content-inner {
    max-width: 100%;
    margin-bottom: 40px;
    padding: 40px 25px;
  }

  .why-img img {
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 15px;
  }

  .why-section::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .why-content-inner {
    padding: 30px 20px;
  }

  .why-img img {
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 40px 15px;
  }

  .why-content-inner {
    padding: 25px 15px;
  }

  .why-img img {
    max-height: 200px;
  }
}

/* bg company */
.hero-section {
  position: relative;
  background: linear-gradient(
      rgba(238, 115, 14, 0.75),
      rgba(203, 106, 26, 0.75)
    ),
    url("../img/bg-img.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 130px 20px;
  overflow: hidden;
}

.hero-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}

.hero-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.hero-section a {
  color: #fff;
  background: var(--blue-dark);
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-section a:hover {
  background: #fff;
  color: var(--blue-dark);
}

/* --- Decorative Overlay --- */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero-section {
    padding: 100px 20px;
  }

  .hero-section h2 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 80px 15px;
  }

  .hero-section h2 {
    font-size: 1.6rem;
  }
}

.read-more-btn {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* mission and vision */
.vision-mission-section {
  position: relative;
  overflow: hidden;
}
.vm-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.vm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.vm-row.reverse {
  flex-direction: row-reverse;
}

.vm-text {
  flex: 1 1 50%;
  z-index: 1;
}

.vm-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  margin-bottom: 20px;
}

.vm-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--blue-dark);
  border-radius: 2px;
}

.vm-text p {
  color: var(--dark);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 15px;
}

.vm-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-text ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
}
.vm-image {
  flex: 1 1 45%;
  text-align: center;
  position: relative;
}

.vm-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
  z-index: 2;
  position: relative;
}

.vm-image img:hover {
  transform: scale(1.05);
}

/* Decorative gradient blobs */
.vm-image::before,
.vm-image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.2;
}

.vm-image::before {
  width: 180px;
  height: 180px;
  background: var(--primary);
  top: -40px;
  left: -30px;
}

.vm-image::after {
  width: 120px;
  height: 120px;
  background: var(--blue-dark);
  bottom: -30px;
  right: -20px;
}

/* =============================
       Responsive Styles
    ============================= */
@media (max-width: 992px) {
  .vm-title {
    font-size: 1.8rem;
  }

  .vm-row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .vm-row,
  .vm-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .vm-text {
    flex: 1 1 100%;
  }

  .vm-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .vm-image {
    flex: 1 1 100%;
  }

  .vm-image img {
    max-width: 300px;
  }

  .vm-image::before,
  .vm-image::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .vision-mission-section {
    padding: 50px 20px;
  }

  .vm-title {
    font-size: 1.5rem;
  }

  .vm-text p,
  .vm-text li {
    font-size: 14px;
  }

  .vm-image img {
    max-width: 250px;
  }
}

/* certificate */
.cert_area .main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.cert_area .main img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  border: 2px solid #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-color: var(--primary);
}

.cert_area .main img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--blue-dark);
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
  .cert_area .main img {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .cert_area .main img {
    width: 150px;
  }
}

@media (max-width: 576px) {
  .cert_area .main {
    gap: 10px;
  }
  .cert_area .main img {
    width: 120px;
  }
}

/* --- Our Commitment Section --- */
.commitment {
  background: linear-gradient(rgba(21, 30, 65, 0.85), rgba(21, 30, 65, 0.85)),
    url("../img/bg-2.jpg") center/cover no-repeat;
  color: #fff;
  padding: 60px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.commitment::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(253, 126, 20, 0.25);
  border-radius: 50%;
  z-index: 0;
}

.commitment h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.commitment ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.commitment ul li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.commitment ul li i {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(216, 0, 0, 0.3);
}

.commitment ul li:hover i {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.commitment ul li:hover {
  transform: translateX(5px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .commitment {
    padding: 40px 20px;
  }

  .commitment h3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .commitment ul li {
    font-size: 1rem;
  }
}

/* --- Who We Are Section --- */
.who-we-are {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.who-we-are .text {
  flex: 1;
  min-width: 300px;
}

.who-we-are .text p {
  margin-bottom: 15px;
  color: var(--dark);
}

.who-we-are .image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.who-we-are .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .who-we-are {
    flex-direction: column-reverse;
    text-align: center;
  }

  .who-we-are .text,
  .who-we-are .image {
    flex: unset;
  }

  .commitment ul li {
    padding: 15px;
  }
}

/* what we offer */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.industry-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.industry-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  padding: 15px 0;
}

@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive for mobile (1 card per row) */
@media (max-width: 576px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

/*** FAQs Start ***/

.faq-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

/* Accordion Item Styling */
.faq-section .accordion .accordion-item {
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

/* Accordion Button Styling */
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
  color: #fff;
  background: rgba(246, 138, 10, 0.9);
  font-size: 18px;
  font-weight: 600;
  padding: 20px 25px;
  transition: all 0.3s ease;
}

.faq-section
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button.collapsed {
  color: var(--dark);
  background: #f8f9fa;
}

.faq-section .accordion .accordion-item .accordion-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  padding: 20px 25px;
  background: #fff;
}

/* FAQ Image Styling */
.faq-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ----- Responsive Styles ----- */

@media (max-width: 1200px) {
  .faq-section h2 {
    font-size: 28px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .faq-section .row {
    flex-direction: column;
    align-items: center;
  }
  .faq-section .col-lg-6,
  .faq-section .col-xl-6 {
    max-width: 90%;
    margin: 0 auto 30px;
  }
  .faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 24px;
  }
  .faq-section .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 15px 20px;
  }
  .faq-section .accordion .accordion-item .accordion-body {
    font-size: 15px;
    padding: 15px 20px;
  }
}

/* Extra Small Mobile */
@media (max-width: 576px) {
  .faq-section {
    padding: 40px 15px;
  }
  .faq-section h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .faq-section .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 12px 15px;
  }
  .faq-section .accordion .accordion-item .accordion-body {
    font-size: 14px;
    padding: 12px 15px;
  }
  .faq-section img {
    margin-bottom: 25px;
  }
}

/*** FAQs End ***/

/* prodcuts content */
.pro-section {
 max-width: 1300px;
  margin: auto;
  padding: 40px 20px;
}

/* Main Product Section */
.pro-section {
  padding: 40px 20px;
}

.sandbag-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sandbag-text {
  flex: 1 1 500px;
  padding: 20px;
}

.section-heading {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 2rem;
}

.sandbag-text p {
  line-height: 1.6;
}

.sandbag-image {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.sandbag-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


@media (max-width: 992px) {
  .sandbag-section {
    flex-direction: column;
  }

  .sandbag-image {
    margin-top: -132px;
  }

  .sandbag-text {
    padding: 10px 0;
  }
  .gote-btn{
        margin-top: -79px;
  }
}

/* market area page */

.market-title {
  text-align: center;
  margin-top: 40px;
  font-size: 2rem;
  color: var(--primary);
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
}

.market-area {
  padding: 30px 15px;
}

.market-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.market-box {
  width: 200px;
  background: #ffffff;
  border-radius: 15px;
  text-align: center;
  padding: 25px 15px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.market-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.market-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.market-box:hover .market-icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.2) rotate(10deg);
}

.market-name {
  font-size: 16px;
  margin-top: 5px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .market-box {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .market-box {
    width: 90%;
  }
}
/* market area content */
.product-info-section {
 max-width: 1290px;
  margin: auto;
  padding: 40px 20px;
}
.product-info-section h2,
.product-info-section h3,
.product-info-section h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 11px;
}

/* Paragraphs */
.product-info-section p {
  margin-bottom: 15px;
  text-align: justify;
}

/* Boxes */
.product-info-box {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .product-info-section {
    padding: 25px 15px;
  }

  .product-info-section h3,
  .product-info-section h4,
  .product-info-section h5,
  .product-info-section h6 {
    font-size: 20px;
  }

  .product-info-section p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .product-info-section {
    padding: 20px 10px;
  }

  .product-info-section h3,
  .product-info-section h4,
  .product-info-section h5,
  .product-info-section h6 {
    font-size: 18px;
  }

  .product-info-section p {
    font-size: 13px;
  }
}

/* sitemap */

.sitemap-header {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sitemap-header h2 {
  margin: 0;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.sitemap-container {
  max-width: 1100px;
  margin: 50px auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.2);
}

.sitemap-section {
  margin-bottom: 40px;
}

.sitemap-section h2 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary);
  padding-left: 10px;
}

.sitemap-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sitemap-item {
  display: flex;
  align-items: center;
}

.sitemap-item i {
  color: var(--primary);
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
}

.sitemap-item a {
  text-decoration: none;
  color: var(--dark);
  font-size: 16px;
  transition: 0.3s;
}

.sitemap-item a:hover {
  color: var(--primary);
  margin-left: 5px;
}

@media (max-width: 768px) {
  .sitemap-container {
    margin: 20px;
    padding: 25px;
  }

  .sitemap-header h2 {
    font-size: 1.8rem;
  }

  .sitemap-section h2 {
    font-size: 1.5rem;
  }
}

/* contact */
.contact-row1 {
  padding: 60px 97px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.contact-row1 .img-section {
  background-image: url('../img/contact-us.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  min-height: 400px;
  flex: 1 1 450px;
}
.contact-row1 .form-section {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  flex: 1 1 450px;
}
.contact-row1 .form-section h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

/* Row 2 - Info + Map */
.contact-row2 {
  padding: 60px 88px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.contact-info {
  flex: 1 1 450px;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.contact-info h2 {
  color: var(--primary);
  margin-bottom: 20px;
}
.contact-info p {
  line-height: 1.6;
  margin-bottom: 25px;
}
.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info .info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 15px;
  flex-shrink: 0;
}
.contact-info .social-iconss a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
  text-decoration: none;
}
.contact-info .social-iconss a:hover {
  background-color: var(--blue-dark);
}

.map-container {
  flex: 1 1 450px;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
}

.contact-form .form-floating input,
.contact-form .form-floating select,
.contact-form .form-floating textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: var(--light);
  color: var(--dark);
}

.contact-form .form-check-label {
  color: var(--dark);
}

.contact-form button {
  background-color: var(--primary);
  color: var(--light);
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s;
}
.contact-form button:hover {
  background-color: var(--blue-dark);
}

@media(max-width: 768px) {
  .contact-row1, .contact-row2, .search-row {
    flex-direction: column;
    padding: 30px 15px;
  }
  .contact-row1 .img-section, .map-container {
    min-height: 250px;
  }
 
}
/*** Footer Start ***/
.footer {
  background: #ffffff;
  color: var(--blue-dark);
  padding: 70px 0 0;
  max-width: auto;
  border-top: 2px solid var(--blue-dark);
}

.footer .footer-logo img {
  height: 78px;
  width: 198px;
}

.footer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--blue-dark);
}

.footer h5 {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.footer h5::after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  bottom: -8px;
  left: 0;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer .social-iconss a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  color: #fff;
  background: var(--primary);
  transition: 0.3s;
  font-size: 16px;
}

.footer .social-iconss a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer .contact-info p {
  margin-bottom: 8px;
}

.footer .contact-info p i {
  color: var(--primary);
  margin-right: 8px;
}

/* .footer .map-container {
  border-top: 1px solid #333;
} */

.footer iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

.copyright {
  background: var(--blue-dark);
  border-top: 1px solid #222;
  color: var(--blue-dark);
}

.copyright a {
  color: var(--primary);
  text-decoration: none;
}

.copyright a:hover {
  color: var(--blue-dark);
}

@media (max-width: 991px) {
  .footer .col-md-2,
  .footer .col-md-3 {
    margin-bottom: 40px;
  }

  .footer iframe {
    height: 250px;
  }
}

@media (max-width: 575px) {
  .footer h5 {
    font-size: 16px;
  }

  .footer p {
    font-size: 14px;
  }
}
