/* ================= HERO CAROUSEL ================= */
body {
    font-family: 'Poppins', sans-serif;
}
.carousel-item {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.4)
  );
}

/* CONTENT WRAPPER */
.carousel-item .container {
  position: relative;
  z-index: 2;
}

/* HERO CONTENT */
.hero-content {
  max-width: 650px;
  padding: 0 20px;
  color: #fff;
}

/* TEXT */
.hero-content h1 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  margin: 20px 0;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 14px 30px;
  margin-right: 10px;
  border-radius: 2px;
  white-space: nowrap;
  transition: 0.3s ease;
}

/* PRIMARY BUTTON */
.btn-primary-custom {
  background: #5aa1d8;
  color: #fff;
  border: none;
}

.btn-primary-custom:hover {
  background: #3d8cc7;
}

/* OUTLINE BUTTON */
.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #000;
}

/* ================= ANIMATION ================= */

.hero-content h1,
.hero-content p,
.hero-buttons {
  opacity: 0;
}

.hero-content h1.animate {
  animation: fadeDown 0.8s forwards;
}

.hero-content p.animate {
  animation: fadeUp 0.8s forwards 0.2s;
}

.hero-buttons.animate {
  animation: fadeUp 0.8s forwards 0.4s;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= NAV BUTTONS ================= */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

.custom-nav {
  width: 45px;
  height: 45px;
  background: rgba(0,0,0,0.4);
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  transition: 0.3s ease;
}

.carousel-control-prev.custom-nav {
  left: 20px;
}

.carousel-control-next.custom-nav {
  right: 20px;
}

.custom-nav::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.carousel-control-prev.custom-nav::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.custom-nav:hover {
  background: #000;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .carousel-item {
    /* vh can be tricky on mobile due to address bars; 100vh is usually better for 'full' */
    height: 100vh; 
    min-height: 480px;
    /* This ensures the subject of your photo (the worker) stays visible */
    background-position: 80% center; 
  }

  .overlay {
    background: rgba(0,0,0,0.5);
  }

  .hero-content {
    text-align: center;
    padding: 20px 15px;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 85%;
    margin-right: 0;
  }

  .custom-nav {
    width: 35px;
    height: 35px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
.carousel-item {
  height: 100vh;
}
  .hero-content h1 {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 13px;
  }
}

/* CTA BAND */
.cta-band {
  background: #D4B15A; /* yellow */
  padding: 25px 0;
}

/* FLEX LAYOUT */
.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* TEXT */
.cta-text {
  font-size: 30px;
  line-height: 43px;
  font-weight: 300;
  color: #000;
  max-width: 1000px;
}

/* BUTTON */
/* CTA BUTTON BASE */
.btn-cta {
  display: inline-block;
  padding: 2px 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 49px;
  text-decoration: none;

  background: transparent;        /* transparent bg */
  color: #242424;                   /* black text */
  border: 2px solid #242424;      

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.btn-cta:hover {
  background: #242424;              /* black bg */
  color: #fff;                   /* white text */
  border-color: #000;            /* match bg (hidden effect) */
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-text {
    font-size: 18px;
  }
}
/* Google Fonts Import */

.vision-section {
  padding: 100px 0;
  background-color: #ffffff;
}

/* LEFT CARD DESIGN */
.vision-card {
  background: #fff;
  padding: 50px 40px; /* Increased padding for the "Image 1" look */
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2); /* Softer, deeper shadow */
  border-radius: 4px;
  height: 100%;
 
  transition: transform 0.3s ease;
}

.title-main {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  /* margin-bottom: 20px; */
}

.description {
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 25px;
}

.read-more-btn {
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  border-bottom: 1px solid #007bff;
  color: #0056b3;
}

/* RIGHT SIDE ITEMS */
.vision-icon i {
    font-size: 60px;
    color: #D4B15A; /* your theme color */
    margin-right: 15px;
}

.vision-item {
    display: flex;
    align-items: flex-start;
}
.vision-icon img {
  width: 65px; /* Larger icons as seen in Image 1 */
  height: auto;
  object-fit: contain;
}

.vision-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
  line-height: 1.2;
}

.vision-text p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #797979;
  margin: 0;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 991px) {
  .vision-section {
    padding: 60px 0;
  }
  .vision-card {
    padding: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .vision-item {
    flex-direction: column; /* Stack icons on mobile for better readability */
    text-align: center;
    align-items: center;
  }
  .vision-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* =========================
   SECTION
========================= */
.services-section {
  position: relative;
  padding: 80px 0;
  background: url('https://shtheme.com/demosd/metallex1/wp-content/themes/metallex/images/home_page_variation2/offer_bg.jpg') center/cover no-repeat;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.services-section .container {
  position: relative;
  z-index: 2;
}

/* =========================
   TITLE
========================= */
.services-header {
  margin-bottom: 40px;
}

.services-title {
  display: inline-flex;
  align-items: flex-end;
  gap: 12px;
  font-size: 34px;
  font-weight: 700;
  line-height: 37px;
  color: #fff;
}

.services-title-line {
  width: 45px;
  height: 2px;
  background: #fff;
}

/* =========================
   CARD
========================= */
.service-card h4 ,
.service-inline h4 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: #fff;
}

.service-card h4 a,
.service-inline h4 a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.service-card h4 a:hover,
.service-inline h4 a:hover {
  color: #D4B15A;
}

.service-card p ,
.service-inline p {
  
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin: 10px 0 12px;
  color: #aaa;
}

/* IMAGE */
.service-img {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* =========================
   READ MORE
========================= */
.read-more {
  font-size: 13px;
  font-weight: 600;
  color: #D4B15A;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  color: #fff;
}

/* =========================
   DIVIDER
========================= */
.services-divider {
  height: 1px;
  border: none;
  background: rgba(255,255,255,0.1);
  margin: 60px 0;
}

/* =========================
   INLINE SERVICES
========================= */
.service-inline {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.service-inline img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .services-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .services-title {
    font-size: 26px;
  }

  .service-img img {
    height: 200px;
  }

  .service-inline {
    flex-direction: column;
  }

  .service-inline img {
    width: 100%;
    height: auto;
  }
}
/* BACKGROUND */
.core-section {
  background: #f5f5f5;
}

/* TITLE */
.section-title {
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  line-height: 37px;
  color: #242424;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.section-title::after {
  content: "";
  width: 45px;
  height: 2px;
  background: #3b82f6;
  margin-left: 12px;
}

/* ACCORDION */
.custom-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

/* BUTTON */
.accordion-btn {
  width: 100%;
  background: #fff;
  color: #232323;
  border: none;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ACTIVE */
.accordion-btn:not(.collapsed) {
  background: #D4B15A;
}

/* ICON */
.accordion-btn .icon {
  font-size: 18px;
}

/* BODY */
.accordion-body {
  background: #fff;
  padding: 20px;
}
.accordion-body h5 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 10px;
}
.accordion-body p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #797979;
}
/* IMAGE */
.core-img {
  width: 150px;
  max-width: 100%;
  height: auto;
}

/* LINKS */
.core-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #999;
}

/* ABOUT */
.about-images {
  display: flex;
  gap: 10px;
}

.about-images img {
  width: 50%;
  height: auto;
  object-fit: contain;
}
.about-para {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #797979;
   
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .accordion-body {
    flex-direction: column !important;
  }

  .core-img {
    width: 100%;
  }

  .about-images {
    flex-direction: column;
  }

  .about-images img {
    width: 100%;
  }
}
/* SECTION */
.projects {
  position: relative;
  background: url('https://shtheme.com/demosd/metallex1/wp-content/uploads/2018/05/project_bg.jpg') center/cover no-repeat;
  padding: 100px 0 0;
  color: #fff;
}

.projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.88);
}

.projects .container {
  position: relative;
  z-index: 2;
}

/* TITLE */
.projects-title {
  font: 700 34px/37px 'Poppins', sans-serif;
}

.projects-title span {
  width: 60px;
  height: 2px;
  background: #fff;
  display: inline-block;
  margin-left: 10px;
}

.projects p {
  font: 400 16px/26px 'Open Sans', sans-serif;
  color: #a7aaac;
}

/* NAV */
.nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #888;
  position: relative;
  cursor: pointer;
}

.nav-btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* SLIDER */
.projectSliderFull {
  margin-top: 40px;
}

.project-item {
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.project-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: 0.4s;
}

/* BUTTON CENTER */
.view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #4da3ff;
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  opacity: 0;
}

/* BOTTOM TITLE BAR */
.project-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #D4B15A;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-weight: 600;
}

/* HOVER EFFECT */
.project-item:hover img {
  transform: scale(1.1);
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-item:hover .view-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* =========================
   SECTION
========================= */
.stats-section {
  position: relative;
  padding: 80px 0;
  background: url('https://shtheme.com/demosd/metallex1/wp-content/uploads/2018/05/numbering_bg.jpg') center/cover no-repeat;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

/* =========================
   STAT BOX
========================= */
.stat-box {
  color: #fff;
}

/* NUMBER */
.stat-number {
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: #d4b15a;
  font-style: italic;
}

.stat-number span {
  line-height: 70px;
  color: #d4b15a;
  font-size: 60px;
  font-weight: 700;
  margin-left: 4px;
  
}

/* TEXT */
.stat-text {
  margin-top: 10px;
  color: #fff;
  font-size: 20px;
  line-height: 29px;
  font-weight: 300;

  font-style: italic;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .stat-number {
    font-size: 32px;
  }
}


.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #1c2837;
  position: relative;
  display: inline-block;

}

.section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #007bff;
  position: absolute;
  left: 105%;
  bottom: 6px;
}

/* SECTION */
.logo-section {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
}

.section-title {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

/* SLIDER WRAPPER */
.logo-slider {
    overflow: hidden;
    position: relative;
}

/* MOVING TRACK */
.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 50s linear infinite;
    gap: 60px;
    align-items: center;
}

/* LOGOS */
.logo-track img {
    width: 150px;
    height: auto;
    /*filter: grayscale(100%);*/
    transition: 0.3s;
}

/*.logo-track img:hover {*/
/*    filter: grayscale(0%);*/
/*    transform: scale(1.1);*/
/*}*/
.logo-slider.paused .logo-track {
    animation-play-state: paused;
}
/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ================= LEFT NEWS ================= */
/*.news-card {*/
/*  margin-bottom: 40px;*/
/*}*/

/*.news-img-wrapper {*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/

/*.news-img-wrapper img {*/
/*  width: 100%;*/
/*  display: block;*/
/*  transition: 0.4s ease;*/
/*}*/

/*.news-card:hover img {*/
/*  transform: scale(1.05);*/
/*}*/

/* Date badge */
/*.news-date {*/
/*  position: absolute;*/
/*  bottom: 15px;*/
/*  left: 15px;*/
/*  background: #d4b15a;*/
/*  color: #fff;*/
/*  padding: 6px 14px;*/
/*  font-size: 13px;*/
/*  font-weight: 600;*/
/*}*/

/* Text */
/*.news-title {*/
/*  font-size: 20px;*/
/*  font-weight: 700;*/
/*  line-height: 26px;*/
/*  color: #000;*/
/*  text-decoration: none;*/

/*  display: block;*/
/*  margin-bottom: 8px;*/
/*}*/

/*.news-title:hover {*/
/*  color: #2488e6;*/
/*  text-decoration: underline;*/
/*}*/

/*.news-desc {*/
/*  color: #797979;*/
/*  font-size: 15px;*/
/*  line-height: 24px;*/
/*  margin-bottom: 10px;*/

/*}*/

/*.read-mores {*/
/*  color: #2488e6;*/
 
/*  font-size: 13px;*/
/*  font-weight: 700;*/
/*  text-decoration: none;*/
/*}*/

/*.read-mores:hover {*/
/*  color: #000;*/
/*}*/

/* ================= SIDEBAR ================= */
/*.sidebar-box {*/
/*  border: 1px solid #ddd;*/
/*}*/

/*.sidebar-item {*/
/*  padding: 20px;*/
/*  border-bottom: 1px solid #ddd;*/
/*  transition: 0.3s;*/
/*}*/

/*.sidebar-item:last-child {*/
/*  border-bottom: none;*/
/*}*/

/* Hover effect */
/*.sidebar-item:hover {*/
/*  background: #3B73A2;*/
/*}*/

/*.sidebar-item:hover a,*/
/*.sidebar-item:hover p {*/
/*  color: #fff;*/
/*}*/

/* Text */
/*.sidebar-item a {*/
/*  font-weight: 700;*/
/*  font-size: 19px;*/
/*  line-height: 26px;*/
/*  color: #000;*/
/*  text-decoration: none;*/
 
/*}*/

/*.sidebar-item p {*/
/*  margin-top: 6px;*/
/*  font-size: 13px;*/
/*  font-weight: 400;*/
/*  line-height: 26px;*/
/*  color: #777;*/
  
/*}*/

/* Footer */
/*.sidebar-footer {*/
/*  padding: 15px 20px;*/
/*}*/

/*.sidebar-footer a {*/
/*  color: #007bff;*/
/*  font-size: 13px;*/
/*  font-weight: 700;*/
/*  text-decoration: none;*/
/*}*/

/*.sidebar-footer a:hover {*/
/*  text-decoration: underline;*/
/*  color: #000;*/
/*}*/

/* ================= RESPONSIVE ================= */
/*@media (max-width: 768px) {*/
/*  .section-title::after {*/
/*    display: none;*/
/*  }*/

/*  .news-card {*/
/*    text-align: center;*/
/*  }*/
/*}*/