html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* PERF: Optimize font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
  --primary-gold: #f4c430;
  --dark-bg: #1a1a1a;
  --light-gray: #f5f5f5;
  --medium-gray: #6c757d;
  --accent-blue: #2c5aa0;
  --border-color: #e0e0e0;
  --text-dark: #2d2d2d;
}

.service-box {
  margin: 0 15px 40px !important;
}

/* ===== PAGE LOADER WRAPPER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  will-change: opacity;
}

.loader {
  width: 175px;
  height: 80px;
  display: block;
  margin: auto;
  /* PERF: Use will-change to optimize animation */
  will-change: transform;
  background-image: radial-gradient(
      circle 25px at 25px 25px,
      #fff 100%,
      transparent 0
    ),
    radial-gradient(circle 50px at 50px 50px, #fff 100%, transparent 0),
    radial-gradient(circle 25px at 25px 25px, #fff 100%, transparent 0),
    linear-gradient(#fff 50px, transparent 0);
  background-size: 50px 50px, 100px 76px, 50px 50px, 120px 40px;
  background-position: 0px 30px, 37px 0px, 122px 30px, 25px 40px;
  background-repeat: no-repeat;
  position: relative;
  box-sizing: border-box;
}

.loader::before {
  content: "";
  left: 60px;
  bottom: 18px;
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgb(255, 187, 0);
  background-image: radial-gradient(
      circle 8px at 18px 18px,
      #fff 100%,
      transparent 0
    ),
    radial-gradient(circle 4px at 18px 0px, #fff 100%, transparent 0),
    radial-gradient(circle 4px at 0px 18px, #fff 100%, transparent 0),
    radial-gradient(circle 4px at 36px 18px, #fff 100%, transparent 0),
    radial-gradient(circle 4px at 18px 36px, #fff 100%, transparent 0),
    radial-gradient(circle 4px at 30px 5px, #fff 100%, transparent 0),
    radial-gradient(circle 4px at 30px 5px, #fff 100%, transparent 0),
    radial-gradient(circle 4px at 30px 30px, #fff 100%, transparent 0),
    radial-gradient(circle 4px at 5px 30px, #fff 100%, transparent 0),
    radial-gradient(circle 4px at 5px 5px, #fff 100%, transparent 0);
  background-repeat: no-repeat;
  box-sizing: border-box;
  /* PERF: GPU-accelerated animation (transform instead of expensive properties) */
  animation: rotationBack 3s linear infinite;
  will-change: transform;
}

.loader::after {
  content: "";
  left: 94px;
  bottom: 15px;
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgb(85, 85, 85);
  background-image: radial-gradient(
      circle 5px at 12px 12px,
      #fff 100%,
      transparent 0
    ),
    radial-gradient(circle 2.5px at 12px 0px, #fff 100%, transparent 0),
    radial-gradient(circle 2.5px at 0px 12px, #fff 100%, transparent 0),
    radial-gradient(circle 2.5px at 24px 12px, #fff 100%, transparent 0),
    radial-gradient(circle 2.5px at 12px 24px, #fff 100%, transparent 0),
    radial-gradient(circle 2.5px at 20px 3px, #fff 100%, transparent 0),
    radial-gradient(circle 2.5px at 20px 3px, #fff 100%, transparent 0),
    radial-gradient(circle 2.5px at 20px 20px, #fff 100%, transparent 0),
    radial-gradient(circle 2.5px at 3px 20px, #fff 100%, transparent 0),
    radial-gradient(circle 2.5px at 3px 3px, #fff 100%, transparent 0);
  background-repeat: no-repeat;
  box-sizing: border-box;
  animation: rotationBack 4s linear infinite reverse;
  will-change: transform;
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* ===== TOP BAR BASE ===== */
.topbar {
  background: transparent;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: none;
  z-index: 30;
  margin: 0;
  padding: 12px 125px;
  /* PERF: Enable GPU acceleration for smooth rendering */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left side: phone / email / location */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-left span {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.topbar-left span i {
  margin-right: 6px;
  font-size: 14px;
}

.topbar-left a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.topbar-left a:hover {
  color: #f4c613;
}

/* Right side: social icons */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-right i {
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.topbar-right i:hover {
  color: #f4c613;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 991.98px) {
  .topbar {
    padding: 12px 20px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .topbar-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .topbar-left span {
    font-size: 13px;
  }

  /* Hide social icons on tablet + mobile */
  .topbar-right {
    display: none !important;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .topbar {
    padding: 10px 15px;
  }

  .topbar-left span {
    font-size: 12px;
  }

  .topbar-left {
    gap: 12px;
  }
}

/* Extra Small - Icon Only Mode */
@media (max-width: 460px) {
  .topbar {
    padding: 10px;
    justify-content: center;
  }

  .topbar-left {
    justify-content: center;
    gap: 8px;
  }

  .topbar-left span {
    font-size: 0 !important; /* Hide the text completely */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    overflow: hidden;
  }

  .topbar-left span i {
    font-size: 18px !important;
    color: #000;
    margin: 0;
  }

  .topbar-left a {
    color: inherit;
  }
}
/* nav img */

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 20px;
  }
}

.navbar-brand > img {
  display: block;
  padding: 0px;
  height: 70px !important;
  width: 60px;
}

/* Active Navigation Link Styling */
.nav-link.active {
  color: #f4c613 !important;
  font-weight: 600;
  border-bottom: 3px solid #f4c613;
  padding-bottom: 2px !important;
}

.nav-link:hover {
  color: #f4c613 !important;
  transition: all 0.3s ease;
}

/* Active Product Navigation Subheading */
.product-nav.active {
  color: #f4c613 !important;
  font-weight: 600;
  background-color: rgba(244, 198, 19, 0.1);
}

.product-nav:hover {
  color: #f4c613 !important;
}

header,
.hero-slider,
.hero-section,
.slider-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 3;
}

/* HERO CONTENT & BUTTONS */
.hero-content-container {
  position: relative;
  z-index: 4;
  width: 100%;
}

@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateY(30px) translateZ(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateY(0) translateZ(0);
  }
}

.hero-content {
  position: absolute;
  bottom: auto;
  top: 50%;
  left: 30px;
  width: 100%;
  max-width: 650px;
  opacity: 0;
  transform: translateY(-50%) translateY(30px);
  pointer-events: none;
  /* PERF: Enable GPU acceleration for smooth animations */
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-content.active {
  animation: fadeInContent 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s forwards;
  pointer-events: auto;
}

/* MAIN HERO BUTTON STYLE */
.hero-button {
  background: #f4c613 !important;
  color: #000 !important;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(244, 198, 19, 0.5) !important;
  transition: all 0.4s ease !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.hero-button:hover {
  background: transparent !important;
  color: #f8f1f1 !important;
  transform: translateY(-7px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35) !important;
  border: 1px solid #ffffff !important;
}

/* Shine on hover */
.hero-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.7s;
}

.hero-button:hover::before {
  left: 100%;
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px) translateZ(0);
  }
  50% {
    transform: translateY(-5px) translateZ(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
}

.hero-title {
  opacity: 0;
  transform: translateY(60px);
  /* PERF: Enable 3D transforms for GPU acceleration */
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-title.active {
  animation: fadeInSlideUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  padding-top: 100px;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 15px;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, transform 0.3s;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

@media (max-width: 991.98px) {
  .slider-arrow {
    display: none;
  }
}

/* SERVICES SMALL ICON CARD (legacy) */
.service-card {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 0 !important;
  padding: 0 !important;
}

.service-card i {
  font-size: 40px;
  color: #0a2b4c;
  margin-bottom: 15px;
}

/* PROJECT IMAGE CARD */
.project-card img {
  width: 100%;
  border-radius: 8px;
}

/* FOOTER BASE */
footer {
  background: #0a2b4c;
  color: #fff;
  padding: 0px 0;
}

.footer-widget .list li {
  position: relative;
  padding-left: 18px; /* space for bullet */
  margin-bottom: 10px;
}

.footer-widget .list li::before {
  content: "▸"; /* bullet style */
  position: absolute;
  left: 0;
  top: 0;
  color: #f2d046; /* theme yellow */
  font-size: 14px;
  line-height: 1.2;
}

/* Call to Action */
.call-to-action {
  background: #f2d046;
  padding: 45px 0;
  text-align: center;
}

.call-to-action h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0a2b4c;
  margin: 0;
}

.call-to-action .more {
  font-size: 30px;
  font-weight: 700;
  color: #0a2b4c;
  text-decoration: underline;
  transition: 0.3s;
}

.call-to-action .more:hover {
  text-decoration: underline;
}

/* Responsive Navbar Styles */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== DROPDOWN HOVER EFFECT ========== */
/* Show dropdown menu on hover for desktop */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block !important;
    animation: dropdownSlideDown 0.3s ease-out forwards;
  }

  .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(10, 43, 76, 0.95);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
  }

  .dropdown-item:hover {
    background-color: rgba(244, 198, 19, 0.1);
    color: #f4c613;
  }
}

@keyframes dropdownSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10, 43, 76, 0.95);
    padding: 20px;
    border-radius: 8px;
    margin-top: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 31;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-item {
    margin: 8px 0;
  }

  .nav-link {
    padding: 10px 0 !important;
  }

  .nav-divider {
    display: none;
  }

  .hero-title {
    font-size: 32px !important;
    font-weight: 700 !important;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow.prev {
    left: 15px;
  }

  .slider-arrow.next {
    right: 15px;
  }
}

/* ====================================
   SERVICES SECTION – SWIPER
==================================== */
.service-section {
  background: #f2f2f2;
  padding: 60px 0 0 0;
  text-align: left;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #161616;
}

.section-subtitle {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 1.6;
  color: #161616;
}

.myServicesSlider {
  width: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.service-box {
  width: 100%;
  background: transparent;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 0 !important;
}

.service-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title under image */
.service-title {
  font-size: 17px;
  margin: 0 !important;
  font-weight: 600;
  color: #000;
  padding: 12px 10px;
  text-align: center;
}

/* Title underline */
.underline {
  display: block;
  width: 40px;
  height: 2px;
  background: #f2f2f2;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  transition: width 0.4s ease, background-color 0.4s ease;
}

/* HOVER EFFECT */
.service-box:hover img {
  transform: scale(1.15);
}

.service-box:hover .underline {
  width: 100%;
  background: #f1c40f;
}

/* Button under slider */
.services-btn-container {
  width: 100%;
  text-align: center;
  margin-top: -20px;
}

#more-services {
  display: inline-block;
  padding: 12px 32px;
  margin-top: 0px;
  background: #ffffff;
  color: #182431;
  border: 1px solid #080808;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

#more-services:hover {
  background: #182431;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

#more-services:active {
  transform: translateY(0px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

/* Tablet */
@media (max-width: 992px) {
  .service-img img {
    height: 230px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .service-section {
    padding: 40px 0;
  }

  .service-img img {
    height: 200px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}

/* Extra Small Mobile */
@media (max-width: 430px) {
  .service-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .myServicesSlider .swiper-slide {
    width: 100% !important;
  }

  .service-img img {
    height: 180px !important;
  }

  .service-title {
    font-size: 16px;
  }
}

/* General small-screen tweaks */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem !important;
  }

  .hero-content p {
    font-size: 1rem !important;
  }

  .call-to-action .auto-container {
    flex-direction: column;
    gap: 20px;
  }

  .call-to-action h2 {
    font-size: 24px;
  }

  .call-to-action .more {
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand span {
    font-size: 24px;
  }

  .hero-title {
    font-size: 1.75rem !important;
  }
}

/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 75px 0;
}

/* Left content */
.about-content {
  padding-right: 30px;
}

.about-text {
  box-sizing: border-box;
  color: #666666;
  columns: auto;
  font-size: 16px;
  line-height: 27.2px;
  margin: 20px 0px;
  padding: 0px 20px 0px 0px;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.about-text {
  margin: 20px 0;
  color: #161616;
  line-height: 1.6;
  font-size: 17px;
}

/* Right image grid – 2 equal images like in design */
.about-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  justify-content: flex-end;
}

.about-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .about-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .about-images {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .about-img {
    height: 260px;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 430px) {
  .about-img {
    height: 240px;
    max-width: 80%;
  }
}

.about-content {
  padding-right: 20px;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-content h2 .underline {
  width: 50px;
  height: 3px;
  background: #d4b200;
  display: inline-block;
}

.about-text {
  margin: 20px 0;
  color: #161616;
  line-height: 1.6;
  font-size: 16px;
}

.about-bold {
  margin-top: 25px;
  color: #444;
  font-size: 17px;
  line-height: 30px;
}

.about-bold strong em {
  font-style: italic;
  font-weight: 700;
}

/* Right image grid */
.about-images {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.about-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
  padding-left: 0;
}

/* Responsive about images */
@media (max-width: 991px) {
  .about-images {
    margin-top: 30px;
  }

  .about-img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .about-images {
    flex-direction: column;
  }

  .about-img {
    width: 100%;
    height: 260px;
    margin-bottom: 15px;
  }
}

@media (max-width: 430px) {
  .about-img {
    width: 70%;
    margin: 0 auto;
  }
}

/* PROJECT / PRODUCTS SECTION */
.project-section {
  position: relative;
  padding: 60px 30px 52px;
  background-color: #182431;
  width: 100%;
  margin: 0;
}

.sec-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

.sec-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff !important;
  position: relative;
}

.sec-title h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: #fbd848;
}

.projects {
  position: relative;
  font-size: 15px;
  color: #fbd848;
  text-decoration: none;
  transition: all 500ms ease;
  border-bottom: 1px solid #fbd848;
  padding-bottom: 3px;
}

.projects:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

@media (max-width: 992px) {
  .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.services-block-two {
  position: relative;
  margin-bottom: 20px;
  border-bottom: 5px solid #f2d046;
  border-radius: 10px;
}

.services-block-two .inner-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.services-block-two .inner-box .image {
  position: relative;
  overflow: hidden;
}

.services-block-two .inner-box .image img {
  position: relative;
  width: 100%;
  height: 180px;
  /*object-fit: cover;*/
  object-fit: fill;
  display: block;
  transition: transform 0.5s ease;
}

.services-block-two .inner-box:hover .image img {
  transform: scale(1.05);
}

.services-block-two .inner-box .image .content-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
  background-color: rgba(251, 216, 72, 0.9);
  transition: all 0.5s ease;
  transform: scaleY(0);
  transform-origin: top;
}

.services-block-two .inner-box:hover .image .content-overlay {
  opacity: 1;
  transform: scaleY(1);
}

.services-block-two.style-two .inner-box .image .content-overlay {
  background-color: rgba(2, 173, 136, 0.9);
}

.services-block-two .inner-box .image .content-overlay .overlay-inner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: table;
  text-align: center;
  padding: 10px 20px;
  vertical-align: middle;
}

.services-block-two
  .inner-box
  .image
  .content-overlay
  .overlay-inner
  .content-box {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.services-block-two .inner-box .image .content-overlay .content-box h4 {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.services-block-two .inner-box .image .content-overlay .content-box h4 a {
  position: relative;
  color: #242424;
  text-decoration: none;
}

.services-block-two .inner-box .image .content-overlay .content-box .detail {
  position: relative;
  color: #242424;
  font-size: 13px;
  text-decoration: underline;
  font-weight: 500;
}

.services-block-two .inner-box .image .content-overlay .content-box h4 a:hover,
.services-block-two
  .inner-box
  .image
  .content-overlay
  .content-box
  .detail:hover {
  color: #000;
}

/* How We Work base section (history) */
.history-page-section {
  padding: 60px 0;
  background: #ffffff;
}

/* Auto container */
.auto-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 60px;
}

.about-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-title .line {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: #f4b400;
  margin-left: 10px;
  vertical-align: middle;
}

.bold-text {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #555;
  width: 700px;
}

.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.services-row {
  margin: 0 !important;
  padding: 0 !important;
}

/* How We Work – main background */
.how-we-work {
  position: relative;
  padding: 60px 90px;
}

.how-we-work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #5e5e5e;
  z-index: 0;
}

/* Keep content above overlay */
.how-we-work > * {
  position: relative;
  z-index: 1;
}

/* Mobile fix for background */
@media (max-width: 600px) {
  .how-we-work {
    background-attachment: scroll;
    background-position: center;
    padding: 50px 20px;
  }
}

/* TITLE */
.hww-title {
  font-size: 32px;
  font-weight: 700;
  color: #f4b03e;
  margin-bottom: 10px;
}

.hww-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f4b03e;
  margin-top: 6px;
}

/* SUBTITLE */
.hww-subtitle {
  max-width: 650px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 40px;
}

/* GRID */
.hww-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.hww-card {
  text-align: left;
}

/* CIRCLE ICON */
.hww-icon {
  width: 70px;
  height: 70px;
  background: #f4b03e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a2150;
  font-weight: bold;
}

/* HEADING */
.hww-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

/* TEXT */
.hww-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #e4e4e4;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hww-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hww-grid {
    grid-template-columns: 1fr;
  }
}

/* Section description center */
.section-desc {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* INDUSTRIES GRID */
.industries {
  padding: 55px 40px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
  padding: 0 0 60px 0;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  height: 260px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.industry-card:hover .industry-img {
  transform: scale(1.06);
}

.industry-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px;
  text-align: center;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.industry-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

/* Tablet – 2 Cards */
@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-card {
    height: 240px;
  }

  .industry-info h3 {
    font-size: 18px;
  }
}

/* Mobile – 1 Card */
@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    height: 230px;
  }

  .industry-info h3 {
    font-size: 17px;
  }
}

/* Service slider (legacy flex version – harmless) */
.services-slider {
  display: flex;
  overflow: hidden;
  gap: 20px;
}

.service-item {
  flex: 0 0 calc(33.333% - 14px);
}

.service-box {
  background-color: #f2f2f2;
  overflow: hidden;
}

.service-img img {
  border-radius: 0 !important;
}

/* mobile: 1 card */
@media (max-width: 768px) {
  .service-item {
    flex: 0 0 100%;
  }
}

/* Simple slide animations – can be used as needed */
.slide-left {
  animation: slideLeft 2s ease forwards;
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-120%);
    opacity: 0;
  }
}

.slide-right {
  animation: slideRight 2s ease forwards;
}

@keyframes slideRight {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* FOOTER FULL STYLES */
.main-footer {
  position: relative;
  background-color: #182431;
}

.main-footer .widgets-section {
  position: relative;
  padding: 80px 0px 30px;
}

.main-footer .footer-widget {
  position: relative;
  margin-bottom: 30px;
}

.main-footer .footer-widget h2 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2em;
  margin-bottom: 25px;
  text-transform: capitalize;
  display: inline-block;
}

/* Yellow underline */
.main-footer .footer-widget h2:after {
  position: absolute;
  content: "";
  left: calc(100% + 10px);
  bottom: 5px;
  width: 20px;
  height: 1px;
  background-color: #f2d046;
}

.main-footer .logo-widget .logo {
  margin-bottom: 30px;
}

.main-footer .logo-widget .text {
  color: #a8a8a8;
  font-size: 16px;
  max-width: 300px;
}

.main-footer .list li {
  margin-bottom: 8px;
}

.main-footer .list li a,
.main-footer .text a {
  color: #a8a8a8;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* No underline */
footer a,
footer a:hover,
.main-footer .list li a,
.main-footer .list li a:hover,
.main-footer .text a {
  text-decoration: none !important;
}

.main-footer .list li a:hover,
.main-footer .text a:hover {
  color: #f2d046;
}
.copyright a {
  color: #f2d046;
}

.main-footer .info-widget .number {
  color: #a8a8a8;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.main-footer .info-widget .text {
  color: #a8a8a8;
  font-size: 16px;
  margin-bottom: 20px;
}


.main-footer .footer-bottom {
  padding: 10px 0px;
  border-top: 1px solid rgba(252, 252, 252, 0.05);
}

.main-footer .footer-bottom .copyright,
.main-footer .footer-bottom .created {
  color: #767676;
  font-size: 16px;
}
.footer-widget .text a {
  text-decoration: none; /* Remove underline */
}

.footer-widget .text a:hover {
  text-decoration: underline;
}

/* FOOTER RESPONSIVE */
@media (max-width: 992px) {
  .main-footer .widgets-section {
    padding: 60px 20px;
  }

  .main-footer .footer-widget h2 {
    font-size: 18px;
  }

  .main-footer .logo-widget .text {
    max-width: 100%;
  }

  .main-footer .info-widget .number {
    font-size: 16px;
  }

  .main-footer .info-widget .text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .main-footer .widgets-section {
    padding: 50px 20px;
  }

  .main-footer .footer-widget {
    text-align: left;
  }

  .main-footer .footer-widget h2 {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .main-footer .list li a {
    font-size: 13px;
  }

  .main-footer .logo-widget .text {
    font-size: 13px;
  }

  .main-footer .info-widget .number {
    font-size: 15px;
  }

  .main-footer .info-widget .text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .main-footer .widgets-section {
    padding: 40px 15px;
  }

  .main-footer .footer-widget h2 {
    font-size: 16px;
  }

  .main-footer .footer-widget h2:after {
    left: calc(100% + 5px);
    width: 18px;
  }

  .main-footer .logo-widget .text {
    font-size: 12.5px;
  }

  .main-footer .list li a {
    font-size: 12.5px;
  }

  .main-footer .info-widget .number {
    font-size: 14px;
  }

  .main-footer .info-widget .text {
    font-size: 13px;
  }

  .main-footer .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 390px) {
  .main-footer .footer-widget h2 {
    font-size: 15px;
  }

  .main-footer .logo-widget .text,
  .main-footer .list li a,
  .main-footer .info-widget .text {
    font-size: 12px;
  }

  .main-footer .info-widget .number {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .main-footer .widgets-section {
    padding: 35px 12px;
  }

  .main-footer .footer-widget h2 {
    font-size: 14px;
  }

  .main-footer .logo-widget .text,
  .main-footer .list li a {
    font-size: 11.5px;
  }

  .main-footer .info-widget .number {
    font-size: 12px;
  }
}

/* remove dot in icon */
.social-icon-one {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icon-one li {
  display: inline-block;
  margin-right: 10px;
}

.social-icon-one li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

/* Created by link */
.created a {
  color: #767676 !important;
  text-decoration: none !important;
}

.created a:hover {
  color: #f2d046 !important;
}

/* Misc about layout */
.about-row {
  margin-top: 20px;
}

.about-text {
  padding-right: 110px;
}

/* Tiny-screen helper for some old wrapper structure */
@media (max-width: 430px) {
  .wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .wrapper .card {
    width: 100% !important;
    text-align: center !important;
  }

  .wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}
/* hero section ended  */

/* Reduce Hero Section Height */
.hero-slider-1 {
  height: 400px !important;
  position: relative;
  overflow: hidden;
}

.hero-slider-1 .slide {
  height: 400px !important;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
  /* PERF: Smooth transition for lazy-loaded backgrounds */
  transition: opacity 0.3s ease;
}

.hero-slider-1 .slide.lazyload {
  opacity: 0.8;
}

.hero-slider-1 .slide.lazyloaded {
  opacity: 1;
}

/* 
about page started */
.breadcrumb-section {
  background: #f5f6fa;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-section .breadcrumb-left a {
  color: #f4c613;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
}

.breadcrumb-section .breadcrumb-left .breadcrumb-separator {
  margin: 0 6px;
  color: #999;
  font-size: 15px;
}

.breadcrumb-section .breadcrumb-left .breadcrumb-current {
  color: #777;
  font-size: 15px;
}

.breadcrumb-section .breadcrumb-right {
  color: #777;
  font-size: 15px;
  font-weight: 500;
}

.company-section {
  background: #ffffff;
}

.company-title {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.company-title .title-line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #f4c613;
  margin-left: 12px;
  vertical-align: middle;
}

.company-subtext {
  font-size: 20px;
  font-style: italic;
  color: #333;
  line-height: 1.7;
  max-width: 1100px;
}

.company-desc {
  margin-top: 15px;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 1100px;
}

.signature-img {
  margin-top: 35px;
  width: 220px; /* adjust as needed */
}

.approach-section {
  width: 100%;
}

.approach-img {
  background: url("assets/img/factory-businessmen-doing-sales-presentation-shareholders.jpg")
    center/cover no-repeat;
  height: 100%;
  min-height: 500px;
}

.approach-content {
  background: #1f1f1f;
  color: #fff;
  padding: 60px 80px;
}

.approach-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.approach-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #dcdcdc;
}

/* Container */
.approach-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40px;
  gap: 40px;
}

/* Each icon box */
.icon-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

/* Icon Style */
.icon-box i {
  font-size: 32px;
  color: #ffffff;
  font-weight: 300;
}

/* Two-line text */
.icon-text {
  font-size: 17px;
  line-height: 1.2;
}

/* Vertical Divider (exact match) */
.icon-divider {
  height: 40px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.divider {
  width: 1px;
  height: 40px;
  background: #666;
}
.values-section {
  background: #ffffff;
  padding: 40px 0;
}

.values-content {
  padding: 60px 50px;
}

.values-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  font-size: 17px;
  color: #444;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.values-list i {
  font-size: 24px;
  color: #f4c613; /* gold theme */
  flex-shrink: 0;
}

/* Right Image */
.values-img {
  background-image: url("assets/img/engineer-working-nuclear-power-plant.jpg"); /* CHANGE THIS */
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 450px;
}
.value-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-heading i {
  font-size: 16px; /* smaller bullet */
  color: #f4c613; /* yellow */
  /* soft light yellow background */
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-text {
  font-size: 16px;
  color: #555;
  margin-left: 32px;
  line-height: 1.6;
}
/* -------------------------------------
   RESPONSIVE FIXES (DO NOT CHANGE EXISTING CODE)
-------------------------------------- */

/* Tablets */
@media (max-width: 992px) {
  /* Approach section spacing */
  .approach-content {
    padding: 40px 30px;
  }

  .approach-icons {
    gap: 25px;
  }

  .icon-box i {
    font-size: 26px;
  }

  .icon-text {
    font-size: 15px;
  }

  /* Values section */
  .values-content {
    padding: 40px 20px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  /* Breadcrumb text size */
  .breadcrumb-section .breadcrumb-left a,
  .breadcrumb-section .breadcrumb-left .breadcrumb-current,
  .breadcrumb-section .breadcrumb-left .breadcrumb-separator,
  .breadcrumb-section .breadcrumb-right {
    font-size: 14px;
  }

  /* Company text */
  .company-title {
    font-size: 26px;
  }

  .company-subtext {
    font-size: 18px;
  }

  .company-desc {
    font-size: 15px;
  }

  /* Approach layout becomes vertical */
  .approach-content {
    padding: 30px 20px;
  }

  .approach-img {
    min-height: 470px;
  }

  .approach-title {
    font-size: 26px;
  }

  .approach-text {
    font-size: 15px;
  }

  .approach-icons {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .icon-divider {
    display: none;
  }

  /* Values section */
  .values-title {
    font-size: 26px;
  }

  .values-img {
    min-height: 300px;
  }

  .values-list li {
    font-size: 15px;
    gap: 8px;
  }

  .value-heading {
    font-size: 18px;
  }

  .value-text {
    font-size: 14px;
    margin-left: 28px;
  }

  .value-heading i {
    font-size: 14px;
    padding: 5px;
  }
}

/* Extra small Mobile */
@media (max-width: 480px) {
  .company-title {
    font-size: 22px;
  }

  .approach-title,
  .values-title {
    font-size: 22px;
  }

  .contact-info,
  .values-list li,
  .approach-text,
  .company-desc {
    font-size: 14px;
  }
}

/* contact page started */

.form-map-section {
  padding: 40px;
  background: #ffffff;
}

.form-map-wrapper {
  display: flex;
  gap: 30px;
}

/* LEFT SIDE FORM */
.form-left {
  flex: 1;
  padding: 20px 10px;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-field.full {
  width: 100%;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-field textarea {
  height: 120px;
  resize: none;
}

.form-btn {
  background: #182431;
  color: white;
  border: none;
  padding: 12px 22px;
  margin-top: 10px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.form-btn:hover {
  background: white;
  color: #182431;
  border: #182431 1px solid;
}

/* RIGHT SIDE MAP */
.form-right {
  flex: 1;
}

.form-right iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .form-map-wrapper {
    flex-direction: column;
  }
}

.contact-sec {
  padding: 60px 0;
}

.contact-heading {
  font-size: 32px;
  font-weight: 700;
  color: #495057;
}

.contact-description {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  font-size: 17px;
}

/* Cards */
.contact-card {
  background: #182431;
  color: #ffffff;
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Flag */
.contact-flag {
  width: 65px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* Titles */
.contact-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Normal Text */
.contact-card-text {
  color: #d9d9d9;
  margin: 0 0 12px 0;
  font-size: 15px;
  line-height: 1.7;
}

/* Phone & Email Line */
.contact-info {
  font-size: 15px;
  color: #ffffff;
  margin: 4px 0;
  
}
.contact-info{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:12px;
    width:260px;
    margin:10px auto;
}

.contact-small-icon{
    width:22px;
    min-width:22px;
    text-align:center;
    font-size:18px;
    color:#ff8c3a;
}

.contact-info a,
.contact-info span{
    text-align:left;
    flex:1;
}

/* Small Icons */
.contact-small-icon {
  font-size: 18px;
  color: #ff8c3a;
}

.services-section {
  position: relative;
  padding: 60px 0px;
  background-color: #f4f4f5;
}

.services-section .owl-theme .owl-stage-outer {
  padding: 10px 10px 0px;
  margin: -10px -10px 0px;
}

.services-block-three {
  position: relative;
  margin-bottom: 30px;
}

.services-block-three .inner-box {
  position: relative;
}

.services-block-three .inner-box .image {
  position: relative;
  background-color: #0b0b0b;
  overflow: hidden;
}

.services-block-three .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.services-block-three .inner-box:hover .image img {
  opacity: 0.7;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.services-block-three .inner-box .lower-content {
  position: relative;
  padding-top: 25px;
  text-align: center;
}

.services-block-three .inner-box .lower-content h3 {
  position: relative;
  color: #242424;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 12px;
}

.services-block-three .inner-box .lower-content h3 a {
  position: relative;
  color: #242424;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block-three .inner-box .lower-content h3 a:hover {
  color: #f2d046;
}

.services-block-three .inner-box .lower-content .text {
  position: relative;
  color: #797979;
  font-size: 16px;
  line-height: 1.7em;
}

.services-section .owl-dots {
  display: none;
}

.services-section .owl-nav {
  text-align: center;
  margin-top: 20px;
}

.services-section .owl-prev,
.services-section .owl-next {
  position: relative;
  width: 46px;
  height: 46px;
  color: #c2c2c2;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  margin: 0px 5px;
  font-size: 18px;
  border: 2px solid #c2c2c2;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.services-section .owl-prev:hover,
.services-section .owl-next:hover {
  color: #f2d046;
  border-color: #f2d046;
}

.header-title {
  padding: 0 0 0 78px;
  align-items: center;
  display: flex;
}

/* services */
.theme-color {
  color: #f2d046;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

.grey-bg {
  background-color: #f2f2f2;
}

.btn-style-one {
  position: relative;
  line-height: 24px;
  color: #242424;
  font-size: 16px;
  font-weight: 600;
  background: #fbd848;
  display: inline-block;
  padding: 11px 50px;
  border-radius: 50px;
  border: 2px solid #fbd848;
  transition: all 0.3s ease;
}

.btn-style-one:hover {
  color: #fbd848;
  border-color: #fbd848;
  background: none;
}

/* List Style One */
.list-style-one {
  position: relative;
  margin-bottom: 40px;
}

.list-style-one li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  color: #424242;
  font-size: 17px;
  font-weight: 500;
}

.list-style-one li:before {
  position: absolute;
  content: "\f00c";
  left: 0;
  top: 2px;
  color: #fbd848;
  font-size: 18px;
  font-family: "FontAwesome";
}

/* Page Wrapper */
.page-wrapper {
  padding: 100px 0 60px;
}

/* Page Content Layout */
.page-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Sidebar Styles - Sticky Full Height */
a {
  text-decoration: none;
  cursor: pointer;
  color: #f2d046;
  transition: all 0.3s ease;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

.sidebar {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
  height: max-content;
}

.sidebar::-webkit-scrollbar {
  width: 5px;
}

.sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.sidebar::-webkit-scrollbar-thumb {
  background: #fbd848;
  border-radius: 10px;
}

.sidebar-sticky {
  position: relative;
  height: 100%;
}

.sidebar-widget {
  position: relative;
  margin-bottom: 40px;
  background: white;
  margin: 0px 0 0 5px;
  max-height: 520px;
  padding: 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
  position: relative;
  margin-bottom: 20px;
}

.sidebar-title h2 {
  font-size: 32px;
  color: #242424;
  font-weight: 600;
  line-height: 1.2em;
  display: inline-block;
  text-transform: capitalize;
}

/* Category Menu - Full Height */
.category-menu {
  position: relative;
  height: max-content;
  overflow-y: auto;
  padding-right: 10px;
}

.category-menu::-webkit-scrollbar {
  width: 5px;
}

.category-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.category-menu::-webkit-scrollbar-thumb {
  background: #fbd848;
  border-radius: 10px;
}

.category-menu li {
  position: relative;
  margin-bottom: 3px;
}

.category-menu li a {
  position: relative;
  color: #242424;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 15px 14px 25px;
  display: block;
  background-color: #f1f1f1;
  transition: all 0.5s ease;
  border-left: 4px solid #d2d2d2;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-menu li.active a,
.category-menu li a:hover {
  color: #242424;
  border-color: #414f1f;
  background-color: #fbd848;
}

.category-menu i {
  margin-right: 12px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

/* Main Content Area */
.main-content {
  flex: 1;
  background: white;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  min-height: calc(100vh - 200px);
}

/* Service Content Sections */
.service-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.service-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 210px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Page Title */
.page-title {
  font-size: 32px;
  color: #242424;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.4em;
}

/* Text Content */
.text-content p {
  margin-bottom: 20px;
  color: #797979;
  font-size: 16px;
  line-height: 1.8em;
}

/* Two Column Section */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.column-image {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}

.column-content h3 {
  font-size: 24px;
  color: #242424;
  margin-bottom: 15px;
  font-weight: 600;
}

.column-content p {
  color: #797979;
  margin-bottom: 15px;
  line-height: 1.8em;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 40px 0;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.feature-box {
  padding: 30px;
  background: #f8f9fa;
  border-right: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-box:nth-child(2n) {
  border-right: none;
}

.feature-box:nth-last-child(-n + 2) {
  border-bottom: none;
}

.feature-box:nth-child(odd) {
  background: #ffffff;
}

.feature-box:hover {
  background: #fff3cd;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  color: #fbd848;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 20px;
  color: #242424;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-box p {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.6em;
}

/* Empty Service Section */
.empty-service {
  padding: 60px 0;
  text-align: center;
}

.empty-service h2 {
  font-size: 28px;
  color: #242424;
  margin-bottom: 20px;
  font-weight: 600;
}

.empty-service p {
  color: #797979;
  font-size: 16px;
  line-height: 1.8em;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 991px) {
  .page-content {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: static;
  }

  .category-menu {
    height: auto;
    max-height: 400px;
  }

  .main-content {
    min-height: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-box {
    border-right: none;
  }

  .feature-box:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
  }
}

@media (max-width: 768px) {
  .page-wrapper {
    padding: 60px 0;
  }

  .main-content {
    padding: 25px;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .page-title {
    font-size: 26px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .category-menu li a {
    font-size: 15px;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 22px;
  }

  .sidebar-title h2 {
    font-size: 18px;
  }

  .main-content {
    padding: 20px;
  }

  .feature-box {
    padding: 20px;
  }
}

ul,
li {
  list-style: none;
}
/* pages */

.page-info {
  position: relative;
  left: 0px;
  bottom: 0px;
  width: 100%;
  display: block;
  color: #272727;
  z-index: 1;
  text-align: left;
  background-color: #000000cc;
  border-bottom: 1px solid #e2e2e5;
}

.page-info {
  position: relative;
  padding: 18px 0px 3px 17px;
}

.page-info h2 {
  font-size: 16px;
  color: #272727;
  line-height: 24px;
  font-weight: 700;
}

.page-info .bread-crumb li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  margin-right: 24px;
  color: #fff;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}

.page-info .bread-crumb li:last-child {
  margin-right: 0px;
}

.page-info .bread-crumb li:after {
  content: "\f105";
  top: -1px;
  font-family: "FontAwesome";
  position: absolute;
  right: -21px;
  width: 10px;
  line-height: 24px;
  font-size: 16px;
  color: #9d9d9d;
}

/* FORCE FOOTER CUSTOM BULLET — FINAL OVERRIDE */
.main-footer .footer-widget .list {
  padding-left: 0;
}

.main-footer .footer-widget .list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
}

.main-footer .footer-widget .list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 2px;
  color: #f2d046;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

/* Products Page Styles */

.products-page {
  background: #f9f9f9;
}

/* Hero Section */
.products-hero {
  padding: 120px 0 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/products-bg.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.products-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.products-hero h1 span {
  color: #fbd848;
}

.products-hero .subtitle {
  font-size: 20px;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Category Navigation */
.product-category-nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: relative;
  z-index: 1000;
}

.product-category-nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  animation: slideDown 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.category-nav {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.category-nav li {
  margin: 0 10px;
}

.category-nav a {
  color: #333;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-nav a:hover,
.category-nav a.active {
  background: #fbd848;
  color: #000;
  border-color: #fbd848;
}

/* ================================
   PRODUCTS 
================================ */
.section-titles {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-align: left;
  margin-bottom: 25px;
  color: #161616;
}

.section-titles-2 {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  text-align: left;
  margin-bottom: 20px;
  color: #0a2b4c;
}

.project-hero {
  padding: 70px 0;
}

.project-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.project-info {
  background: #f1d24b;
  padding: 25px;
  overflow: hidden;
  max-height: 360px;
  height: 100%;
}

.project-info p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .project-hero img {
    height: 240px;
  }
}

/* Product Description Section */
.product-description-section {
  padding: 60px 0;
  background: #fff;
}

.description-content {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
}

.product-intro {
  font-size: 16px;
  color: #161616;
  font-weight: 500;
  line-height: 1.6;
}

/* What We Did Section */
.what-we-did-section {
  padding: 60px  0 70px 0;
  background: var(--light-gray);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.product-item {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-item-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  /* PERF: Aspect ratio to prevent CLS */
  aspect-ratio: 1 / 1;
  background-color: #f0f0f0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.product-item-image.lazyload {
  opacity: 0.5;
}

.product-item-image.lazyloaded {
  opacity: 1;
}

.product-item-content {
  padding: 25px 15px;
}

.product-item-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.product-item-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.what-we-did-image {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-top: 40px;
}

/* Final Results Section */
.final-results-section {
  padding: 60px 0;
  background: #fff;
}

.application-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.application-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--light-gray);
  transition: all 0.3s ease;
}

.application-item:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.application-icon {
  flex: 0 0 50px;
  height: 50px;
  background: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 24px;
  color: var(--text-dark);
}

.application-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 14px;
}

.application-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-info-card {
    padding: 40px 35px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-image {
    flex: 0 0 400px;
  }

  .hero-info-card {
    flex: 1;
  }

  .hero-info-card::before {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-image {
    flex: 0 0 300px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .what-we-did-image {
    height: 300px;
  }

  .product-description-section,
  .what-we-did-section,
  .final-results-section {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .hero-info-card {
    padding: 30px 25px;
  }

  .info-item {
    margin-bottom: 20px;
  }
}

/* ==========================
   Mobile-only responsive tweaks
   (<= 991.98px and <= 575.98px)
   These overrides intentionally target small screens
   and do NOT change laptop/desktop styles.
   ========================== */

@media (max-width: 991.98px) {
  .topbar {
    padding: 10px 20px;
    position: relative;
    background: rgba(0,0,0,0.45);
  }

  .topbar-left span {
    font-size: 13px;
  }

  .topbar-right {
    display: none;
  }

  /* Make hero content fit nicely on tablets and phones */
  .hero-content {
    left: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 18px;
  }

  .hero-title {
    font-size: 28px;
    padding-top: 0;
  }

  /* Hide large slider arrows on smaller screens to save space */
  .slider-arrow {
    display: none;
  }

  .slider-controls {
    bottom: 12px;
    gap: 10px;
  }

  /* Services slider / cards: reduce image height for smaller screens */
  .service-img {
    height: 180px;
  }

  .service-title {
    font-size: 15px;
    padding: 10px 8px;
  }

  /* Industries grid: use a 2-column grid on tablets */
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Product row: allow wrapping and two columns */
  .product-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .product-col {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  /* About image: scale down and center on smaller screens */
  .about-images .about-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
  }

  /* How-we-work grid -> 2 columns on tablet */
  .hww-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  /* About section tweaks for tablet and below */
  .about-section {
    padding: 30px 0 20px;
  }

  .about-section .col-lg-6,
  .about-section .col-md-12 {
    width: 100%;
    max-width: 100%;
  }

  .about-content {
    padding: 10px 12px;
  }

  .about-content h2 {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
    padding-right: 8px;
  }
}

@media (max-width: 575.98px) {
  /* Further compress visuals for small phones */
  .hero-title {
    font-size: 22px;
  }

  .hero-content {
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 12px;
  }

  .service-img {
    height: 140px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-col {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hww-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
    padding: 0 12px;
  }

  /* About section - mobile fixes */
  .about-section {
    padding: 20px 0 18px;
  }

  .about-content h2 {
    font-size: 24px;
    line-height: 1.08;
    padding-top: 6px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.55;
    padding: 0 12px 12px 12px;
  }

  .about-images {
    padding: 12px;
    text-align: center;
  }

  .about-images .about-img {
    width: 100%;
    height: auto;
    max-width: 420px;
    margin: 0 auto;
  }
}


/*new product section 17.04*/
.form-right{
    flex:1;
}

.maps-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    height:100%;
}

.map-box iframe{
    width:100%;
    height:450px;
    border:0;
    border-radius:10px;
}

@media(max-width:768px){
    .maps-grid{
        grid-template-columns:1fr;
    }

    .map-box iframe{
        height:350px;
    }
}


.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    text-decoration:none;
    z-index:99999;
    box-shadow:0 4px 15px rgba(0,0,0,.25);
}

.whatsapp-float:hover{
    color:#fff;
}


.contact-info{
    justify-content:center;
}
