/*==========================
TOPBAR
===========================*/

.topbar {
  background: #ffffff;
  display: none;
  padding: 0.7vw 0;

  border-bottom: 0.06vw solid #ececec;
}

.topbar-wrapper {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.topbar-left {
  display: flex;

  gap: 2vw;
}

.topbar-left a {
  color: #555;

  font-size: 0.9rem;

  transition: 0.3s;
}

.topbar-left a:hover {
  color: var(--primary);
}

.topbar-right p {
  font-size: 0.9rem;

  color: #555;
}

/*==========================
HEADER
===========================*/

.header {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 999;
}

/*==========================
NAVBAR
===========================*/
.navbar {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 999;

  background: #ffffff;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 2vw;
}

.logo img {
  width: 10vw;

  min-width: 10rem;

  display: block;

  padding: 1vw 0;
}

.nav-social {
  display: flex;

  justify-content: center;

  gap: 1vw;

  padding: 1vw 0;
}

.nav-social a {
  width: 2.2vw;

  height: 2.2vw;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  color: #555;

  font-size: 1.1rem;

  transition: 0.35s;
}

.nav-social a:hover {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  color: #555;
  font-size: 1.01rem;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
  /* text-transform: uppercase; */
}

.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4vw;
  width: 0;
  height: 0.12vw;
  background: var(--accent);
  transition: 0.35s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu > li > a:hover::after {
  width: 100%;
}

/* Dropdown Menu Desktop Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-chevron {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 15px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border-top: 3px solid var(--primary);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  /* transform: translateX(-50%) translateY(0); */
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  color: var(--gray-700) !important;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: none !important;
  position: relative;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a .drop-icon {
  font-size: 0.8rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
  color: var(--primary) !important;
  background-color: var(--gray-50);
  padding-left: 28px; /* subtle slide-right hover animation */
}

.dropdown-menu a:hover .drop-icon {
  transform: translateX(3px);
}

/* Mobile Toggle & Overlay Base Styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.mobile-socials {
  display: none !important;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6); /* custom dark-bg with alpha */
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/*==========================
BUTTON
===========================*/

.btn-primary {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  padding: 1vw 2vw;

  background: var(--primary);

  color: #fff;

  border-radius: 5vw;

  font-weight: 600;

  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/*=================================
HERO
==================================*/

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  background:
    linear-gradient(rgba(10, 18, 30, 0.72), rgba(10, 18, 30, 0.72)),
    url("../Images/slider/manufacturing-plant.webp");
  transition: background-image 0.5s ease-in-out;

  background-size: cover;

  background-position: top;

  background-repeat: no-repeat;

  overflow: hidden;
}

/*=================================
OVERLAY
==================================*/

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18));
}

/*=================================
CONTENT
==================================*/

.hero-wrapper {
  position: relative;

  z-index: 2;

  width: 60%;
}

.hero-content {
  margin-top: 10vw;
  max-width: 48vw;
}

.hero-subtitle {
  display: inline-block;

  color: var(--accent);

  font-size: 1rem;

  font-weight: 600;

  letter-spacing: 0.25rem;

  text-transform: uppercase;

  margin-bottom: 1.2vw;
}

.hero-content h1 {
  font-size: clamp(3rem, 4vw, 5.5rem);

  color: #fff;

  line-height: 1.1;

  margin-bottom: 1.5vw;

  font-weight: 600;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  width: 85%;

  color: #f1f1f1;

  font-size: 1.05rem;

  line-height: 1.9;

  margin-bottom: 2vw;
}

/*=================================
BUTTONS
==================================*/

.hero-buttons {
  display: flex;

  gap: 1.2vw;

  align-items: center;
}

.btn-primary {
  padding: 1vw 2.2vw;

  background: var(--primary);

  color: #fff;

  border-radius: 5vw;

  transition: 0.35s;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  padding: 1vw 2.2vw;

  border: 0.12vw solid #fff;

  color: #fff;

  border-radius: 5vw;

  transition: 0.35s;
}

.btn-outline:hover {
  background: #fff;

  color: #111;
}

/*=================================
SCROLL
==================================*/

.scroll-down {
  position: absolute;

  bottom: 2vw;

  left: 50%;

  transform: translateX(-50%);

  color: #fff;

  writing-mode: vertical-rl;

  letter-spacing: 0.15rem;

  font-size: 0.9rem;

  z-index: 5;
}

.scroll-down::before {
  content: "";

  width: 0.08vw;

  height: 4vw;

  background: #fff;

  display: block;

  margin: 0 auto 1vw;
}

/*=================================
FEATURES
==================================*/
.features {
  padding: 3vw 0 3vw;
  background: #ffffff;
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
}

.feature-card {
  background: #f8f9fa;
  padding: 1vw 2vw;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.feature-card:hover {
  background: #f1f5f9;
}

.feature-card .watermark {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(0,0,0,0.03);
  z-index: -1;
  line-height: 1;
}

/* .feature-icon {
  margin-bottom: 1.5vw;
} */

.feature-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.feature-icon img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.feature-card h3 {
  color: var(--gray-900);
  font-size: 1.2rem;
  margin-bottom: 1vw;
  font-weight: 700;
}

.feature-card p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.6;
}

.feature-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-family: var(--rs-ff-title, 'Outfit', sans-serif);
  font-weight: 600;
  color: #ed5900;
  font-size: 1.05rem;
  margin-top: 1vw;
  width: auto;
  gap: 15px;
}

.feature-view-btn .feature-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #f1f5f9; /* Light gray box from screenshot */
  border-radius: 4px;
  color: #ed5900;
  transition: 0.3s ease;
}

.feature-view-btn:hover .feature-btn-icon {
  background-color: var(--primary, #ed5900);
  color: var(--white, #ffffff);
}

/*=================================
ABOUT NEW
==================================*/
.about-new {
  padding: 3vw 0 0;
  background-color: #fafafa;
}
.about-new-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  margin-bottom: 3vw;
}
.about-new-left .section-subtitle {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-new-left .about-new-title {
  color: var(--gray-900);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-top: 1vw;
  line-height: 1.2;
}
.about-new-left .highlight {
  color: var(--primary);
}
.about-new-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-new-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5vw;
  line-height: 1.5;
}
.about-new-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-new-image {
  width: 100%;
  height: 38vw;
  position: relative;
  overflow: hidden;
  margin-top: 2vw;
}
.about-new-image img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  object-position: top;
  clip-path: polygon(0 0, calc(100% - 6vw) 0, 100% 6vw, 100% 100%, 0 100%);
}
.btn-about {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 1.2vw 2.5vw;
  background: var(--primary);
  color: #fff;
  /* border-radius: 4px; */
  font-weight: 600;
  transition: 0.3s;
}
.btn-about:hover {
  background: #d64f00;
}


/*=================================
WHY CHOOSE US
==================================*/
.why-choose-us {
  padding: 3vw 0;
  background-color: var(--body-bg);
}

.why-choose-wrapper {
  display: flex;
  align-items: center;
  gap: 4vw;
}

.why-choose-left, .why-choose-right {
  flex: 1;
}

.why-choose-left .features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.why-choose-left .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-choose-left .feature-icon-box {
  width: 70px;
  height: 70px;
  /* background-color: #0066cc;
   */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
}

.why-choose-left .feature-icon-box img {
  /* width: 35px; */
  height: auto;
  /* filter: brightness(0) invert(1); */
}

.why-choose-left .feature-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.why-choose-left .feature-text p {
  color: var(--text-color);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-choose-right .why-choose-images {
  position: relative;
  width: 100%;
  padding-left: 2vw;
  padding-bottom: 2vw;
}

.why-choose-images .img-main {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-small-wrapper {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 250px;
  height: 250px;
  border: 10px solid var(--body-bg);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
}

.img-small-wrapper .img-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-small-wrapper .play-btn {
  /* position: absolute; */
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  /* background-color: #0066cc; */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  padding-left: 5px;
  transition: 0.3s;
}

.img-small-wrapper .play-btn:hover {
  background-color: var(--gray-900);
}

@media (max-width: 991px) {
  .why-choose-wrapper {
    flex-direction: column;
    gap: 8vw;
  }
  .why-choose-images {
    padding-left: 0;
  }
  .img-small-wrapper {
    width: 200px;
    height: 200px;
    left: 10px;
    bottom: -10px;
  }
}

/*=================================
ABOUT STATS
==================================*/
.company-stats {
  background-color: #ffffff;
  padding: 3vw 0;
}

.about-stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3vw;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-stat-number {
  display: flex;
  align-items: center;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-family: var(--rs-ff-title);
  color: var(--primary);
  margin-bottom: 1.2vw;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}

.about-stat-number .odometer {
  font-family: inherit;
  font-weight: inherit;
}

.about-stat-divider {
  width: 100%;
  height: 1px;
  background-color: var(--gray-200);
  margin-bottom: 1.2vw;
}

.about-stat-text {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 500;
  text-align: left;
}

/*=================================
SERVICES SECTION
==================================*/
.services-section {
  padding: 3vw 0;
  background-color: #fafafa;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3vw;
}

.services-header-left {
  max-width: 60%;
}

.services-title {
  /* font-size: clamp(2rem, 3vw, 3.5rem); */
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: var(--rs-ff-title);
  color: var(--gray-900);
  line-height: 1.1;
  margin-top: 10px;
  font-weight: 700;
}

.btn-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 1vw 2vw;
  background: transparent;
  color: var(--gray-900);
  border: 1px solid #ddd;
  /* border-radius: 4px; */
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: var(--gray-900);
}

.services-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3vw;
  align-items: flex-start;
}

.services-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border: 1px solid #eee;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
}

.service-tab i {
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s;
}

.service-tab:hover {
  background: #f9f9f9;
}

.service-tab.active {
  background: #ed5900;
  color: #fff;
  border-color: #ed5900;
  box-shadow: 0 10px 20px rgba(237, 89, 0, 0.2);
}

.service-tab.active i {
  opacity: 1;
  transform: translateX(0);
}

.services-display {
  background: #fafafa;
  position: relative;
}

.service-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
  animation: fadeIn 0.5s ease;
}

.service-panel.active {
  display: grid;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  height: 75%;
  min-height: 400px;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
}

.service-details {
  padding: 0vw 2vw 2vw 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-details h3 {
  font-size: 1.6rem;
  font-family: var(--rs-ff-title);
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.service-details p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.service-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 2.5rem;
}

.service-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--gray-800);
}

.service-highlights li i {
  color: #ed5900;
  font-size: 1.2rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.read-more {
  font-weight: 700;
  color: var(--gray-900);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.read-more:hover {
  color: #ed5900;
}

.service-action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ed5900;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
}

.service-action-btn i {
  transform: rotate(45deg);
  transition: 0.3s;
}

.service-action-btn:hover {
  background: #d84b00;
}

.service-action-btn:hover i {
  transform: rotate(45deg) scale(1.2);
}

@media (max-width: 992px) {
  .services-content {
    grid-template-columns: 1fr;
  }
  .service-panel {
    grid-template-columns: 1fr;
  }
  .service-details {
    padding: 2vw;
  }
  .service-image img {
    min-height: 300px;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .services-header-left {
    max-width: 100%;
  }
  
.why-choose-left .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}



}

/*=================================
PARTNERS
==================================*/
.partners-section {
  padding: 3vw 0;
  background-color: var(--gray-50);
  overflow: hidden;
}

.partners-section .section-title {
  margin-bottom: 3vw;
}

.partners-section .section-subtitle {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.partners-section h2 {
  text-align: center;
}
.partners-section .section-subtitle.justify-content-center {
  justify-content: center;
  width: 100%;
}

.marquee-wrapper {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 150px;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2vw;
  width: max-content;
  animation: scrollMarquee 160s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track .brand-card {
  height: 120px;
  width: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 0 100%);
}

.marquee-track .brand-card img {
  /* max-height: 70px; */
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.marquee-track .brand-card:hover img {
  transform: scale(1.2);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1vw)); }
}

/*=================================
FOOTER
==================================*/

.footer {
  background-color: #1a1a1a;
  color: #a0a0a0;
  padding-top: 5vw;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.2fr 1fr;
  gap: 3vw;
  padding-bottom: 4vw;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
}

.footer-contact-item p {
  margin-bottom: 0 !important;
}

.footer-icon {
  width: 20px;
  margin-right: 5px;
  margin-top: 4px;
  flex-shrink: 0;
  /* filter: brightness(0) invert(1); */
}

.footer-logo {
  width: 170px;
  height: 65px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1rem;
  display: block;
}

.footer-col p {
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.address-text {
  color: #a0a0a0;
}

.footer-links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: #a0a0a0;
  transition: 0.3s;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.footer-link-chevron {
  width: 14px;
  height: 14px;
  display: inline-block;
  transition: 0.3s ease;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-links li a:hover {
  color: var(--primary);
}

.footer-links li a:hover .footer-link-chevron {
  transform: translateX(4px);
}

.mt-4 {
  margin-top: 2rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: #333;
  color: #a0a0a0;
  border-radius: 4px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 1.5vw 0;
  position: relative;
}

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.95rem;
  margin: 0;
}

.footer-bottom span {
  color: var(--primary);
}

.back-to-top {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: 0.3s;
}
.back-to-top:hover {
  background-color: #ffffff;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-links-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Mobile Navbar Styles */
@media (max-width: 991px) {
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }

  .nav-social {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Morph to 'X' when active */
  .nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  /* Slide-in Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* width: 320px; */
    width: 100%;
    height: auto;
    background-color: var(--white);
    box-shadow: -5px 0 30px rgba(15, 23, 42, 0.15);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 30px 40px 30px;
    gap: 20px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    list-style: none;
  }

  .nav-menu a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-800);
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.3s ease;
  }

  .nav-menu a:hover {
    color: var(--primary);
  }

  .nav-menu a::after {
    display: none;
  }

  /* Mobile Dropdown Accordion Styles */
  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    border-left: 2px solid var(--primary);
    padding: 5px 0 5px 15px;
    margin-top: 5px;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    display: none; /* controlled by JS toggle */
    background-color: var(--gray-50);
    transition: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown.open .nav-chevron {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 8px 10px;
    border-bottom: none !important;
  }

  .dropdown-menu a:hover {
    background-color: transparent;
    padding-left: 15px;
  }

  /* Mobile Social Links inside Drawer */
  .nav-menu .mobile-socials {
    display: flex !important;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    width: 100%;
  }

  .nav-menu .mobile-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-100);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray-700);
    font-size: 1.1rem;
    border-bottom: none;
    padding: 0;
    transition: all 0.3s ease;
  }

  .nav-menu .mobile-socials a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
  }
}

/* ==========================================
   INDEX PAGE RESPONSIVENESS PATCH
   ========================================== */

/* Global Responsive Section Padding */
@media (max-width: 991px) {
  section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
}

/* 1. Hero Section */
@media (max-width: 991px) {
  .hero-wrapper {
    width: 100%;
  }
  .hero-content {
    margin-top: 80px;
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    margin-bottom: 20px;
  }
  .hero-content p {
    width: 100%;
    max-width: 100% !important;
    margin-bottom: 25px;
  }
  .hero-buttons {
    margin-top: 20px !important;
  }
  .hero-buttons .btn-accent {
    padding: 12px 28px !important;
  }
}
@media (max-width: 576px) {
  .hero-content {
    margin-top: 60px;
  }
  .hero-buttons .btn-accent {
    padding: 10px 24px !important;
    font-size: 0.95rem;
  }
}

/* 2. Features Section (4-Card Grid) */
@media (max-width: 991px) {
  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .feature-card {
    padding: 30px 20px;
  }
  .feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .features-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* 3. About Section */
@media (max-width: 991px) {
  .about-new-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-new-image {
    height: 300px;
    margin-top: 20px;
  }
  .about-new-image img {
    height: 100%;
  }
  .about-new-right div[style*="margin-top"] {
    margin-top: 20px !important;
  }
  .btn-about {
    padding: 12px 28px;
  }
}
@media (max-width: 576px) {
  .about-new-image {
    height: 220px;
  }
  .btn-about {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* 4. Company Stats Section */
.about-stat-number {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .about-stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .about-stat-number {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 10px;
  }
  .about-stat-divider {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .about-stats-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-stat-number {
    font-size: 3.5rem;
  }
}

/* 5. Services Section */
@media (max-width: 576px) {
  .service-tab {
    padding: 12px 16px;
    font-size: 1rem;
  }
  .service-details h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }
  .service-details p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .service-highlights {
    margin-bottom: 1.5rem;
  }
  .service-image img {
    min-height: 220px;
  }
}

/* 6. Partners Section Marquee */
@media (max-width: 768px) {
  .marquee-wrapper {
    height: 100px;
  }
  .marquee-track .brand-card {
    height: 80px;
    width: 130px;
    padding: 10px;
  }
}

/* 7. Why Choose Us Section overlapping video/image */
@media (max-width: 768px) {
  .img-small-wrapper {
    width: 150px;
    height: 150px;
    left: -10px;
    bottom: -10px;
    border-width: 5px;
  }
}
@media (max-width: 480px) {
  .img-small-wrapper {
    width: 110px;
    height: 110px;
    left: -5px;
    bottom: -5px;
    border-width: 4px;
  }
}

