:root {
  --black: #080809;
  --white: #fff;
  --logo-color: #d63a30;
  --logo-bg: grey;
}

body {
  font-family: "DM Sans", sans-serif;
}

::-moz-selection {
  background-color: black;
  color: #fff;
}

::selection {
  background-color: black;
  color: #fff;
}


ul,
li {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;

}

a:focus,
a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 5px;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

svg,
img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}


/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--logo-color);
  border-radius: 6px;
  border: 2px solid white;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}







/* **********************************************************************/
/* **********************************************************************/




h5 {
  font-size: 30px;
  color: var(--logo-color);
  font-weight: bold;
  text-align: center;
  font-family: 'Arvo', serif;
}






/* ===============================
   BASE BUTTON
================================ */
.btn-cover {
  margin-top: 20px;
  display: flex;
  justify-content: end;
}

.all-btn {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

/* ===============================
   BUTTON TEXT (SPAN)
================================ */
a.all-btn span {
  position: relative;
  /* anchor for ::before */
  display: inline-block;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid var(--logo-color);
  overflow: hidden;
  /* clips background */
  transition: color 0.3s ease;
  z-index: 1;
}

/* ===============================
   BACKGROUND LAYER (INSIDE SPAN)
================================ */
a.all-btn span::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top right bottom left = 0 */
  width: 100%;
  background-color: var(--logo-color);
  z-index: -1;
  transition: width 0.3s ease-out;
}

/* ===============================
   HOVER FILLED SLIDE LEFT
================================ */
.all-btn.hover-filled-slide-left:hover span::before {
  width: 0%;
}

.all-btn.hover-filled-slide-left:hover span:hover {
  color: var(--logo-color);
}

/* ===============================
   end
================================ */












/* **********************************************************************/
/* **********************************************************************/





/* fixed-phone-btnn */
.fixed-phone-btnn,
.fixed-wtsapp-btnn {
  color: white;
  background-color: var(--logo--orange);
  background-color: rgb(44, 107, 178);
  border-radius: var(--border-radius);
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  z-index: 100;
  text-decoration: none;
}

.fixed-wtsapp-btnn {
  bottom: 95px;
  background: #81d742;
  border: 1px solid #81d742;
}

.fixed-phone-btnn i,
.fixed-wtsapp-btnn i {
  font-size: 25px;
}

.fixed-wtsapp-btnn:hover {
  color: #81d742;
  border: 1px solid #81d742;
  background-color: white;
  transition: 0.4s;
}

.fixed-phone-btnn:hover {
  color: rgb(44, 107, 178);
  border: 1px solid rgb(44, 107, 178);
  background-color: white;
  transition: 0.4s;
}



















/* **********************************************************************/
/* **********************************************************************/

#header-top {
  background: var(--logo-color);
  font-size: 14px;
  /* height: 40px; */
  padding: 10px 0;
}

#header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 8px 0; */
  height: 100%;
}

#header-top a {
  color: #fff;
  text-decoration: none;
  margin-left: 6px;
}

#header-top i {
  color: #fff;
  font-size: 16px;
  vertical-align: middle;
}

#header-top .phone,
#header-top .email-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

#header-top .phone {
  display: flex;
  align-items: center;
  gap: 4px;
}

#header-top .phone a {
  color: #fff;
  text-decoration: none;
}

#header-top .phone .separator {
  color: #fff;
  margin: 0 2px;
}













/* **********************************************************************/
/* ================= HEADER ================= */
/* **********************************************************************/
header {
  background: white;
  height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);

  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}

header .container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* logo */
header .logo {
  height: 80%;
  display: flex;
  align-items: center;
}

header .logo img {
  width: 90%;
}

header .nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}

header .nav-list li a.product-style {
  color: var(--logo-color);
}

header .nav-list li a {
  color: var(--logo-color);
  text-decoration: none;
  font-weight: 500;
  /* font-weight: bold; */
}



header .ham i {
  display: none;
  color: var(--logo-color);
  font-size: 30px;
  font-weight: bold;
}



/* ******************************************************************** */
/* ================= NAV DROPDOWN ================= */
/* ******************************************************************** */

.nav-list li {
  position: relative;
}

/* Dropdown container */
.nav-list .dropdown {
  position: absolute;
  top: 100%;
  left: -75px;
  min-width: 260px;
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Show on hover */
.nav-list li.has-dropdown:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.nav-list .dropdown li {
  list-style: none;
}

.nav-list .dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Hover effect */
.nav-list .dropdown li a:hover {
  background: #f7f9fb;
  color: var(--logo-color);
}

/* Optional subtle divider */
.nav-list .dropdown li+li {
  border-top: 1px solid #eee;
}

/* ******************************************************************** */
/* ******************************************************************** */



/* ================================================= */
/* MOBILE MENU */
/* ================================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}

/* ================= HEADER ================= */

.mobile-header {
  background: var(--logo-color);
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-menu {
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* ================= MENU LIST ================= */

.mobile-nav {
  list-style: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  margin: 0;
}

.mobile-nav li {
  margin: 0;
}

/* links */

.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: block;
}

/* ================= DROPDOWN ================= */
.mobile-nav a,
.mobile-toggle {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* arrow */

.mobile-dropdown>a::after {
  content: "▾";
  color: var(--logo-color);
  font-size: 14px;
  transition: 0.3s;
}

/* rotate arrow */

.mobile-dropdown.active>a::after {
  transform: rotate(180deg);
}

/* dropdown list */

.mobile-dropdown ul {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  gap: 6px;
}

.mobile-dropdown.active ul {
  display: flex;
}

/* dropdown links */

.mobile-dropdown ul li a {
  font-size: 14px;
  border-bottom: none;
  padding: 6px 0;
  color: #555;
}

/* ================================================= */
/* MOBILE BREAKPOINT */
/* ================================================= */

@media (max-width:991px) {

  .desktop-nav {
    display: none;
  }

  header .ham i {
    display: block;
    cursor: pointer;
  }

}














/* **********************************************************************/
/* ================= HERO SECTION ================= */
/* **********************************************************************/

#hero {
  position: relative;
  height: 70vh;
  width: 100%;

  padding: 0;
  overflow: hidden;
}

/* ================= CAROUSEL BASE ================= */

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  height: 100%;
}

/* ================= BACKGROUND SLIDES ================= */

#hero .hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Slide Images */
#hero .slide-1 {
  background-image: url("../images/home/banner/banner1.jpg");
}

#hero .slide-2 {
  background-image: url("../images/home/banner/banner2.jpg");
}

#hero .slide-3 {
  background-image: url("../images/home/banner/banner3.jpg");
}

/* ================= DARK OVERLAY ================= */

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(0 0 0 / 75%),
      rgb(0 0 0 / 75%));
  display: flex;
  align-items: center;
  z-index: 2;
}

/* ================= HERO CONTENT ================= */

#hero .hero-content {
  max-width: 720px;
  color: #ffffff;
}

/* Initial Hidden State */
#hero .hero-content span,
#hero .hero-content h1,
#hero .hero-content p {
  opacity: 0;
  transform: translateY(30px);
}

/* Animate When Slide Is Active */
#hero .carousel-item.active .hero-content span {
  animation: heroFadeUp 0.6s ease forwards;
}

#hero .carousel-item.active .hero-content h1 {
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

#hero .carousel-item.active .hero-content p {
  animation: heroFadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

/* ================= TEXT STYLES ================= */

#hero .hero-content span {
  color: var(--logo-color);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 14px;
}

#hero .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
}

#hero .hero-content p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
}

/* ================= BUTTON FIX ================= */

#hero .btn-cover {
  justify-content: start;
}

#hero .btn-cover a span {
  color: #ffffff;
  padding: 15px 24px;
}

/* ================= ANIMATION ================= */

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}










/* **********************************************************************/
/* ================= ABOUT ================= */
/* **********************************************************************/
#about .welcome-txt {
  margin-bottom: 40px;
}

#about .welcome-txt h5 {
  font-size: 30px;
  color: black;
  font-weight: bold;
  text-align: center;
}

#about .welcome-txt h5 strong {
  font-size: 40px;
  margin-top: 30px;
}

#about .about-intro-left p {
  font-weight: 600;
  font-size: 20px;
}



#about .btn-cover {
  display: flex;
}







/* ================= COMPANY STATS ================= */

#company-stats {
  margin-top: 20px;
}

#company-stats .stats-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  text-align: center;
}

/* stat card */

#company-stats .stats-item {
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  transition: 0.3s ease;
  position: relative;
}

/* hover */

#company-stats .stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* remove divider from last */

#company-stats .stats-item:last-child::after {
  display: none;
}

/* number */

#company-stats .count {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--logo-color);
  letter-spacing: 1px;
}

/* label */

#company-stats .label {
  font-size: 15px;
  color: #555;
  position: relative;
  padding-top: 12px;
}

/* accent line */

#company-stats .label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--logo-color);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ================= RESPONSIVE ================= */

/* Tablet */

@media (max-width: 992px) {

  #company-stats .stats-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* Mobile */

@media (max-width: 576px) {

  #company-stats .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Small phones */

@media (max-width: 400px) {

  #company-stats .stats-wrap {
    grid-template-columns: 1fr;
  }

}










/* marquee */
#about .client-marquee{
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 20px 0;
  margin-top: 40px;
}

#about .marquee-track{
  display: flex;
  width: max-content;
  animation: clientMarquee 50s linear infinite;
}

#about .marquee-track img{
  height: 100px;
  margin: 0 40px;
  object-fit: contain;
}

@keyframes clientMarquee{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}










/* **********************************************************************/
/* ================= INDUSTRIES ================= */
/* **********************************************************************/

#industries {
  padding: 0;
  width: 100%;
  overflow-x: auto;
  /* horizontal scroll on small screens */
}

/* ===============================
   GRID – SINGLE ROW
================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  /* total cards */
  min-width: 1400px;
  /* keeps everything in one row */
}

/* ===============================
   CARD BASE
================================ */
.industry-card {
  height: 350px;
  position: relative;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* ===============================
   GRADIENT OVERLAY
================================ */
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgb(0 0 0),
      rgb(0 0 0 / 28%),
      transparent);
}

/* ===============================
   TEXT
================================ */
.industry-card h4 {
  margin: 0 0 20px 0px;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

/* ===============================
   BACKGROUND IMAGES
================================ */
.industry-card.alcohol {
  background-image: url("../images/home/industries/1.wine.jpg");
}

.industry-card.chemical {
  background-image: url("../images/home/industries/2.Chemical.jpg");
}

.industry-card.pharma {
  background-image: url("../images/home/industries/3.Pharmaceutical.jpg");
}

.industry-card.extraction {
  background-image: url("../images/home/industries/4.Herbal.jpg");
}

.industry-card.bulk-drug {
  background-image: url("../images/home/industries/5.Bulk-Drug.jpg");
}

.industry-card.food {
  background-image: url("../images/home/industries/6.Food-Processing.jpg");
}

.industry-card.process {
  background-image: url("../images/home/industries/7.process-equipment.jpg");
}

/* ===============================
================================ */















/* **********************************************************************/
/* ================= SERVICES ================= */
/* **********************************************************************/
/* ===============================
   SERVICES SECTION
================================ */
#services {
  padding: 80px 0;
  background: #ffffff;
}

/* Header */
#services .services-header {
  margin-bottom: 50px;
}

#services .services-header h5 {
  font-size: 28px;
  margin-bottom: 10px;
}

#services .services-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

/* Card */
#services .service-card {
  background: #f8f9fa;
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover */
#services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
#services .service-icon {
  font-size: 42px;
  color: var(--logo-color);
  margin-bottom: 20px;
}

/* Title */
#services .service-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--logo-color);
  font-weight: bold;
}

/* Text */
#services .service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}










/* **********************************************************************/
/* ================= WHY US ================= */
/* **********************************************************************/

#why-us {
  padding: 0;
  background: linear-gradient(rgba(13, 27, 42, 0.95),
      rgba(13, 27, 42, 0.95)),
    url("../images/home/why-us-home/why-us-home-bg.jpg");
  background-size: cover;
  background-position: center;
}

/* Remove right gap */
#why-us .container-fluid {
  padding-right: 0;
}

/* Ensure row gives height reference */
#why-us .row {
  min-height: 500px;
}

/* ================= LEFT CONTENT ================= */

#why-us .why-content {
  padding: 80px 120px;
}

#why-us .why-title {
  margin-bottom: 30px;
  position: relative;
  color: #fff;
  text-align: start;
}

#why-us .why-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--logo-color);
  position: absolute;
  left: 0;
  bottom: -10px;
}

#why-us .why-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

#why-us .why-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #e0e6ed;
}

#why-us .why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--logo-color);
  font-weight: bold;
}

/* ================= RIGHT IMAGE – FULL BLEED ================= */

#why-us .why-img {
  height: 100%;
  min-height: 500px;

  background-image: url("../images/home/why-us-home/why-us-home-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  clip-path: polygon(0 0,
      100% 0,
      100% 100%,
      18% 100%,
      0 77%);
}



/* ================= FALLBACK ================= */

@supports not (clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)) {
  #why-us .why-img {
    clip-path: none;
  }
}









/* ===============================
   PROJECTS SECTION
================================ */
#projects {
  padding: 80px 0;
  background-color: #010101;
}

/* ===============================
   HEADER
================================ */
#projects .projects-header {
  margin-bottom: 50px;
}

#projects .projects-header h5 {
  font-size: 28px;
  margin-bottom: 10px;
}

#projects .projects-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #ccc;
}

/* ===============================
   PROJECT LINK (CLICKABLE CARD)
================================ */
#projects .project-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}


/* Make owl items full height */
#projects .owl-stage {
  display: flex;
}

#projects .owl-item {
  display: flex;
  justify-content: center;
}

#projects .item {
  display: flex;
  height: 100%;
  width: 100%;
}



/* ===============================
   CARD
================================ */
#projects .project-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;

  display: flex;
  flex-direction: column;
}

/* Hover */
#projects .project-link:hover .project-card {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ===============================
   IMAGE
================================ */
#projects .project-img {
  height: 220px;
  overflow: hidden;
}

#projects .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#projects .project-link:hover .project-img img {
  transform: scale(1.08);
}

/* ===============================
   CONTENT
================================ */
#projects .project-content {
  padding: 25px;
  border-left: 4px solid var(--logo-color);
  /* height: 100%; */
}

/* Title */
#projects .project-content h6 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--logo-color);
  font-weight: bold;
}

/* Text */
#projects .project-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}


/* ===============================
   OWL NAV CUSTOM STYLE
================================ */

#projects .owl-carousel {
  position: relative;
}

#projects .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  /* allows card hover */
}

#projects .owl-nav button {
  pointer-events: all;
  width: 48px;
  height: 48px;
  /* border-radius: 10px !important; */
  border: none !important;
  background: var(--logo-color) !important;
  color: #ffffff !important;
  font-size: 22px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;

}

/* Left button */
#projects .owl-nav .owl-prev {
  margin-left: -24px;
}

/* Right button */
#projects .owl-nav .owl-next {
  margin-right: -24px;
}

/* Hover */
#projects .owl-nav button:hover {
  transform: scale(1.1);
  opacity: 0.9;
}



#projects .btn-cover {
  justify-content: start;
}

#projects .prj-last {
  justify-content: end;

}





















/* ===============================
   GALLERY SECTION
================================ */
/* Section */
#gallery-section {
  padding: 80px 0;
  background: #f7f9fb;

}

/* Header */
#gallery-section .gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

#gallery-section .gallery-header p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Remove grid gap (Bootstrap controlled) */
#gallery-section .gallery-grid {
  margin: 0;
}

/* Item */
#gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  height: 300px;
}

/* Image */
#gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay */
#gallery-section .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.2),
      transparent);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

#gallery-section .gallery-overlay span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Hover */
#gallery-section .gallery-item:hover img {
  transform: scale(1.08);
}

















/* **********************************************************************/
/* ================= FOOTER BASE ================= */
/* **********************************************************************/

#site-footer {
  background: #0d1b2a;
  color: #cfd8dc;
  padding-top: 60px;
  font-size: 14px;
}

#site-footer .footer-main {
  padding-bottom: 40px;
}

#site-footer .footer-col {
  margin-bottom: 30px;
}

#site-footer .logo {
  margin-bottom: 15px;
}

#site-footer i {
  margin-right: 8px;
  color: var(--logo-color);
}

#site-footer p {
  margin-bottom: 10px;
}

#site-footer a {
  color: #cfd8dc;
  text-decoration: none;
}

#site-footer a:hover {
  color: var(--logo-color);
}


/* **********************************************************************/
/* ================= FOOTER TITLES & TEXT ================= */
/* **********************************************************************/

#site-footer .footer-title {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: start;
}

#site-footer .footer-text {
  line-height: 1.7;
}

#site-footer .footer-highlight {
  margin-top: 12px;
  font-weight: 600;
  color: #ffffff;
}

#site-footer .footer-highlight strong {
  color: var(--logo-color);
}


/* **********************************************************************/
/* ================= FOOTER LINKS ================= */
/* **********************************************************************/

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

#site-footer .footer-links li {
  margin-bottom: 8px;
}

#site-footer .footer-links a {
  color: #cfd8dc;
  text-decoration: none;
  transition: color 0.3s ease;
}

#site-footer .footer-links a:hover {
  color: var(--logo-color);
}


/* **********************************************************************/
/* ================= FOOTER SOCIAL ================= */
/* **********************************************************************/

#site-footer .footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

#site-footer .footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 50%; */
  background: white;
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none;
}

#site-footer .footer-social a:hover {
  background: var(--white);
  transform: translateY(-3px);
}

#site-footer .footer-social a i {
  margin: 0;
}


/* **********************************************************************/
/* ================= BOTTOM BAR ================= */
/* **********************************************************************/

#site-footer .copyrights-body {
  background: #08131f;
  padding: 15px 0;
  text-align: center;
}

#site-footer .copyrights-body .container {
  display: flex;
  justify-content: space-between;
}

#site-footer .copyrights-body p {
  margin: 0;
  font-size: 13px;
  color: #9fb3c8;
}













































/* **********************************************************************/
/* about us page  */
/* **********************************************************************/


/* ================= ABOUT HERO ================= */
#page-hero.about-hero {
  height: 50vh;
  background-image: url("../images/home/banner/banner1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0;
}

#page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
}

#page-hero .hero-content span {
  color: var(--logo-color);
  letter-spacing: 2px;
  font-weight: 600;
}

#page-hero .hero-content h1 {
  color: white;
}

#page-hero .hero-content p {
  color: rgba(255, 255, 255, 0.551);
}

/* ================= ABOUT OVERVIEW ================= */
#about-overview p.lead {
  font-size: 20px;
  font-weight: 600;
}

#about-overview p {
  font-size: 15px;
  line-height: 1.7;
}

/* ================= VISION & MISSION ================= */
#vision-mission {
  background: #f7f9fb;
}

#vision-mission .vm-card {
  background: #fff;
  padding: 40px;
  border-left: 4px solid var(--logo-color);
  height: 100%;
}

#vision-mission .vm-card i {
  font-size: 36px;
  color: var(--logo-color);
  margin-bottom: 15px;
  display: inline-block;
}

#vision-mission .vm-card h5 {
  display: inline-block;
}

/* ================= CORE VALUES ================= */
#core-values .value-card {
  background: #f7f9fb;
  padding: 35px 25px;
  border-radius: 10px;
  transition: 0.3s ease;
}

#core-values .value-card i {
  font-size: 40px;
  color: var(--logo-color);
  margin-bottom: 10px;
}

#core-values .value-card h4 {
  color: var(--logo-color);
}

#core-values .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* ================= LEADERSHIP ================= */
#leadership {
  background: #f7f9fb;
}

#leadership .leader-img img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid black;
}

#leadership .leadership-profile h5 {
  margin-bottom: 40px;
  text-align: start;
}

#leadership .leadership-profile h4 {
  color: var(--logo-color);
  text-transform: capitalize;
}

#leadership .leader-profile {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

#leadership .leader-profile li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}

#leadership .leader-profile li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--logo-color);
}




/* ================= PROFESSIONAL EXPERIENCE ================= */

#leadership-exp {
  border-bottom: 1px solid var(--logo-color);
}

#leadership-exp .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 700;
}

#leadership-exp .section-title i {
  color: var(--logo-color);
  font-size: 24px;
}

/* Timeline wrapper */
#leadership-exp .experience-timeline {
  position: relative;
  padding-left: 40px;
}

/* Vertical line */
#leadership-exp .experience-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e5e7eb;
}

/* Row */
#leadership-exp .experience-row {
  position: relative;
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

/* Timeline dot */
#leadership-exp .experience-row::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--logo-color);
  border-radius: 50%;
}

/* Year badge */
#leadership-exp .experience-year {
  min-width: 120px;
  font-size: 13px;
  font-weight: 700;
  color: var(--logo-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card */
#leadership-exp .experience-card {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#leadership-exp .experience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Role */
#leadership-exp .experience-card h6 {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

/* Organization */
#leadership-exp .experience-card .exp-org {
  font-size: 14px;
  font-weight: 600;
  color: var(--logo-color);
  margin-bottom: 10px;
}

/* Description */
#leadership-exp .experience-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #leadership-exp .experience-timeline {
    padding-left: 25px;
  }

  #leadership-exp .experience-row {
    flex-direction: column;
    gap: 10px;
  }

  #leadership-exp .experience-year {
    font-size: 12px;
  }
}















/* ================= MD MESSAGE ================= */
#md-message {
  background: #0d1b2a;
  color: #e0e6ed;
}

#md-message blockquote {
  max-width: 900px;
  margin: auto;
  position: relative;
  padding-left: 30px;
}

#md-message blockquote::before {
  content: "“";
  font-size: 60px;
  color: var(--logo-color);
  position: absolute;
  left: 0;
  top: -20px;
}

#md-message .md-message-footer {
  display: flex;
  justify-content: end;
  margin-top: 20px;
  text-align: end;
}










/* ================= CERTIFICATIONS ================= */
#certifications {
  background: #f7f9fb;
}

#certifications .cert-icon {
  font-size: 42px;
  color: var(--logo-color);
  margin-bottom: 10px;
}

#certifications p {
  max-width: 600px;
  margin: 20px auto;
}

#certifications img.certifi-img {
  margin-bottom: 20px;
}





/* ================= OUR TEAM ================= */

#our-team{
  padding:80px 0;
}

/* header */

#our-team .team-header{
  margin-bottom:50px;
}

#our-team .team-header h2{
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
}

#our-team .team-header p{
  max-width:720px;
  margin: 20px auto;
  color:#666;
  line-height:1.7;
}








/* ================= TEAM MEMBERS ================= */

#our-team .team-members{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:25px;
  margin-bottom:60px;
  text-align:center;
}

/* card */

#our-team .team-card{
  background:#fff;
  padding:25px 20px;
  border-radius:8px;
  border:1px solid #e6e6e6;
  transition:0.3s ease;
}

/* hover */

#our-team .team-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

/* image */

#our-team .team-card img{
  width: 150px;
  height: 150px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:15px;
  border: 1px solid var(--logo-color);
}

/* name */

#our-team .team-card h6{
  font-size:16px;
  font-weight:600;
  margin-bottom:4px;
  color: var(--logo-color);
}

/* role */

#our-team .team-card p{
  font-size:14px;
  color:#666;
  margin:0;
}

/* responsive */

@media(max-width:992px){
  #our-team .team-members{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  #our-team .team-members{
    grid-template-columns:1fr;
  }
}






/* gallery */

#our-team .team-gallery{
  display:flex;
  justify-content:center;
}

/* item */

#our-team .team-item{
  max-width:900px;
  width:100%;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

/* image */

#our-team .team-item img{
  width:100%;
  height:auto;
  display:block;
}


/* ================= ABOUT CTA ================= */
#about-cta {
  background:
    rgba(0, 0, 0, 0.85) url("../images/about-page/abt-CTA.jpg");
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
}

#about-cta h5 {
  color: #fff;
}



















/* ******************************************************************** */
/* ================= SERVICES HERO ================= */
/* ******************************************************************** */

#page-hero.services-hero {
  height: 50vh;
  background: url("../images/services-page/services-page-bg.jpg") center / cover no-repeat;
  position: relative;
}

#page-hero.services-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
}

#page-hero.services-hero span {
  color: var(--logo-color);
  letter-spacing: 2px;
  font-weight: 600;
}






/* ******************************************************************** */
/* ================= SERVICES GRID ================= */
/* ******************************************************************** */

#services-grid {
  background: #f7f9fb;
}

.service-card {
  background: #ffffff;
  padding: 40px 30px;
  height: 100%;
  border-left: 4px solid var(--logo-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.service-card i {
  font-size: 42px;
  color: var(--logo-color);
  margin-bottom: 15px;
  display: inline-block;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Placeholder future card */
.service-card.future {
  opacity: 0.7;
  border-left-style: dashed;
}

/* ******************************************************************** */
/* ================= HOW WE WORK ================= */
/* ******************************************************************** */

#how-we-work {
  background: #0d1b2a;
  color: #e0e6ed;
}

.work-step span {
  font-size: 28px;
  font-weight: 700;
  color: var(--logo-color);
}

.work-step h5 {
  margin-top: 10px;
  font-weight: 700;
}

.work-step p {
  font-size: 14px;
  color: #cfd8dc;
}

/* ******************************************************************** */
/* ================= SERVICES CTA ================= */
/* ******************************************************************** */

#services-cta {
  background: rgba(0, 0, 0, 0.85) url("https://images.unsplash.com/photo-1598299803204-b73796f43289?q=80&w=1600&auto=format&fit=crop") center / cover no-repeat;
}

#services-cta h5 {
  color: #ffffff;
  margin-bottom: 20px;
}

/* ******************************************************************** */
/* ================= RESPONSIVE ================= */
/* ******************************************************************** */

@media (max-width: 768px) {
  .service-card {
    padding: 30px 20px;
  }
}












/* =====================================================
   PRODUCT INDIVIDUAL PAGE – LAYOUT
===================================================== */
#page-hero.individual-product-page-bg {
  height: 160px;
  background-image: url("../images/services-page/services-page-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0;
}

/* ================= ASIDE PRODUCT LIST ================= */
.aside-product-list {
  position: sticky;
  top: 120px;
  max-height: calc(100vh - 150px);
  /* viewport-safe */
  overflow-y: auto;
  background: #a0a0a026;
  /* padding: 20px 10px; */
  border-radius: 10px;
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: var(--logo-color) transparent;
}

/* WebKit scrollbar */
.aside-product-list::-webkit-scrollbar {
  width: 6px;
}

.aside-product-list::-webkit-scrollbar-thumb {
  background-color: var(--logo-color);
  border-radius: 10px;
}



/* ================= SUB HEADINGS ================= */

.aside-product-list h5 {
  /* margin-bottom: 6px; */
  font-size: 15px;
  font-weight: 700;
  /* text-decoration: underline; */
}

/* .aside-product-list h6 {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-decoration: underline;
} */

/* ================= PRODUCT LINKS ================= */
.aside-product-list ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.aside-product-list ul li {
  font-size: 14px;
  margin-bottom: 6px;
  list-style-type: decimal;
}

.aside-product-list ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.aside-product-list ul li a:hover {
  color: var(--logo-color);
  text-decoration: underline;
}


/* ================= ASIDE ACCORDION ================= */

.aside-accordion-item ul {
  display: none;
  transition: all 0.3s ease;
}

.aside-accordion-item h5 {
  cursor: pointer;
  position: relative;
  background: var(--logo-color);
  color: white;
  padding: 10px;
  /* border-radius: 10px; */
  padding-right: 30px;
}

/* Arrow */
.aside-accordion-item h5::after {
  content: "+";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Open State */
.aside-accordion-item h5.open::after {
  content: "−";
}

.aside-accordion-item h5.open+ul {
  display: block;
  padding: 6px 20px 0 20px;
}






/* ================= RIGHT CONTENT ================= */

.product-category {
  background: #f1f1f1;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.product-category h4.product-category-heading {
  font-size: 30px;
  color: var(--logo-color);
  font-weight: bold;
  font-family: 'Arvo', serif;
  text-decoration: underline;
}

.individual-item-content-info {
  padding-top: 50px;
  scroll-margin-top: 120px;
  /* anchor offset */
}

.individual-item-content-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: start;
}

/* Images */
.individual-item-content-info-imgs {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
}

.individual-item-content-info-imgs img {
  width: 49%;
  border-radius: var(--border-radius);
  margin: 15px 0;
  /* cursor: pointer; */
  object-fit: cover;
}

/* Description text */
.individual-item-content-info-content p,
.individual-item-content-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .aside-product-list {
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
    margin-bottom: 30px;
  }

  .individual-item-content-info {
    padding-top: 60px;
  }

  .individual-item-content-info-imgs img {
    width: 100%;
  }
}


















/* =======================================================
   PROJECTS DETAILED SECTION
======================================================= */

#projects-detailed {
  padding: 0;
}

#projects-detailed .project-category {
  padding-bottom: 0;
}

#projects-detailed .project-category.alt-bg {
  background: #f8fafc;
  border-top: 1px solid #d63a30b5;
  border-bottom: 1px solid #d63a30b5;
}

/* ================= CATEGORY TITLE ================= */

#projects-detailed .category-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--logo-color);
  position: relative;
}

#projects-detailed .category-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--logo-color);
  position: absolute;
  bottom: -12px;
  left: 0;
}

/* ================= PROJECT BLOCK ================= */

#projects-detailed .project-block {
  margin-bottom: 45px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  height: 100%;
}

#projects-detailed .project-block:last-child {
  border-bottom: none;
}

/* ================= COMPANY TITLE ================= */

#projects-detailed .company-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--logo-color);
  margin-bottom: 15px;
}

/* ================= LIST STYLING ================= */

#projects-detailed .project-block ul {
  padding-left: 20px;
  margin: 0;
}

#projects-detailed .project-block ul li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #444;
}

/* ================= PROJECT IMAGES ================= */

#projects-detailed .project-images {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  width: 100%;
}

#projects-detailed .project-images img {
  flex: 1;
  height: 200px;
  height: 235px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  border: 1px solid var(--logo-color);
  padding: 5px;
  width: 50%;
}

/* ================= RESPONSIVE FIX ================= */

@media (max-width: 768px) {


  #projects-detailed .project-images img {
    height: 180px;
  }
}







































/* ******************************************************************** */
/* ================= gallery HERO ================= */
/* ******************************************************************** */

#page-hero.gallery-hero {
  height: 50vh;
  background-image: url("../images/home/banner/banner3.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0;
}

#page-hero.gallery-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
}

#page-hero.gallery-hero span {
  color: var(--logo-color);
  letter-spacing: 2px;
  font-weight: 600;
}

/* ******************************************************************** */
/* =================  GALLERY ================= */
/* ******************************************************************** */


/* Card */
#gallery-page .gallery-img-card {
  position: relative;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  border: 1px solid var(--logo-color);
}

/* Image */
#gallery-page .gallery-img-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover zoom */
#gallery-page .gallery-img-card:hover img {
  transform: scale(1.08);
}



/* ******************************************************************** */
/* ================= MODAL (FIXED & SAFE) ================= */
/* ******************************************************************** */

/* Modal image */
#imageModal img {
  max-height: 90vh;
  width: 100%;
  object-fit: contain;
  pointer-events: none;
  /* 🔥 critical: image must not block clicks */
}

/* Close button wrapper */
.modal-close-wrapper {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1056;
  /* above image */
}

/* ******************************************************************** */
/* ================= RESPONSIVE ================= */
/* ******************************************************************** */

@media (max-width: 768px) {
  .project-img-card {
    height: 200px;
  }
}















/* ******************************************************************** */
/* ================= INFRA HERO ================= */
/* ******************************************************************** */

#page-hero.infrastructure-hero {
  height: 50vh;
  background: url("../images/home/why-us-home/why-us-home-bg.jpg") center / cover no-repeat;
  position: relative;
}

#page-hero.infrastructure-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
}

#page-hero.infrastructure-hero span {
  color: var(--logo-color);
  letter-spacing: 2px;
  font-weight: 600;
}

/* ******************************************************************** */
/* ================= INFRA OVERVIEW ================= */
/* ******************************************************************** */

#infra-overview .lead {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* ******************************************************************** */
/* ================= FACILITIES ================= */
/* ******************************************************************** */

#infra-facilities {
  background: #f7f9fb;
}

.facility-card {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.facility-card:hover img {
  transform: scale(1.08);
}

.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.35),
      transparent);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.facility-overlay h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}










/* ================= INFRASTRUCTURE PAGE ================= */
#infrastructure-page {
  padding: 80px 0;
}

/* Header */
#infrastructure-page .infra-header {
  max-width: 850px;
  margin-bottom: 50px;
}

#infrastructure-page .infra-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--logo-color);
  margin-bottom: 15px;
}

#infrastructure-page .infra-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Blocks */
#infrastructure-page .infra-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--logo-color);
  height: 100%;
  transition: 0.3s ease;
}

#infrastructure-page .infra-block:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

/* Block Title */
#infrastructure-page .infra-block h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--logo-color);
}

/* List */
#infrastructure-page .infra-block ul {
  padding-left: 18px;
  margin: 0;
}

#infrastructure-page .infra-block ul li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #444;
}

/* Bottom Text */
#infrastructure-page .infra-footer-text {
  margin-top: 60px;
  max-width: 850px;
}

#infrastructure-page .infra-footer-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

















/* ================= CLIENT LOGOS ================= */

/* ******************************************************************** */
/* ================= INFRA HERO ================= */
/* ******************************************************************** */

#page-hero.clients-hero {
  height: 50vh;
  background: url("../images/home/why-us-home/why-us-home-bg.jpg") center / cover no-repeat;
  position: relative;
}

#page-hero.clients-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
}

#page-hero.clients-hero span {
  color: var(--logo-color);
  letter-spacing: 2px;
  font-weight: 600;
}

#client-logos {
  padding: 80px 0;
  background: #f8fafc;
}

/* Section header */
#client-logos .section-header {
  margin-bottom: 50px;
}

#client-logos .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--logo-color);
  margin-bottom: 10px;
}

#client-logos .section-header p {
  color: #666;
  font-size: 15px;
}

/* Logo container */
#client-logos .client-logo {
  background: #ffffff;
  /* padding: 30px; */
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

/* Hover effect */
#client-logos .client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Image */
#client-logos .client-logo img {
  /* max-height: 70px; */
  max-width: 100%;
  object-fit: contain;
}



/* Responsive */
@media (max-width: 992px) {
  #client-logos .client-logo {
    height: 120px;
  }
}

@media (max-width: 576px) {
  #client-logos .client-logo {
    height: 100px;
    padding: 20px;
  }
}




























/* **********************************************************************/
/* contact us page  */
/* **********************************************************************/
/* ================= CAREER FORM ================= */
/* ================= CONTACT HERO ================= */

#page-hero.career-hero {
  height: 50vh;
  background-image: url("../images/career/career-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0;
}

#page-hero.career-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
}

#page-hero.career-hero span {
  color: var(--logo-color);
  letter-spacing: 2px;
  font-weight: 600;
}

/* =====================================================
   CAREER FORM SECTION
===================================================== */

#career-form {
  padding: 90px 0;
  background: #f8fafc;
}

/* ================= HEADER ================= */

#career-form .career-header {
  max-width: 720px;
  margin: auto;
  margin-bottom: 55px;
}

#career-form .career-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--logo-color);
  margin-bottom: 12px;
}

#career-form .career-header p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ================= FORM CONTAINER ================= */

#career-form .career-form-wrapper {
  max-width: 950px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  border-top: 4px solid var(--logo-color);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

/* ================= LABELS ================= */

#career-form label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #444;
}

/* ================= INPUT FIELDS ================= */

#career-form input,
#career-form textarea {

  width: 100%;
  padding: 13px 14px;

  font-size: 14px;
  color: #333;

  border-radius: 6px;
  border: 1px solid #dcdcdc;

  background: #fff;

  transition: all 0.25s ease;
}

/* Focus style */

#career-form input:focus,
#career-form textarea:focus {

  border-color: var(--logo-color);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.04);
  outline: none;
}

/* File input */

#career-form input[type="file"] {
  padding: 10px;
}

/* Textarea */

#career-form textarea {
  resize: none;
}

/* ================= BUTTON ================= */

#career-form .career-btn {

  background: var(--logo-color);
  color: #fff;

  border: none;

  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;

  border-radius: 6px;

  cursor: pointer;

  transition: all 0.3s ease;
}

/* Hover */

#career-form .career-btn:hover {

  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  #career-form .career-form-wrapper {
    padding: 35px;
  }

}

@media (max-width: 576px) {

  #career-form {
    padding: 70px 0;
  }

  #career-form .career-form-wrapper {
    padding: 25px;
  }

}








/* **********************************************************************/
/* contact us page  */
/* **********************************************************************/
/* ================= CONTACT HERO ================= */

#page-hero.contact-hero {
  height: 50vh;
  background-image: url("../images/contact-page/contact-page-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0;
}

#page-hero.contact-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
}

#page-hero.contact-hero span {
  color: var(--logo-color);
  letter-spacing: 2px;
  font-weight: 600;
}

/* ================= CONTACT INFO ================= */
#contact-info .contact-card {
  background: #f7f9fb;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact-info .contact-card i {
  font-size: 40px;
  color: var(--logo-color);
  margin-bottom: 15px;
}

#contact-info .contact-card h4 {
  font-size: 18px;
  font-weight: bold;
  color: var(--logo-color);
  margin-bottom: 10px;
}

#contact-info .contact-card p,
#contact-info .contact-card a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

#contact-info .contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* ================= CONTACT MAIN ================= */
#contact-main {
  background: #f7f9fb;
}

.contact-form-wrap {
  background: #ffffff;
  padding: 40px;
  height: 100%;
}

.contact-form-wrap h5 {
  text-align: left;
  margin-bottom: 25px;
}

.contact-form-wrap .form-control {
  font-size: 14px;
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 12px;
}

.contact-form-wrap .form-control:focus {
  border-color: var(--logo-color);
  box-shadow: none;
}



.contact-form-wrap button.all-btn span {
  position: relative;
  /* anchor for ::before */
  display: inline-block;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid var(--logo-color);
  overflow: hidden;
  /* clips background */
  transition: color 0.3s ease;
  z-index: 1;
}

/* ===============================
   BACKGROUND LAYER (INSIDE SPAN)
================================ */
.contact-form-wrap button.all-btn span::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top right bottom left = 0 */
  width: 100%;
  background-color: var(--logo-color);
  z-index: -1;
  transition: width 0.3s ease-out;
}

/* ===============================
   HOVER FILLED SLIDE LEFT
================================ */
.contact-form-wrap .all-btn.hover-filled-slide-left:hover span::before {
  width: 0%;
}

.contact-form-wrap .all-btn.hover-filled-slide-left:hover span:hover {
  color: var(--logo-color);
}













/* ================= MAP ================= */
.contact-map {
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}