/* =========================================
   KAIZEN NEXTGEN - WEBSITE CLONE
   style.css
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Open+Sans:wght@400;600;700;800&display=swap');

/* ----- CSS RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', 'Raleway', sans-serif;
  font-size: 16px;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.25s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0 20px; }

/* =========================================
   TOP SUB-HEADER BAR
   ========================================= */
.sub-header {
  background: #FE3B00;
  color: #fff;
  padding: 7px 0;
  z-index: 1000;
  position: relative;
}

.sub-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
}

.info-list li a { color: #fff; }
.info-list li a:hover { opacity: 0.8; }
.info-list .fa { font-size: 12px; }
.divider { color: rgba(255,255,255,0.5); font-size: 18px; margin: 0 4px; }

.sub-header .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-header .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 12px;
  transition: background 0.2s, border-color 0.2s;
}

.sub-header .social-links li a:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* =========================================
   MAIN HEADER / NAVIGATION
   ========================================= */
.main-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.logo img {
  height: 55px;
  width: auto;
}

/* Desktop Nav */
.desktop-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: #222;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-list > li > a .fa { font-size: 11px; }

.nav-list > li > a:hover,
.nav-list > li > a.active { color: #FE3B00; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border-top: 3px solid #FE3B00;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  padding: 8px 0;
}

.has-dropdown:hover > .dropdown { display: block; }

.dropdown li { position: relative; }

.dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 18px;
  font-size: 13.5px;
  color: #333;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.dropdown li a:hover { background: #FE3B00; color: #fff; }

/* Sub-dropdown */
.sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  border-top: 3px solid #FE3B00;
}

.dropdown li:hover > .sub-dropdown { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #fff;
  padding: 16px 20px;
  border-top: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.mobile-nav-list > li { border-bottom: 1px solid #f0f0f0; }

.mobile-nav-list > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.mobile-nav-list > li > a:hover { color: #FE3B00; }

.mob-dropdown {
  display: none;
  padding: 6px 0 6px 16px;
  border-left: 3px solid #FE3B00;
  margin-bottom: 8px;
}

.mob-dropdown li a {
  display: block;
  padding: 7px 8px;
  font-size: 13px;
  color: #555;
}

.mob-dropdown li a:hover { color: #FE3B00; }
.mob-dropdown.open { display: block; }

/* =========================================
   HERO SLIDER
   ========================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000;
}

.slide {
  display: none;
  animation: fadeSlide 0.6s ease-in-out;
}
.slide.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.slide-banner {
  width: 100%;
  line-height: 0;
}

.banner-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Ensure hero slider stretches fully */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000;
  line-height: 0;
}

/* Keep hero-btn usable elsewhere on page */
.hero-btn {
  display: inline-block;
  background: #FE3B00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
  background: #d43200;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254,59,0,0.35);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.dot.active {
  background: #FE3B00;
  border-color: #FE3B00;
}

/* =========================================
   INTRO SECTION
   ========================================= */
.intro-section {
  padding: 60px 0 30px;
}

.section-inner { max-width: 100%; }

.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.para {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
}

/* =========================================
   TWO-COLUMN LAYOUTS (Vision, Mission, Dynamics, Partner)
   ========================================= */
.two-col {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 50px 0;
}

.two-col.align-center { align-items: center; }

.col-text { flex: 1; }
.col-img { flex: 0 0 42%; max-width: 42%; }

.col-img img {
  width: 100%;
  border-radius: 12px;
}

.img-fluid { max-width: 100%; }

/* Vision */
.vision-section { padding: 0; }
.mission-section { padding: 0; }

.font-bold-first {
  font-size: 40px;
  font-weight: 700;
  display: inline;
}

.rounded { border-radius: 12px; }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-choose-us {
  background: #f5f1f1;
  padding: 50px 0;
}

.section-title-center { text-align: center; margin-bottom: 36px; }
.section-title-center h2 { font-size: 28px; font-weight: 700; color: #111; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-box {
  background: #fff;
  border-radius: 10px;
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.service-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-box h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 14px;
  color: #111;
}

.service-box p {
  font-size: 13.5px;
  color: #555;
  text-align: center;
  line-height: 1.65;
}

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

/* =========================================
   OUR APPROACH
   ========================================= */
.approach-section {
  padding: 60px 0;
  background: #fff;
}

.approach-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}

.approach-items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
}

/* The wavy connector line */
.approach-items::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: #2c3e6b;
  transform: translateY(-50%);
  z-index: 0;
}

.approach-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.process-box {
  background: #2c3e6b;
  color: #fff;
  border-radius: 8px;
  padding: 14px 16px;
  max-width: 150px;
  min-height: 80px;
  position: relative;
  margin: 8px;
  box-shadow: 0 4px 16px rgba(44,62,107,0.3);
}

.process-box::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.process-box.bottom::after {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 10px solid #2c3e6b;
}

.process-box.top::after {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid #2c3e6b;
}

.process-box h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-box p {
  font-size: 11.5px;
  opacity: 0.85;
  line-height: 1.4;
}

.process-box.invisible { background: transparent; box-shadow: none; }
.process-box.invisible::after { display: none; }

.approach-circle {
  flex: 0 0 auto;
  margin: 6px 0;
  z-index: 2;
}

.circle-border {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #2c3e6b;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  box-shadow: 0 2px 12px rgba(44,62,107,0.2);
  transition: background 0.25s, box-shadow 0.25s;
}

.circle-border:hover {
  background: #FE3B00;
  border-color: #FE3B00;
  box-shadow: 0 6px 24px rgba(254,59,0,0.3);
}

.circle-border:hover .circle-img i { color: #fff; }

.circle-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-img i {
  font-size: 22px;
  color: #2c3e6b;
  transition: color 0.25s;
}

/* =========================================
   INDUSTRIES SECTION
   ========================================= */
.industries-section {
  background: #f5f1f1;
  padding: 50px 0;
}

.section-heading-center {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 36px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: visible;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.industry-icon {
  width: 90px;
  height: 90px;
  margin: -60px auto 20px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 16px;
}

.industry-icon svg { width: 100%; height: 100%; }

.industry-card h2 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
  margin-bottom: 14px;
  margin-top: 16px;
}

.industry-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.65;
  text-align: justify;
}

/* =========================================
   COUNTER SECTION
   ========================================= */
.counter-section {
  padding: 60px 0;
  background: #fff;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.counter-box {
  border-radius: 12px;
  padding: 30px 20px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.counter-box.red-border {
  border-bottom: 4px solid #b33a3a;
  border-left: 4px solid #b33a3a;
}

.counter-box.blue-border {
  border-bottom: 4px solid #2c3e6b;
  border-left: 4px solid #2c3e6b;
}

.counter-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.counter-icon.red { background: #fde8e0; color: #b33a3a; }
.counter-icon.blue { background: #e0e8f8; color: #2c3e6b; }

.counter-number {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.count-val {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  line-height: 1;
}

.plus {
  font-size: 28px;
  font-weight: 700;
  color: #FE3B00;
  line-height: 1;
  margin-top: 4px;
}

.counter-box h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #777;
}

/* =========================================
   OUR SERVICES CAROUSEL
   ========================================= */
.services-section {
  background: #f5f1f1;
  padding: 60px 0;
}

.services-carousel {
  display: flex;
  gap: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.service-card {
  flex: 0 0 calc(33.33% - 16px);
  background: #fff;
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 4px solid transparent;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }

.service-card1 { border-bottom-color: #2c3e6b; }
.service-card2 { border-bottom-color: #2c3e6b; }
.service-card3 { border-bottom-color: #FE3B00; }
.service-card4 { border-bottom-color: #d4367e; }

.service-card.featured {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #2c3e6b;
}

.service-card3 .service-card-icon { background: #fff0e8; color: #FE3B00; }
.service-card4 .service-card-icon { background: #ffeaf4; color: #d4367e; }

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.35;
}

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

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #2c3e6b;
  background: transparent;
  color: #2c3e6b;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.carousel-nav button:hover { background: #2c3e6b; color: #fff; }

/* =========================================
   MICROSOFT DYNAMICS 365 SECTION
   ========================================= */
.dynamics-section {
  padding: 60px 0;
  background: #fff;
}

/* =========================================
   PARTNER SECTION
   ========================================= */
.partner-section {
  padding: 0 0 60px;
  background: #fff;
}

/* =========================================
   OUR PARTNERS CAROUSEL
   ========================================= */
.partners-section {
  padding: 50px 0;
  background: #fff;
}

.partners-track-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 0;
  animation: scrollPartners 20s linear infinite;
  width: max-content;
}

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

.partner-logo {
  flex: 0 0 200px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ccc;
  margin: 2px;
  padding: 14px 20px;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.partner-logo:hover {
  border-color: #FE3B00;
  box-shadow: 0 4px 16px rgba(254,59,0,0.1);
}

.partner-logo span {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.3;
}

.partner-logo span em { font-style: italic; color: #FE3B00; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  padding: 60px 0;
  background: #f5f1f1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  background: #f5f1f1;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.contact-left h1,
.contact-right h1 {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  color: #111;
  margin-bottom: 30px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px dashed #ccc;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 16px;
  border-right: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
}

.info-box.even { background: #fff; }

.info-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FE3B00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-content h6 {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.info-content p,
.info-content a {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
}

.info-content a:hover { color: #FE3B00; }

.lets-connect h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.social-icons-contact {
  display: flex;
  gap: 10px;
}

.social-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FE3B00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.25s, transform 0.2s;
}

.social-circle:hover { background: #d43200; transform: translateY(-3px); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: #FE3B00;
  box-shadow: 0 0 0 3px rgba(254,59,0,0.1);
}

textarea.form-input { resize: vertical; min-height: 100px; }

.submit-btn {
  background: #FE3B00;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  width: fit-content;
}

.submit-btn:hover {
  background: #d43200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254,59,0,0.35);
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
  background: #0a0a0a;
  color: #ccc;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo img {
  height: 55px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.15));
}

.footer-title { margin-bottom: 20px; }
.footer-title h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  padding-bottom: 12px;
  border-bottom: 2px solid #FE3B00;
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
}

.footer-links li .fa-solid { color: #FE3B00; font-size: 10px; }
.footer-links li a { color: #aaa; transition: color 0.2s; }
.footer-links li a:hover { color: #FE3B00; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
}

.footer-contact-list li .fa {
  color: #FE3B00;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list li a { color: #aaa; }
.footer-contact-list li a:hover { color: #FE3B00; }
.footer-contact-list li span { color: #aaa; line-height: 1.4; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  font-size: 22px;
  color: #aaa;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover { color: #FE3B00; transform: translateY(-3px); }

.footer-hr {
  border: none;
  border-top: 1px solid #222;
  margin: 40px 0 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.footer-bottom-left a {
  font-size: 13px;
  color: #aaa;
  transition: color 0.2s;
}

.footer-bottom-left a:hover { color: #FE3B00; }

.footer-bottom-right p { font-size: 13px; color: #aaa; }
.footer-bottom-right a { color: #FE3B00; }

/* =========================================
   FLOATING WHATSAPP BUTTON
   ========================================= */
.floating_btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10000;
}

.contact_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse 2s infinite;
  cursor: pointer;
  transition: transform 0.2s;
}

.contact_icon:hover { transform: scale(1.1); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================
   ENQUIRE NOW SIDEBAR
   ========================================= */
.sidebar-contact {
  position: fixed;
  top: 30%;
  right: -300px;
  width: 300px;
  background: #fff;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  border-radius: 12px 0 0 12px;
  padding: 24px 20px;
  z-index: 9998;
  transition: right 0.35s ease;
}

.sidebar-contact.open { right: 0; }

.sidebar-contact .toggle {
  position: absolute;
  top: 50%;
  left: -90px;
  transform: translateY(-50%) rotate(-90deg);
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.sidebar-contact h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.sidebar-contact .scroll { display: flex; flex-direction: column; gap: 12px; }

.sidebar-contact input,
.sidebar-contact textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  resize: vertical;
}

.sidebar-contact input:focus,
.sidebar-contact textarea:focus { border-color: #FE3B00; }

.contact-btn-container {
  background: #FE3B00;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  text-align: center;
  justify-content: center;
}

.contact-btn-container:hover { background: #d43200; }

/* =========================================
   SECTION FADE-IN ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.leftAni { animation: slideInLeft 0.7s ease forwards; }
.rightAni { animation: slideInRight 0.7s ease forwards; }

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

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

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

/* Large Desktop */
@media (max-width: 1200px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero banner responsive */
  .banner-img {
    height: 380px;
    object-position: center center;
  }

  .slide-inner { padding: 30px 20px; }
  .slide-content-wrap { flex-direction: column; gap: 20px; }
  .slide-text { flex: 1; max-width: 100%; text-align: center; }
  .slide-image { flex: 1; max-width: 100%; }
  .slider-img { max-height: 250px; }
  .slide-text h3 { font-size: 22px; }

  .two-col { flex-direction: column; gap: 30px; }
  .col-img { flex: 1; max-width: 100%; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }

  .approach-items { display: none; }

  .approach-section::after {
    content: '';
    display: block;
  }

  .services-carousel { overflow-x: auto; scroll-snap-type: x mandatory; }
  .service-card { flex: 0 0 280px; scroll-snap-align: start; }
}

/* Mobile */
@media (max-width: 640px) {
  .sub-header-inner { flex-direction: column; gap: 8px; }
  .industries-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .industry-card { margin-top: 50px; }

  /* Hero banner mobile */
  .banner-img {
    height: 220px;
    object-position: center center;
  }

  .slider-dots { bottom: 8px; gap: 7px; }
  .dot { width: 9px; height: 9px; }

  .slide-text h3 { font-size: 18px; }
  .hero-btn { padding: 10px 20px; font-size: 12px; }

  .section-heading { font-size: 22px; }
  .section-heading-center { font-size: 22px; }
}

/* Very small phones */
@media (max-width: 400px) {
  .banner-img {
    height: 160px;
  }

  .slider-dots { bottom: 6px; }
  .dot { width: 8px; height: 8px; }
}
