/* =============================================
   KEPL MODERN REVAMP - Next-Gen Styles
   ============================================= */

:root {
  --primary: #2d6a1f;
  --primary-dark: #1a4010;
  --primary-light: #4a9c30;
  --accent: #e26c0c;
  --accent-light: #f58c3a;
  --dark: #0f1c0a;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --bg-light: #f8faf5;
  --border: #e0ead8;
  --shadow: 0 10px 40px rgba(45,106,31,0.12);
  --shadow-hover: 0 20px 60px rgba(45,106,31,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: var(--transition); }

/* ---- WOW Animation Fix ---- */
.wow {
  visibility: visible !important;
  opacity: 1 !important;
  animation-fill-mode: both;
}
.kepl-visible {
  visibility: visible !important;
  opacity: 1 !important;
}

/* ---- Modern Navbar ---- */
.header-area {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: var(--transition);
}

.header-navigation {
  background: rgba(15, 28, 10, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.header-navigation.sticky {
  background: rgba(15, 28, 10, 0.97) !important;
  backdrop-filter: blur(30px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(45,106,31,0.3);
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
}

.brand-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: var(--transition);
}
.brand-logo:hover img { transform: scale(1.03); }

/* Nav links */
.main-menu ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.main-menu ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  background: transparent !important;
  border: none !important;
}
.main-menu ul li a:hover {
  color: var(--accent-light);
  background: transparent !important;
}
.main-menu ul li.active > a {
  color: var(--accent-light);
  background: transparent !important;
  border-bottom: 2px solid var(--accent) !important;
  border-radius: 0;
  padding-bottom: 8px;
}

/* Dropdown */
.main-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(15,28,10,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(45,106,31,0.3);
  border-radius: var(--radius-sm);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 999;
}
.main-menu li.has-children { position: relative; }
.main-menu li.has-children:hover > .sub-menu { display: block; animation: dropIn 0.2s ease; }
.main-menu .sub-menu li a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  border-radius: 6px;
  border: none;
  background: transparent;
}
.main-menu .sub-menu li a:hover { background: rgba(226,108,12,0.15); color: var(--accent-light); }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Hero Section ---- */
.banner-section { position: relative; }
.hero-wrapper-three { position: relative; }
.single-slider { position: relative; min-height: 100vh; display: flex; align-items: center; }
.image-layer {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.image-layer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,5,0.75) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-content .sub-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(226,108,12,0.15);
  border: 1px solid rgba(226,108,12,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Slider Arrows */
.hero-slider-two .slick-arrow,
.hero-slider-two .prev,
.hero-slider-two .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: #fff;
  font-size: 18px;
}
.hero-slider-two .prev { left: 30px; }
.hero-slider-two .next { right: 30px; }
.hero-slider-two .prev:hover,
.hero-slider-two .next:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

/* ---- Buttons ---- */
.main-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
}
.golden-btn, .primary-btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff !important;
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(226,108,12,0.35);
}
.golden-btn:hover, .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(226,108,12,0.5);
  color: #fff !important;
}
.filled-btn.filled-white {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.6);
}
.filled-btn.filled-white:hover {
  background: #fff;
  color: var(--primary) !important;
  border-color: #fff;
  transform: translateY(-3px);
}

/* ---- Section Titles ---- */
.section-title { text-align: left; }
.section-title .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.section-title.text-center { text-align: center; }
.section-title.text-white h2,
.section-title.text-white .sub-title,
.section-title.text-white p { color: #fff; }

/* ---- About Section ---- */
.about-section { padding: 100px 0; }
.about-wrapper {
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}
.about-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.97) 50%, rgba(255,255,255,0.6) 100%);
  border-radius: 24px;
}
.about-wrapper .container { position: relative; z-index: 2; padding: 60px 30px; }
.about-two_image-box img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.about-two_image-box img:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.about-three_content-box { padding: 40px; }

/* ---- Service Cards ---- */
.single-service-item-two {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.single-service-item-two::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.single-service-item-two:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.single-service-item-two:hover::before { transform: scaleX(1); }
.single-service-item-two .icon {
  width: 70px; height: 70px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.single-service-item-two:hover .icon { background: var(--primary); }
.single-service-item-two .icon img { width: 36px; height: 36px; object-fit: contain; }
.single-service-item-two:hover .icon img { filter: brightness(10); }
.single-service-item-two .title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.single-service-item-two p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* ---- CTA Section ---- */
.cta-section { background: var(--bg-light); }
.cta-wrapper { padding: 60px 0; }
.cta-content-box h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
}
.circle-logo { width: 80px; height: 80px; border-radius: 50%; margin-right: 20px; overflow: hidden; flex-shrink: 0; }

/* ---- Products Gallery Slider ---- */
.gallery-section { background: var(--bg-light); padding: 80px 0; }
.single-project-item-two {
  padding: 10px;
}
.single-project-item-two .project-img {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}
.single-project-item-two .project-img:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.single-project-item-two .project-img img {
  width: 140px; height: 140px;
  object-fit: contain;
  transition: var(--transition);
  margin-bottom: 12px;
}
.single-project-item-two .project-img:hover img { transform: scale(1.08); }
.single-project-item-two .title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.single-project-item-two .title a { color: var(--dark); }
.single-project-item-two .title a:hover { color: var(--accent); }

/* ---- Why KEPL (dark bg) ---- */
.service-bgc-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
  position: relative;
  overflow: hidden;
}
.service-bgc-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why_box { gap: 0; }
.why_icon {
  text-align: center;
  padding: 30px 20px;
  transition: var(--transition);
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.why_icon:last-child { border-right: none; }
.why_icon:hover { background: rgba(255,255,255,0.07); border-radius: var(--radius-sm); }
.why_icon i { font-size: 2.5rem; color: var(--accent-light); margin-bottom: 12px; display: block; }
.why_icon p { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 13px; margin: 0; }

/* ---- Export Section ---- */
.skills-section { padding: 100px 0; }
.skill-img-one, .skill-img-two {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.skill-img-one { width: 65%; position: relative; z-index: 2; }
.skill-img-two {
  width: 50%;
  position: absolute;
  right: 0; bottom: -30px;
  border: 4px solid #fff;
  z-index: 3;
}
.skill-two_image-box { position: relative; padding-bottom: 30px; }
.skill-two_image-box:hover .skill-img-one,
.skill-two_image-box:hover .skill-img-two { box-shadow: var(--shadow-hover); }

/* ---- Strengths Section ---- */
.home_bottom_sec {
  background: linear-gradient(135deg, #f8faf5 0%, #eef3e8 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.why-list { display: flex; flex-direction: column; gap: 12px; }
.why-list .item {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
}
.why-list .item::before {
  content: '';
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%232d6a1f'/%3E%3Cpath d='M5.5 10.5l3 3 6-6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.why-list .item:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

/* ---- Certifications ---- */
.home_certificates {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.customers { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }
.customers .item {
  text-align: center;
  padding: 24px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  min-width: 130px;
  flex: 1;
  max-width: 160px;
}
.customers .item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  background: #fff;
}
.customer-logo { height: 70px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.customer-logo img { max-height: 60px; max-width: 100px; object-fit: contain; }
.customers .item h3 { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* ---- Footer ---- */
footer { background: var(--dark); }
.footer-top { background: var(--dark); }
.footer-features {
  background: linear-gradient(135deg, rgba(45,106,31,0.12) 0%, rgba(226,108,12,0.08) 100%) !important;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 30px !important;
  margin-bottom: 50px !important;
}
.footer-logo img { height: 60px; filter: brightness(10); }
.footer-features-item { display: flex; align-items: flex-start; gap: 16px; }
.footer-features-item img { width: 40px; height: 40px; object-fit: contain; filter: invert(1); opacity: 0.7; flex-shrink: 0; margin-top: 3px; }
.footer-features-title { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; line-height: 1.8; margin: 0; }
.footer-features-title a { color: rgba(255,255,255,0.85); }
.footer-features-title a:hover { color: var(--accent-light); }
.footer-title { color: #fff; font-size: 16px; font-weight: 700; position: relative; padding-bottom: 12px; margin-bottom: 20px !important; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--accent); border-radius: 2px; }
.footer-menu ul { list-style: none; padding: 0; margin: 0; }
.footer-menu ul li { margin-bottom: 10px; }
.footer-menu ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-menu ul li a::before { content: '›'; color: var(--accent); font-size: 18px; line-height: 1; }
.footer-menu ul li a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-col-1 p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.8; }
.footer-social-icon a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-right: 6px;
  transition: var(--transition);
}
.footer-social-icon a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.social-icon-title { color: rgba(255,255,255,0.5); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.copy-right-area { background: rgba(0,0,0,0.4); border-top: 1px solid rgba(255,255,255,0.06); padding: 16px 0 !important; }
.copy-right-text-1 { color: rgba(255,255,255,0.45); font-size: 13px; }
.copy-right-text-1 a { color: rgba(255,255,255,0.65); }
.copy-right-text-1 a:hover { color: var(--accent-light); }
.f-right { text-align: right; }

/* ---- Footer Menu Columns ---- */
.footer-menu-c { columns: 1; }
.footer-menu-1 { list-style: none; padding: 0; margin: 0; }
.footer-menu-1 li { margin-bottom: 10px; }
.footer-menu-1 li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-menu-1 li a::before { content: '›'; color: var(--accent); font-size: 18px; }
.footer-menu-1 li a:hover { color: var(--accent-light); }

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(45,106,31,0.4);
  z-index: 9999;
  transition: var(--transition);
}
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(45,106,31,0.5); color: #fff; }

/* ---- Page Banner ---- */
.page-banner-area {
  min-height: 320px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: 120px;
}
.page-banner-area::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,5,0.8) 0%, rgba(0,0,0,0.5) 100%);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner-content h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 14px; }
.breadcrumb-item.active { color: var(--accent-light); font-size: 14px; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); content: '/'; }

/* ---- Contact & Forms ---- */
.contact-section { padding: 80px 0; background: var(--bg-light); }
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form_control {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  display: block;
}
.form_control:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45,106,31,0.1);
}
.form_control::placeholder { color: #aaa; }
textarea.form_control { resize: vertical; min-height: 140px; }
select.form_control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group { margin-bottom: 0; }

/* ---- Contact Info ---- */
.contact-info-wrap { padding-right: 40px; }
.contact-info-item { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); transition: var(--transition); }
.contact-info-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-info-item .icon { width: 48px; height: 48px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-info-item p { color: var(--text-light); font-size: 14px; margin: 0; line-height: 1.7; }
.contact-info-item p a { color: var(--text-light); }
.contact-info-item p a:hover { color: var(--primary); }

/* ---- Product Pages ---- */
.product-detail-section { padding: 80px 0; }
.product-info-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.product-info-box h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.product-info-box p { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.product-tags span {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}
.product-img-wrap {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
}
.product-img-wrap img { max-height: 320px; object-fit: contain; }

/* ---- Preloader ---- */
.preloader {
  position: fixed; inset: 0;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
}
.loader img { width: 80px; }

/* ---- Navbar Mobile ---- */
.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.navbar-toggler span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 1199px) {
  .navbar-toggler { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; left: -320px;
    width: 300px; height: 100vh;
    background: var(--dark);
    padding: 80px 30px 30px;
    overflow-y: auto;
    transition: var(--transition);
    z-index: 9998;
    box-shadow: 4px 0 30px rgba(0,0,0,0.3);
  }
  .nav-menu.menu-on { left: 0; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9997; display: none; }
  .nav-overlay.active { display: block; }
  .main-menu ul { flex-direction: column; gap: 0; }
  .main-menu ul li a { padding: 12px 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.07); background: transparent; border: none; color: rgba(255,255,255,0.85); }
  .main-menu .sub-menu { position: static; background: transparent; backdrop-filter: none; border: none; box-shadow: none; padding: 0 0 0 16px; }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .about-three_content-box { padding: 20px 0; }
  .skill-img-two { display: none; }
  .skill-img-one { width: 100%; }
  .contact-info-wrap { padding-right: 0; margin-bottom: 40px; }
  .customers .item { min-width: 110px; max-width: 140px; }
}
@media (max-width: 767px) {
  .hero-content h1 { font-size: 2.2rem; }
  .page-banner-area { min-height: 250px; }
  .contact-form-wrap { padding: 24px; }
  .why-box-wrap .row { flex-direction: column; }
  .footer-menu-c { columns: 1; }
  .customers { gap: 12px; }
  .customers .item { min-width: 100px; padding: 16px 12px; }
}

/* ---- Utility ---- */
.pt-80 { padding-top: 80px; }
.pb-80 { padding-bottom: 80px; }
.pt-100 { padding-top: 100px; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mr-20 { margin-right: 20px !important; }
.pl-lg-70 { padding-left: 70px; }
.gray-bg { background: var(--bg-light); }
.main-bg { background: var(--primary-dark) !important; }
.border-top-1 { border-top: 1px solid var(--border); }
.text-right { text-align: right; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.float-lg-right { float: right; }
