/* ===================================
   Green Packers Theme - Main Stylesheet
   Based on PPi Group Design
   =================================== */

/* ===== CSS Variables ===== */
:root {
  --primary-color: #2a6521;
  --secondary-color: #05012c;
  --dark-color: #131313;
  --light-bg: #f6f4f5;
  --white: #ffffff;
  --gray-bg: #fafafd;
  --text-color: #131313;
  --heading-font: "Poppins", sans-serif;
  --body-font: "Open Sans", sans-serif;
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  margin: 0;
  padding-top: 90px;
}

html {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  width: 100%;
  padding: 0 15px;
}

/* ===== Buttons ===== */
.main-btn {
  display: inline-block;
  padding: 14px 35px;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  white-space: nowrap;
}

.main-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.main-btn.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.main-btn.btn-white:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ===== Section Styles ===== */
.section-padding {
  padding: 80px 0;
}

.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-50 {
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
  text-align-last: left;
}

/* ===== Section Title ===== */
.section-title {
  margin-bottom: 30px;
}

.section-title .span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.section-title .triangle {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

.section-title .triangle.left {
  margin: 15px 0 0 0;
}

.section-title .triangle img {
  display: none;
}

/* ===== Header Styles ===== */
.site-header {
  position: relative;
  z-index: 1200;
}

.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #f3f4f6;
  z-index: 1200;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.top-header.is-sticky {
  background: #f8f8fb;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.top-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--secondary-color);
}

.brand-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 1;
  flex-wrap: wrap;
}

.mobile-contact-actions {
  display: none;
}

.mobile-toggle-wrap {
  display: none;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2a6521, #1a4015);
  color: var(--white);
  font-size: 16px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #6b7280;
  text-transform: uppercase;
}

.contact-value {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-color);
}

.primary-nav {
  position: relative;
  background: var(--secondary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  margin-bottom: 0;
}

.primary-nav-inner {
  display: flex;
  justify-content: center;
  padding: 0 15px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.primary-nav-center {
  position: relative;
  width: 100%;
  max-width: 1080px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nav-menu {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-menu nav {
  width: 100%;
}

.main-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  padding: 8px 0;
  display: block;
  letter-spacing: 0.2px;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
  color: #f97316;
}

.main-menu ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 14px);
  min-width: 220px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 6px);
}

.main-menu ul li .sub-menu li a {
  padding: 12px 18px;
  color: var(--secondary-color);
  border-bottom: 1px solid #f1f1f1;
}

.main-menu ul li .sub-menu li:last-child a {
  border-bottom: none;
}

.main-menu ul li .sub-menu li a:hover {
  background: var(--light-bg);
  color: var(--primary-color);
}

.navbar-toggler {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.navbar-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: var(--secondary-color);
}

/* ===== Hero Section ===== */
.hero-area {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(5, 1, 44, 0.8),
    rgba(5, 1, 44, 0.4)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

.hero-content h1 {
  font-size: 54px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 30px;
  max-width: 600px;
}

/* Hero Slider */
.hero-slick .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-slick .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 5px;
}

.hero-slick .slick-dots li.slick-active button {
  background: var(--white);
}

/* ===== About Section ===== */
.about-area {
  background: var(--white);
}

.about-img-box {
  position: relative;
  padding: 30px;
}

.about-img-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 3px solid var(--primary-color);
  z-index: -1;
}

.about-img-one {
  position: relative;
  z-index: 2;
}

.about-img-one img {
  width: 100%;
  border-radius: 5px;
}

.about-img-two {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 50%;
  z-index: 3;
}

.about-img-two img {
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-box {
  position: absolute;
  top: 50px;
  left: -20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 20px 30px;
  z-index: 4;
  border-radius: 5px;
}

.experience-box h2 {
  font-size: 36px;
  color: var(--white);
  margin: 0;
}

.experience-box .sign {
  font-size: 24px;
  vertical-align: super;
}

.experience-box .text {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.about-content-box {
  padding-left: 30px;
}

.home-about-content {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 !important;
}

.home-about-content p {
  margin-bottom: 15px;
}

/* ===== Products/Services Section ===== */
.service-area-v2 {
  background: var(--secondary-color);
  color: var(--white);
}

.service-area-v2 .section-title h2,
.service-area-v2 .section-title .span {
  color: var(--white);
}

.service-area-v2 p {
  color: rgba(255, 255, 255, 0.8);
}

.service-item {
  background: var(--white);
  padding: 30px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.service-item:hover:before {
  transform: scaleX(1);
}

.service-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-item .icon {
  margin-bottom: 20px;
}

.service-item .icon img {
  max-width: 85px;
  height: auto;
}

.service-item .content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-item .content h3 a {
  color: var(--secondary-color);
}

.service-item .content p {
  color: var(--text-color);
  font-size: 14px;
}

.service-item .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* ===== Industries/Portfolio Section ===== */
.portfolio-area {
  background: var(--light-bg);
}

.service-area-v3 .service-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin: 15px;
}

.service-area-v3 .service-img {
  height: 200px;
  overflow: hidden;
}

.service-area-v3 .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-area-v3 .service-item:hover .service-img img {
  transform: scale(1.1);
}

.service-area-v3 .content {
  padding: 25px;
}

.service-area-v3 .icon {
  width: 70px;
  height: 70px;
  margin: -55px auto 15px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.service-area-v3 .icon img {
  max-width: 40px;
}

.service-area-v3 .title {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Portfolio Slider */
.portfolio-slider-one {
  padding: 0 50px;
}

.portfolio-slider-one .slick-slide {
  padding: 0 15px;
}

/* ===== Features/Values Section ===== */
.features-area {
  background: var(--white);
}

.features-tab .nav-tabs {
  border: none;
  margin-bottom: 30px;
}

.features-tab .nav-link {
  font-size: 22px;
  border-radius: 0;
  text-transform: uppercase;
  padding: 12px 32px;
  background-color: #f7f7f7;
  border: none;
  border-right: 1px solid #eaeaea;
  color: var(--dark-color);
  font-weight: 600;
}

.features-tab .nav-link.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.content-box {
  padding: 20px 0;
}

.content-box ul {
  list-style-type: disc;
  padding-left: 25px;
}

.content-box ul li {
  color: var(--text-color);
  margin-bottom: 10px;
}

/* ===== Why Choose Us Section ===== */
.service-area-v1 {
  background: var(--light-bg);
}

.service-area-v1 .serivce-item {
  background: var(--white);
  padding: 30px;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-area-v1 .serivce-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-area-v1 .serivce-item img {
  max-width: 80px;
  margin-bottom: 20px;
}

.service-area-v1 .serivce-item .title {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-area-v1 .serivce-item p {
  font-size: 14px;
}

/* ===== Clients Section ===== */
.clients-area {
  background: var(--white);
}

.clients-area .section-title h3 {
  font-size: 36px;
  line-height: 1.3;
}

.clients-slide-one {
  display: flex;
  align-items: center;
}

.clients-item {
  padding: 15px;
}

.clients-img {
  text-align: center;
}

.clients-img img {
  max-height: 60px;
  margin: 0 auto 10px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.clients-img:hover img {
  filter: grayscale(0%);
}

.clients-img a {
  display: block;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 14px;
}

/* ===== CTA Section ===== */
.cta-area {
  background: var(--white);
}

.cta-1 {
  background: var(--primary-color);
  padding: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-1.bg-theme {
  background: var(--primary-color);
}

.cta-desc p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.cta-desc h5 {
  color: var(--white);
  font-size: 24px;
  margin: 0;
}

.cta-action .main-btn {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.cta-action .main-btn:hover {
  background: transparent;
  color: var(--white);
}

/* ===== Footer Styles ===== */
#footer {
  background: var(--secondary-color);
  color: var(--white);
}

#footer.dark {
  background: #05012c;
}

.widgets-contact {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widgets-contact .widget {
  display: flex;
  align-items: flex-start;
}

.widget-contact-icon {
  font-size: 30px;
  color: var(--primary-color);
  margin-right: 20px;
}

.widget-contact-icon .fa-phone {
  transform: rotate(90deg);
}

.widget-contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.widget-contact-info p.text-white {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 5px;
}

.widget-contact-info .font-heading {
  font-size: 16px;
}

.widget-contact-info a {
  color: var(--white);
}

.widget-contact-info a:hover {
  color: var(--primary-color);
}

/* Copyrights */
#copyrights {
  padding: 30px 0;
  text-align: center;
}

.foot-social ul {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.foot-social li {
  margin: 0 10px;
}

.foot-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.foot-social a:hover {
  background: var(--primary-color);
}

.copyright-links {
  margin-bottom: 10px;
}

.copyright-links a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
}

.copyright-links a:hover {
  color: var(--white);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
}

/* ===== Animations ===== */
.wow {
  visibility: hidden;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Grid System ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.row > * {
  padding: 0 15px;
}

.col-12 {
  width: 100%;
}
.col-6 {
  width: 50%;
}
.col-4 {
  width: 33.333%;
}
.col-3 {
  width: 25%;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
  .col-md-4 {
    width: 33.333%;
  }
  .col-md-3 {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.666%;
  }
  .col-lg-7 {
    width: 58.333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-4 {
    width: 33.333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.666%;
  }
  .col-lg-1 {
    width: 8.333%;
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
  .top-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .contact-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
  }

  .contact-item {
    width: 100%;
    max-width: 340px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
  }

  .primary-nav-center {
    justify-content: flex-start;
    padding: 14px 0;
  }

  .primary-nav .navbar-toggler {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    display: block;
    margin-left: auto;
  }

  .nav-menu {
    display: block;
  }

  .main-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    padding: 60px 20px 20px;
    transition: all 0.3s ease;
    z-index: 1300;
    overflow-y: auto;
  }

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

  .navbar-close {
    display: block;
  }

  .navbar-toggler {
    display: block;
  }

  .main-menu ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-menu ul li {
    margin: 0;
    width: 100%;
  }

  .main-menu ul li a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--secondary-color);
  }

  .main-menu ul li .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }

  .main-menu ul li:hover .sub-menu {
    display: block;
  }

  .has-f-box {
    display: none;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .about-content-box {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-img-box:after {
    display: none;
  }

  .about-img-two {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title {
    text-align: center;
  }

  .section-title .triangle.left {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-1 {
    flex-direction: column;
    text-align: center;
  }

  .cta-desc {
    margin-bottom: 20px;
  }

  .features-tab .nav-link {
    font-size: 14px;
    padding: 10px 15px;
  }

  .portfolio-slider-one {
    padding: 0 15px;
  }

  .brand-logo p {
    display: none;
  }
}

/* ===== Breadcrumbs ===== */
.bredcumbs-area {
  padding: 160px 0 40px;
  background-color: var(--light-bg);
}

.bredcumbs-area .page-title-inner h1 {
  font-size: 3rem;
  color: #141414;
  line-height: 1;
}

.bredcumbs-area .page-title-inner ul.bredcumbs-link {
  display: flex;
  margin-top: 15px;
}

.bredcumbs-area .page-title-inner ul.bredcumbs-link li {
  margin-right: 20px;
  position: relative;
}

.bredcumbs-area .page-title-inner ul.bredcumbs-link li:after {
  content: "/";
  position: absolute;
  right: -12px;
}

.bredcumbs-area .page-title-inner ul.bredcumbs-link li:last-child:after {
  display: none;
}

.bredcumbs-area .page-title-inner ul.bredcumbs-link li a {
  color: var(--secondary-color);
}

/* ===== Aquamarine Light Background ===== */
.aquamarine-light {
  background-color: var(--light-bg);
}

/* ===== Utility Classes ===== */
.bg_cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-white {
  color: var(--white);
}

/* ===== Extra Responsive Improvements ===== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .section-padding {
    padding: 50px 0;
  }

  .container {
    max-width: 100%;
  }

  .top-header-inner {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .contact-actions {
    gap: 12px;
    flex-direction: column;
  }

  .contact-item {
    width: 100%;
  }

  .main-menu ul li a {
    font-size: 14px;
  }

  .primary-nav-center {
    padding: 12px 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .service-item,
  .product-item,
  .industry-item {
    margin-bottom: 20px;
  }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) {
  .top-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
  }

  .top-branding {
    flex: 1;
    justify-content: flex-start;
  }

  .mobile-toggle-wrap {
    margin-left: auto;
    position: static;
  }

  .contact-actions {
    display: none;
  }

  .brand-link {
    justify-content: flex-start;
  }

  .brand-text {
    text-align: left;
  }

  body {
    padding-top: 0;
  }

  .section-padding {
    padding: 40px 0;
  }

  .container {
    padding: 0 12px;
  }

  .top-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 10;
  }

  .brand-logo img {
    height: 44px;
  }

  .brand-title {
    font-size: 14px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .contact-actions {
    display: none;
  }

  .contact-item {
    font-size: 12px;
    width: auto;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .contact-copy {
    display: none;
  }

  .top-branding {
    flex: 1;
    justify-content: center;
  }

  .brand-link {
    justify-content: center;
  }

  .mobile-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    height: 44px;
  }

  .primary-nav .navbar-toggler {
    display: none;
  }

  .mobile-toggle-wrap .navbar-toggler {
    display: flex;
    position: static;
    width: 28px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-toggle-wrap .navbar-toggler span {
    background: var(--secondary-color);
    height: 3px;
    width: 100%;
  }

  .mobile-contact-actions {
    display: block;
    border-top: 1px solid #eee;
    margin-top: 16px;
    padding-top: 12px;
  }

  .mobile-contact-actions .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--secondary-color);
    font-weight: 700;
  }

  .mobile-contact-actions .contact-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
    border-radius: 10px;
  }

  .mobile-contact-actions .contact-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .contact-label {
    font-size: 9px;
  }

  .contact-value {
    font-size: 12px;
  }

  .main-menu ul {
    gap: 0;
  }

  .main-menu ul li a {
    font-size: 13px;
    padding: 10px 0;
  }

  .primary-nav-center {
    padding: 10px 0;
  }

  .hero-area {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .section-title .span {
    font-size: 12px;
  }

  .main-btn {
    padding: 10px 20px;
    font-size: 12px;
    white-space: nowrap;
  }

  .service-item,
  .product-item,
  .industry-item,
  .client-item {
    margin-bottom: 15px;
  }

  .row {
    margin-right: -6px;
    margin-left: -6px;
  }

  .col-md-6,
  .col-lg-3,
  .col-lg-4 {
    padding-right: 6px;
    padding-left: 6px;
  }

  .feature-box {
    gap: 8px;
  }

  .fbox-icon {
    font-size: 18px;
  }

  .feature-box h3 {
    font-size: 12px;
  }

  .feature-box p {
    font-size: 11px;
  }
}

/* Extra Small (< 480px) */
@media (max-width: 479px) {
  .top-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
  }

  .top-branding {
    flex: 1;
    justify-content: flex-start;
  }

  .mobile-toggle-wrap {
    margin-left: auto;
    position: static;
  }

  .contact-actions {
    display: none;
  }

  .brand-link {
    justify-content: flex-start;
  }

  .brand-text {
    text-align: left;
  }
  body {
    padding-top: 0;
  }

  .section-padding {
    padding: 30px 0;
  }

  .container {
    padding: 0 10px;
  }

  .top-header-inner {
    gap: 10px;
    padding: 8px 12px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .brand-logo img {
    height: 40px;
  }

  .brand-title {
    font-size: 12px;
  }

  .brand-subtitle {
    font-size: 9px;
  }

  .contact-actions {
    display: none;
  }

  .contact-item {
    font-size: 11px;
    width: auto;
  }

  .contact-copy {
    gap: 0;
    display: none;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .mobile-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    height: 42px;
  }

  .mobile-toggle-wrap .navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 28px;
    height: 20px;
  }

  .mobile-toggle-wrap .navbar-toggler span {
    background: var(--secondary-color);
    height: 3px;
    width: 100%;
  }

  .mobile-contact-actions {
    display: block;
    border-top: 1px solid #eee;
    margin-top: 12px;
    padding-top: 10px;
  }

  .mobile-contact-actions .contact-item {
    gap: 10px;
    padding: 8px 0;
    font-size: 12px;
  }

  .mobile-contact-actions .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .contact-label {
    font-size: 8px;
  }

  .contact-value {
    font-size: 11px;
  }

  .main-menu ul {
    gap: 0;
  }

  .main-menu ul li a {
    font-size: 12px;
    padding: 8px 0;
  }

  .hero-area {
    min-height: 50vh;
    padding-top: 20px;
  }

  .hero-content h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 11px;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .section-title .span {
    font-size: 11px;
  }

  .main-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  h3 {
    font-size: 16px;
  }

  p {
    font-size: 12px;
  }
}
