/* =============================================================
   S-BEE KONET LIMITED — Main Stylesheet
   ============================================================= */

/* 01. Font & Reset
------------------------------------------------------------ */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:100,200,300,400,500,600,700,800,900");

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, div pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, font,
img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt,
var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0; padding: 0; border: 0; outline: 0;
}
* { box-sizing: border-box; }
ul, li { padding: 0; margin: 0; list-style: none; }
header, nav, section, article, aside, footer, hgroup { display: block; }

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none !important; }
h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: 0; color: #212741; }
ul { margin-bottom: 0; }
p { font-size: 15px; line-height: 26px; color: #212741; }
img { width: 100%; overflow: hidden; }

::selection        { background: #ff511a; color: #fff; }
::-moz-selection   { background: #ff511a; color: #fff; }


/* 02. Global Utilities
------------------------------------------------------------ */
.green-button a {
  font-size: 14px; color: #fff; background-color: #43ba7f;
  padding: 12px 30px; display: inline-block; border-radius: 5px;
  font-weight: 500; text-transform: capitalize; letter-spacing: .5px; transition: all .3s;
}
.green-button a:hover { opacity: .9; }

.orange-button a {
  font-size: 14px; color: #fff; background-color: #ff511a;
  padding: 12px 30px; display: inline-block; border-radius: 5px;
  font-weight: 500; text-transform: capitalize; letter-spacing: .5px; transition: all .3s;
}
.orange-button a:hover { opacity: .9; }

section { margin-top: 80px; }

.section-heading {
  position: relative; z-index: 2; margin-top: 0; text-align: center; margin-bottom: 50px;
}
.section-heading h6 { font-size: 16px; text-transform: uppercase; color: #ff511a; font-weight: 700; }
.section-heading h4 { margin-top: 10px; line-height: 40px; font-size: 36px; font-weight: 700; text-transform: capitalize; color: #212741; }
.section-heading p  { margin-top: 30px; }

@media (max-width: 991px) {
  .mobile-top-fix    { margin-top: 30px; margin-bottom: 0; }
  .mobile-bottom-fix { margin-bottom: 30px; }
  .mobile-bottom-fix-big { margin-bottom: 60px; }
}


/* 03. Header & Announcement Bar
------------------------------------------------------------ */

/* Announcement bar */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #212741; text-align: center;
  padding: 9px 20px; font-size: 13px;
  transition: transform .35s ease, opacity .35s ease;
}
.announcement-bar a {
  color: rgba(255,255,255,.88); letter-spacing: .2px;
}
.announcement-bar a i { margin-right: 7px; color: #43ba7f; }
.announcement-bar a:hover { color: #fff; }
.announcement-bar.bar-hidden { transform: translateY(-100%); }

/* Main header */
.header-area {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 999;
  background: #fff; border-bottom: 1px solid #eee;
  transition: top .35s ease, box-shadow .35s ease;
}
.header-area.scrolled {
  top: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.09);
  border-bottom-color: transparent;
}

/* Inner flex row */
.header-inner {
  display: flex; align-items: center; height: 70px; gap: 16px;
}

/* Logo */
.header-area .logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none;
}
.header-area .logo img { height: 40px; width: auto; }
.logo-text {
  font-size: 13px; font-weight: 800; color: #212741;
  text-transform: uppercase; letter-spacing: .6px; line-height: 1.2;
}
.logo-text small { display: block; font-size: 8.5px; font-weight: 600; color: #43ba7f; letter-spacing: 2px; }

/* Nav links */
.main-nav-links {
  display: flex; align-items: center; flex: 1;
  justify-content: center; gap: 2px; list-style: none; margin: 0; padding: 0;
}
.main-nav-links > li > a {
  display: block; font-size: 14px; font-weight: 500; color: #555;
  padding: 7px 13px; border-radius: 7px; white-space: nowrap;
  transition: color .2s, background .2s;
}
.main-nav-links > li > a:hover { color: #212741; background: #f5f5f5; }
.main-nav-links > li > a.active { color: #212741; font-weight: 700; background: #f0f0f0; }

/* Dropdown */
.main-nav-links > li.has-sub { position: relative; }
.main-nav-links > li.has-sub .sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12); min-width: 180px;
  padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .22s; z-index: 500;
}
.main-nav-links > li.has-sub:hover .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav-links > li.has-sub .sub-menu li a {
  display: block; padding: 9px 14px; font-size: 13px;
  font-weight: 500; color: #444; border-radius: 6px; transition: all .2s;
}
.main-nav-links > li.has-sub .sub-menu li a:hover { background: #f5f5f5; color: #212741; }

/* Right actions */
.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-portal-link {
  font-size: 14px; font-weight: 700; color: #212741;
  white-space: nowrap; transition: color .2s;
}
.nav-portal-link i { margin-right: 5px; color: #43ba7f; }
.nav-portal-link:hover { color: #43ba7f; }

.nav-cta-pill {
  display: inline-block; padding: 10px 22px;
  background: #ff511a; color: #fff !important;
  border-radius: 50px; font-size: 14px; font-weight: 700;
  white-space: nowrap; letter-spacing: .2px;
  box-shadow: 0 4px 14px rgba(255,81,26,.3);
  transition: background .25s, transform .2s, box-shadow .2s;
}
.nav-cta-pill:hover {
  background: #e8431a; color: #fff !important;
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,81,26,.4);
}

/* Hamburger */
.menu-trigger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 4px 2px;
}
.menu-trigger span {
  display: block; width: 22px; height: 2px;
  background: #212741; border-radius: 2px; transition: all .3s;
}
.menu-trigger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-trigger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-trigger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.mobile-nav { display: none; background: #fff; border-top: 1px solid #f0f0f0; padding: 8px 0 16px; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav ul li a {
  display: block; padding: 11px 24px; font-size: 14px;
  font-weight: 500; color: #444; transition: color .2s, background .2s;
}
.mobile-nav ul li a:hover { color: #212741; background: #f8f8f8; }
.mobile-nav ul li a.mobile-cta {
  margin: 10px 20px 0; padding: 12px 24px;
  background: #ff511a; color: #fff !important;
  border-radius: 8px; text-align: center; font-weight: 700;
}
.mobile-nav ul li a.mobile-cta:hover { background: #e8431a; }

/* Page content offset — clears announcement bar + header */
.page-heading { padding-top: 165px !important; }

/* Responsive */
@media (max-width: 1100px) {
  .main-nav-links > li > a { padding: 7px 10px; font-size: 13px; }
  .nav-cta-pill { padding: 9px 16px; font-size: 13px; }
}
@media (max-width: 991px) {
  .main-nav-links { display: none !important; }
  .nav-portal-link { display: none; }
  .nav-cta-pill  { display: none; }
  .menu-trigger  { display: flex !important; }
  .mobile-nav.open { display: block; }
}
@media (max-width: 575px) {
  .announcement-bar { font-size: 11px; padding: 7px 12px; }
  .header-area { top: 34px; }
  .header-inner { height: 60px; }
  .header-area .logo img { height: 32px; }
  .logo-text { display: none; }
}


/* 04. Hero Swiper
------------------------------------------------------------ */
.swiper-container {
  height: 100vh; min-height: 560px; margin: 0; background-color: #212741;
  position: relative;
}
.swiper-slide { overflow: hidden; }

.slide-inner {
  position: absolute; width: 100%; height: 100%;
  left: 0; top: 0; background-size: cover; background-position: center;
}

/* Dark gradient overlay so text is always readable */
.slide-inner::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(20, 25, 50, 0.82) 0%,
    rgba(20, 25, 50, 0.55) 55%,
    rgba(20, 25, 50, 0.15) 100%
  );
}

/* Text animations */
.swiper-slide-active .header-text h2   { animation: fadeInLeft  .9s both; animation-delay: .2s; }
.swiper-slide-active .header-text .div-dec { animation: fadeIn   .9s both; animation-delay: .45s; }
.swiper-slide-active .header-text p    { animation: fadeInRight .9s both; animation-delay: .35s; }
.swiper-slide-active .header-text .buttons { animation: fadeInUp .9s both; animation-delay: .55s; }

/* Slide text block */
/* Container sits above the gradient overlay */
.slide-inner > .container { position: relative; z-index: 2; height: 100vh; display: flex; align-items: center; }

.slide-inner .header-text {
  position: relative; z-index: 2;
  width: 100%;
}
.slide-inner .header-text h2 {
  font-size: 52px; color: #fff; font-weight: 700;
  line-height: 66px; margin-bottom: 28px;
}
.slide-inner .header-text h2 em { font-style: normal; color: #ff511a; }
.slide-inner .header-text .div-dec {
  width: 70px; height: 5px; border-radius: 3px;
  background-color: #43ba7f; margin-bottom: 28px;
}
.slide-inner .header-text p {
  color: rgba(255,255,255,.88); margin-right: 40px; margin-bottom: 40px; font-size: 15px;
}
.slide-inner .header-text .buttons { display: flex; align-items: center; gap: 16px; }
.slide-inner .header-text .buttons .green-button,
.slide-inner .header-text .buttons .orange-button { float: none; display: inline-block; }

/* Nav arrows */
.swiper-button-next,
.swiper-button-prev {
  width: 50px; height: 50px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  color: #fff !important;
  transition: background .3s, border-color .3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #43ba7f;
  border-color: #43ba7f;
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 16px !important; font-weight: 700; }

/* Pagination dots */
.swiper-pagination { bottom: 24px !important; }
.swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,.5) !important;
  opacity: 1 !important;
  transition: all .3s;
}
.swiper-pagination-bullet-active {
  background: #43ba7f !important;
  width: 28px;
  border-radius: 5px;
}


/* 05. Services
------------------------------------------------------------ */
section.services { margin-top: 60px; }
.services .service-item {
  border-radius: 5px; padding: 30px; box-shadow: 0 0 15px rgba(0,0,0,.1); margin-top: 30px;
}
.services .service-item:hover i { margin-top: 15px; }
.services .service-item h4 { font-size: 22px; font-weight: 600; margin-bottom: 20px; }
.services .service-item i {
  transition: all .5s; float: left; font-size: 64px; color: #43ba7f;
  margin-bottom: 30px; margin-right: 30px;
}


/* 06. CTA Banner
------------------------------------------------------------ */
section.simple-cta {
  background-color: #212741;
  background-image: url(../assets/images/cta-bg.jpg);
  background-repeat: no-repeat; background-position: center; background-size: cover;
  width: 100%; padding: 80px 0;
}
section.simple-cta h4 { font-size: 30px; font-weight: 700; color: #fff; line-height: 44px; }
section.simple-cta h4 em    { font-style: normal; color: #43ba7f; }
section.simple-cta h4 strong { color: #ff511a; font-weight: 700; }
section.simple-cta p { color: #fff; margin-top: 30px; margin-bottom: 40px; }
section.simple-cta .buttons { display: flex; justify-content: flex-end; }
section.simple-cta .buttons .orange-button { margin-left: 20px; }
section.simple-cta .buttons .orange-button,
section.simple-cta .buttons .green-button { margin-top: 25px; }


/* 07. Why Choose Us
------------------------------------------------------------ */
section.why-choose-us { margin-top: 70px; }
.why-choose-us .feature-item {
  text-align: center; padding: 30px 25px; border-radius: 5px;
  box-shadow: 0 0 15px rgba(0,0,0,.08); margin-top: 30px; transition: all .3s;
}
.why-choose-us .feature-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.why-choose-us .feature-item i { font-size: 52px; color: #43ba7f; margin-bottom: 25px; display: block; }
.why-choose-us .feature-item h4 { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: #212741; }
.why-choose-us .feature-item p { font-size: 14px; color: #666; line-height: 26px; }


/* 08. About (tabs)
------------------------------------------------------------ */
section.about-us { margin-top: 70px; }
section.about-us .section-heading { padding-top: 0; }
section.about-us .naccs { position: relative; }
section.about-us .naccs .menu div {
  padding: 15px 30px; display: inline-block; text-align: center;
  border-radius: 5px !important; margin-right: 30px; font-size: 18px; color: #212741;
  background-color: #fff; cursor: pointer; vertical-align: middle; font-weight: 600;
  transition: 1s all cubic-bezier(.075,.82,.165,1); box-shadow: 0 0 15px rgba(0,0,0,.1);
}
section.about-us .naccs .menu div.active { color: #ff511a; }
section.about-us ul.nacc {
  margin-top: 30px !important; position: relative; min-height: 100%; list-style: none; padding: 0;
}
section.about-us ul.nacc li {
  background-color: #fff; overflow: hidden; opacity: 0;
  transform: translateX(50px); position: absolute; list-style: none;
  transition: 1s all cubic-bezier(.075,.82,.165,1);
}
section.about-us ul.nacc li .main-list,
section.about-us ul.nacc li .list-item { border-bottom: 1px solid #eee; margin-bottom: 25px; padding-bottom: 25px; }
section.about-us ul.nacc li .last-item { margin-bottom: 0; }
section.about-us ul.nacc li span.title  { font-size: 15px; color: #212741; font-weight: 600; display: inline-block; width: 24%; }
section.about-us ul.nacc li span.item   { font-size: 15px; color: #212741; font-weight: 400; display: inline-block; width: 24%; }
section.about-us ul.nacc li span.item-title { color: #43ba7f !important; font-weight: 600 !important; }
section.about-us ul.nacc li.active { position: relative; transition-delay: .3s; z-index: 2; opacity: 1; transform: translateX(0); }
section.about-us .right-content { margin-left: 30px; }
section.about-us .right-content h4 { font-size: 20px; font-weight: 700; line-height: 36px; margin-bottom: 25px; }
section.about-us .right-content p { margin-bottom: 30px; }


/* 09. Calculator / Quote Form
------------------------------------------------------------ */
/* 09. Calculator / Quote Section
------------------------------------------------------------ */
section.calculator {
  margin-top: 80px;
  background: linear-gradient(135deg, #131f35 0%, #1a3a5c 60%, #1a3038 100%);
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}
section.calculator::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(67,186,127,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,81,26,.06) 0%, transparent 50%);
}
section.calculator .container { position: relative; z-index: 1; }

/* Left visual card */
.quote-visual {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(4px);
  height: 100%;
}
.qv-top { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
.qv-main-icon {
  width: 70px; height: 70px; flex-shrink: 0;
  background: linear-gradient(135deg, #43ba7f, #2d8a60);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
}
.qv-main-icon i { font-size: 30px; color: #fff; }
.qv-top h3 { color: #fff; font-size: 26px; font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.qv-top p  { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.7; margin: 0; }

.qv-stats { display: flex; gap: 0; margin-bottom: 32px; }
.qv-stat {
  flex: 1; text-align: center; padding: 20px 10px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.qv-stat:last-child { border-right: none; }
.qv-stat strong { display: inline; font-size: 32px; font-weight: 800; color: #fff; }
.qv-stat span   { font-size: 22px; font-weight: 800; color: #43ba7f; }
.qv-stat p      { font-size: 12px; color: rgba(255,255,255,.5); margin: 4px 0 0; }

.qv-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.qv-features span {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px; padding: 6px 14px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.8);
}
.qv-features span i { color: #43ba7f; font-size: 12px; }

.qv-route { display: flex; align-items: center; gap: 12px; }
.qv-city { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 600; flex-shrink: 0; }
.qv-city i { color: #43ba7f; margin-right: 5px; }
.qv-line { flex: 1; display: flex; align-items: center; gap: 6px; }
.qv-line span { flex: 1; height: 1px; background: rgba(67,186,127,.4); }
.qv-line i { color: #43ba7f; font-size: 14px; }

/* Right form card */
.quote-form-card {
  background: #fff; border-radius: 20px; padding: 44px 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.qfc-header { margin-bottom: 28px; }
.qfc-header h6 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #ff511a; margin-bottom: 10px; }
.qfc-header h4 { font-size: 24px; font-weight: 800; color: #212741; margin-bottom: 8px; }
.qfc-header p  { font-size: 14px; color: #999; margin: 0; }

.qfc-group { margin-bottom: 18px; }
.qfc-group label { display: block; font-size: 12px; font-weight: 700; color: #212741; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px; }
.qfc-group label span { color: #ff511a; }
.qfc-group input,
.qfc-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e8e8e8; border-radius: 8px;
  font-size: 14px; color: #212741; background: #fafafa;
  outline: none; transition: border-color .25s, box-shadow .25s; font-family: inherit;
}
.qfc-group input:focus,
.qfc-group select:focus { border-color: #43ba7f; box-shadow: 0 0 0 3px rgba(67,186,127,.1); background: #fff; }
.qfc-group input::placeholder { color: #c5c5c5; }

.qfc-submit {
  width: 100%; padding: 14px 24px; margin-top: 4px;
  background: linear-gradient(135deg, #ff511a, #e8431a);
  color: #fff; font-size: 15px; font-weight: 700;
  border: none; border-radius: 50px; cursor: pointer;
  letter-spacing: .3px; transition: all .3s;
  box-shadow: 0 6px 20px rgba(255,81,26,.35);
}
.qfc-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,81,26,.45); }
.qfc-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.qfc-success {
  display: flex; align-items: flex-start; gap: 16px;
  background: #ecf8f2; border: 1.5px solid #43ba7f;
  border-radius: 10px; padding: 18px 20px; margin-bottom: 24px;
}
.qfc-success i { font-size: 24px; color: #43ba7f; flex-shrink: 0; margin-top: 2px; }
.qfc-success strong { display: block; color: #212741; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.qfc-success p { color: #555; font-size: 13px; margin: 0; }

.qfc-error {
  background: #fff3f0; border: 1.5px solid #ff511a;
  border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; font-size: 13px;
}
.qfc-error span { display: block; color: #ff511a; margin-bottom: 2px; }

@media (max-width: 991px) {
  .quote-visual { margin-bottom: 0; }
  .qv-top h3 { font-size: 22px; }
}
@media (max-width: 575px) {
  .quote-form-card { padding: 32px 24px; }
  .quote-visual { padding: 28px; }
  .qv-stat strong { font-size: 24px; }
}


/* 10. Testimonials
------------------------------------------------------------ */
section.testimonials { margin-top: 70px; }
section.testimonials .section-heading { padding-top: 0; }
.testimonials .item {
  border-radius: 15px; padding: 50px 320px 50px 50px; background-color: #fff;
  position: relative; overflow: hidden; margin: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,.1); padding-top: 35px;
}
.testimonials .item i {
  width: 70px; height: 70px; background-color: #43ba7f; display: inline-block;
  text-align: center; line-height: 70px; color: #fff; font-size: 44px;
  border-radius: 5px; margin-bottom: 30px;
}
.testimonials .item p    { font-size: 16px; font-style: italic; }
.testimonials .item h4   { margin-top: 30px; font-size: 22px; font-weight: 600; }
.testimonials .item span { margin-top: 5px; display: block; font-size: 15px; font-weight: 600; color: #43ba7f; }
.testimonials .item img  { position: absolute; right: 0; top: 50%; transform: translateY(-50%); max-width: 300px; border-radius: 5px; }
.testimonials .owl-dots  { text-align: center; margin-top: 30px; }
.testimonials .owl-dots .owl-dot  { width: 10px; height: 10px; background-color: #ffa88c; border-radius: 50%; margin: 0 4px; display: inline-block; }
.testimonials .owl-dots .active { background-color: #ff511a; }


/* 11. Partners Bar
------------------------------------------------------------ */
section.partners { background-color: #212741; padding: 50px 0; margin-top: 60px; }
section.partners .item { margin: 0 15px; cursor: pointer; transition: all .3s; }
section.partners .item:hover { opacity: .75; }
section.partners .partner-icon-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 20px 10px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08); transition: all .3s;
}
section.partners .partner-icon-item:hover { border-color: rgba(67,186,127,.4); background: rgba(67,186,127,.06); }
section.partners .partner-icon-item i { font-size: 32px; color: #43ba7f; }
section.partners .partner-icon-item span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); text-align: center; letter-spacing: .3px; }


/* 12. Main Footer
------------------------------------------------------------ */
footer.main-footer { background-color: #212741; padding: 55px 0 0; text-align: left; }
.footer-widget { margin-bottom: 40px; }
.footer-widget .footer-logo img { height: 60px; width: auto; margin-bottom: 20px; }
.footer-widget p { color: #aab0c3; font-size: 14px; line-height: 26px; margin-bottom: 25px; }
.footer-widget h5 {
  color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 25px;
  position: relative; padding-bottom: 12px;
}
.footer-widget h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px; background-color: #43ba7f; border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { color: #aab0c3; font-size: 14px; transition: all .3s; display: inline-block; }
.footer-links li a:hover { color: #43ba7f; padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { color: #aab0c3; font-size: 14px; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 12px; }
.footer-contact li i { color: #43ba7f; font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: #aab0c3; transition: color .3s; }
.footer-contact li a:hover { color: #43ba7f; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; background-color: rgba(255,255,255,.08);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: #aab0c3; font-size: 14px; transition: all .3s;
}
.social-links a:hover { background-color: #43ba7f; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; margin-top: 10px; }
.footer-bottom p { color: #aab0c3; font-size: 13px; margin: 0; }


/* 13. Preloader
------------------------------------------------------------ */
#preloader {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background-color: #212741; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
#preloader .spinner {
  width: 48px; height: 48px; border: 4px solid rgba(255,255,255,.15);
  border-top-color: #43ba7f; border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* 14. Page Heading (inner pages)
------------------------------------------------------------ */
.page-heading {
  background-color: #212741;
  background-image: url(../assets/images/heading-bg.jpg);
  background-position: center; background-repeat: no-repeat; background-size: cover;
  padding: 160px 0 80px; text-align: center;
}
.page-heading h2,
.page-heading h1    { font-size: 56px; color: #fff !important; font-weight: 700; }
.page-heading .div-dec {
  width: 80px; height: 6px; border-radius: 3px;
  background-color: #fff; margin: 20px auto 0;
}


/* 15. About Us Page
------------------------------------------------------------ */
section.top-section { margin-top: 70px; }
section.top-section .left-image img { border-radius: 10px; }
section.top-section .accordions {
  border-radius: 5px; padding: 50px 40px; background-color: #fff;
  margin-left: 30px; box-shadow: 0 0 15px rgba(0,0,0,.1);
}
.accordions .accordion { border-bottom: 1px solid #eee; }
.accordions .last-accordion { border-bottom: none; }
.accordion-head {
  padding: 35px 0 !important; font-size: 22px; font-weight: 600;
  color: #212741; cursor: pointer; transition: color 200ms ease-in-out;
}
.accordion-head .icon { float: right; transition: transform 200ms ease-in-out; }
.accordion-head.is-open { color: #43ba7f; border-bottom: none; }
.accordion-head.is-open .icon { transform: rotate(45deg); }
.accordion-body { padding: 0; overflow: hidden; height: 0; transition: height 300ms ease-in-out; }
.accordion-body > .content p { padding: 0 0 30px; }

section.what-we-do { margin-bottom: -30px; }
.what-we-do .left-content { margin-right: 60px; }
.what-we-do .left-content h4 { font-size: 22px; font-weight: 700; line-height: 40px; margin-bottom: 40px; }
.what-we-do .left-content p  { margin-bottom: 40px; }
.what-we-do .right-items .item {
  border-radius: 5px; padding: 40px 30px;
  box-shadow: 0 0 15px rgba(0,0,0,.1); margin-bottom: 30px; position: relative;
}
.what-we-do .right-items .item em {
  position: absolute; font-style: normal; font-size: 44px; color: #43ba7f;
  font-weight: 600; right: 15px; top: 5px; transition: all .3s;
}
.what-we-do .right-items .item h4 { font-size: 22px; font-weight: 600; margin-bottom: 22px; }
.what-we-do .right-items .item:hover em { top: 10px; }


/* 16. Services Page
------------------------------------------------------------ */
.main-services .service-item {
  margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid #ecf8f2;
}
.main-services .service-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.main-services .left-image  img,
.main-services .right-image img { border-radius: 5px; }
.main-services .right-text-content { margin-left: 15px; }
.main-services .left-text-content  { margin-right: 15px; }
.main-services .right-text-content i,
.main-services .left-text-content  i {
  font-size: 64px; color: #43ba7f; background-color: #ecf8f2;
  width: 120px; height: 120px; text-align: center; display: inline-block;
  line-height: 120px; border-radius: 5px;
}
.main-services .right-text-content h4,
.main-services .left-text-content  h4 { font-size: 36px; font-weight: 700; color: #212741; margin-top: 40px; margin-bottom: 30px; }

/* Additional Services Cards */
section.add-services { padding: 90px 0 100px; }

.asc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 55px;
}

.asc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(33,39,65,.07);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.asc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(33,39,65,.13);
}

/* Middle card is featured — dark navy */
.asc-card--featured { background: #212741; }
.asc-card--featured .asc-body h5 { color: #fff; }
.asc-card--featured .asc-body p  { color: rgba(255,255,255,.7); }
.asc-card--featured .asc-list li { color: rgba(255,255,255,.85); }
.asc-card--featured .asc-list li i { color: #43ba7f; }
.asc-card--featured .asc-link { color: #43ba7f; border-color: rgba(67,186,127,.35); }
.asc-card--featured .asc-link:hover { background: #43ba7f; color: #fff; border-color: #43ba7f; }

.asc-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.asc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.asc-card:hover .asc-img-wrap img { transform: scale(1.05); }

.asc-badge {
  position: absolute;
  bottom: -20px; left: 28px;
  width: 48px; height: 48px;
  background: #43ba7f;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(67,186,127,.4);
}
.asc-badge i { color: #fff; font-size: 18px; }
.asc-card--featured .asc-badge { background: #ff511a; box-shadow: 0 6px 18px rgba(255,81,26,.4); }

.asc-body {
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.asc-body h5 {
  font-size: 20px; font-weight: 700; color: #212741;
  margin-bottom: 12px;
}
.asc-body p {
  font-size: 14px; color: #666; line-height: 1.75;
  margin-bottom: 22px;
}

.asc-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.asc-list li {
  font-size: 13.5px; color: #444; font-weight: 500;
  display: flex; align-items: center; gap: 9px;
}
.asc-list li i { color: #43ba7f; font-size: 13px; flex-shrink: 0; }

.asc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: #212741;
  border: 1.5px solid #e0e0e0; border-radius: 8px;
  padding: 10px 20px; text-decoration: none;
  transition: all .25s ease; align-self: flex-start;
}
.asc-link:hover {
  background: #212741; color: #fff; border-color: #212741;
}
.asc-link i { font-size: 11px; transition: transform .25s; }
.asc-link:hover i { transform: translateX(3px); }


/* 17. Contact Page
------------------------------------------------------------ */
section.map { margin-top: 0 !important; }
section.map .info-item {
  text-align: center; padding: 40px 30px; border-radius: 5px;
  background-color: #fff; box-shadow: 0 0 15px rgba(0,0,0,.1);
  margin-top: -60px; margin-left: 15px; margin-right: 15px;
  position: relative; z-index: 2; transition: all .5s;
}
section.map .info-item:hover { margin-top: -70px; }
section.map .info-item i  { font-size: 36px; color: #43ba7f; margin-bottom: 25px; }
section.map .info-item h4 { font-size: 18px; color: #212741; font-weight: 600; margin-bottom: 12px; }
section.map .info-item a  { font-size: 15px; font-weight: 600; color: #43ba7f; transition: all .3s; }
section.map .info-item a:hover { color: #ff511a; }

/* Contact two-panel card */
section.contact-wrap { margin-top: 90px; margin-bottom: 20px; }
.contact-card { border-radius: 14px; overflow: hidden; box-shadow: 0 25px 70px rgba(0,0,0,.13); }

/* Info side */
.contact-info-side {
  background: linear-gradient(160deg, #212741 0%, #1a3a5c 100%);
  padding: 60px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.contact-info-side::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: rgba(67,186,127,0.07);
  border-radius: 50%;
  bottom: -80px; right: -80px;
  pointer-events: none;
}
.contact-info-side::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  background: rgba(255,81,26,0.06);
  border-radius: 50%;
  top: 40px; right: 30px;
  pointer-events: none;
}
.info-side-header { margin-bottom: 40px; position: relative; z-index: 1; }
.info-side-header h6 {
  color: #43ba7f; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px;
}
.info-side-header h3 { color: #fff; font-size: 26px; font-weight: 700; line-height: 1.45; margin-bottom: 14px; }
.info-side-header p  { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.85; margin: 0; }

.info-side-list { list-style: none; padding: 0; margin: 0 0 40px; flex: 1; position: relative; z-index: 1; }
.info-side-list li { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 26px; }
.info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(67,186,127,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.info-icon i { color: #43ba7f; font-size: 17px; }
.info-text span { display: block; color: rgba(255,255,255,.45); font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 4px; }
.info-text p, .info-text a { color: #fff; font-size: 14px; margin: 0; font-weight: 500; text-decoration: none; transition: color .25s; }
.info-text a:hover { color: #43ba7f; }

.info-side-social { display: flex; gap: 10px; position: relative; z-index: 1; }
.info-side-social a {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 14px; text-decoration: none;
  transition: all .3s;
}
.info-side-social a:hover { background: #43ba7f; border-color: #43ba7f; color: #fff; transform: translateY(-2px); }

/* Form side */
.contact-form-side { background: #fff; padding: 60px 55px; }
.contact-form-side h4 { font-size: 24px; font-weight: 700; color: #212741; margin-bottom: 6px; }
.contact-form-side > p { color: #999; font-size: 14px; margin-bottom: 30px; }

.cf-group { margin-bottom: 22px; }
.cf-group label { display: block; font-size: 13px; font-weight: 600; color: #212741; margin-bottom: 8px; }
.cf-group label span { color: #ff511a; }

.cf-input-wrap { position: relative; }
.cf-input-wrap i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #b0b8c8; font-size: 13px; pointer-events: none; transition: color .25s; z-index: 1;
}

.cf-group input,
.cf-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 7px;
  font-size: 14px;
  color: #212741;
  background: #fafafa;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  font-family: inherit;
}
/* Higher specificity ensures icon padding always wins over the base padding shorthand */
.cf-group .cf-input-wrap input { padding-left: 42px; }

.cf-group input:focus,
.cf-group textarea:focus {
  border-color: #43ba7f;
  box-shadow: 0 0 0 4px rgba(67,186,127,.1);
  background: #fff;
}
.cf-input-wrap:focus-within i { color: #43ba7f; }
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: #c5c5c5; }
.cf-group textarea { resize: vertical; min-height: 140px; padding: 14px 16px; }

.cf-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 24px; margin-top: 6px;
  background: linear-gradient(135deg, #212741 0%, #2d3a6b 100%);
  color: #fff; font-size: 15px; font-weight: 600; letter-spacing: .4px;
  border: none; border-radius: 7px; cursor: pointer;
  transition: all .3s;
}
.cf-submit-btn:hover {
  background: linear-gradient(135deg, #43ba7f 0%, #2d8a60 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67,186,127,.3);
}

/* Alerts */
.cf-alert {
  display: flex; align-items: flex-start; gap: 16px;
  border-radius: 8px; padding: 18px 22px; margin-bottom: 28px;
}
.cf-alert i { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.cf-alert strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.cf-alert p, .cf-alert ul { margin: 0; font-size: 13px; }
.cf-alert ul { padding-left: 18px; }
.cf-alert ul li { margin-bottom: 2px; }

.cf-alert-success { background: #ecf8f2; border: 1.5px solid #43ba7f; }
.cf-alert-success i, .cf-alert-success strong { color: #43ba7f; }
.cf-alert-success p { color: #444; }

.cf-alert-error { background: #fff3f0; border: 1.5px solid #ff511a; }
.cf-alert-error i, .cf-alert-error strong { color: #ff511a; }
.cf-alert-error ul li { color: #ff511a; }

/* Responsive */
@media (max-width: 991px) {
  .contact-info-side { padding: 50px 35px; }
  .contact-form-side { padding: 50px 35px; }
}
@media (max-width: 575px) {
  .contact-info-side, .contact-form-side { padding: 40px 22px; }
  .contact-form-side h4 { font-size: 20px; }
}


/* 18. 404 Page
------------------------------------------------------------ */
section.not-found { margin-top: 180px; margin-bottom: 120px; }
section.not-found h1 { font-size: 120px; font-weight: 800; color: #ff511a; line-height: 1; }
section.not-found h4 { font-size: 36px; font-weight: 700; margin: 20px 0; }
section.not-found p  { color: #666; margin-bottom: 30px; }


/* 19. Responsive
------------------------------------------------------------ */
@media (max-width: 992px) {
  /* slide-inner header-text handled in dedicated block above */
  .simple-cta { text-align: center; }
  section.simple-cta .buttons { justify-content: center; }
  section.about-us .naccs .menu div { margin-right: 15px; font-size: 15px; padding: 15px 20px; }
  section.about-us .right-content { margin-left: 0; margin-top: 60px; }
  section.calculator .left-image { display: none; }
  .testimonials .item img { max-width: 200px; right: 50px; }
  section.partners .item { margin: 15px; }
  section.top-section .accordions { margin-left: 0; margin-top: 45px; }
  .what-we-do .left-content { margin-right: 0; margin-bottom: 45px; }
  .main-services .left-image,
  .main-services .right-image { margin: 0 0 30px; }
  .main-services .right-text-content { margin-left: 0; }
  .asc-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  section.map .info-item { margin-top: 30px; }
  .footer-bottom .text-end { text-align: left !important; margin-top: 8px; }
}

@media (max-width: 992px) {
  .slide-inner > .container { height: 100vh; }
  .slide-inner .header-text { width: 85%; }
  .slide-inner .header-text h2 { font-size: 40px; line-height: 56px; }
}

@media (min-width: 576px) and (max-width: 991px) {
  .asc-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

/* 20. Nav Cart Icon
------------------------------------------------------------ */
.nav-cart-link {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid #e8e8e8;
  color: #212741; font-size: 15px; transition: all .2s;
}
.nav-cart-link:hover { border-color: #43ba7f; color: #43ba7f; background: #f0faf5; }

.cart-count-badge {
  position: absolute; top: -5px; right: -5px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: #ff511a; color: #fff; border-radius: 50px;
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}


/* 21. Products Page
------------------------------------------------------------ */
.products-section { margin-bottom: 80px; }

.products-portal-hint {
  margin-top: 18px;
}
.hint-cart-link, .hint-login-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #212741;
  padding: 9px 20px; border-radius: 50px;
  border: 2px solid #212741; transition: all .2s;
  text-decoration: none;
}
.hint-cart-link:hover { background: #212741; color: #fff; }
.hint-cart-link .hint-badge {
  background: #ff511a; color: #fff;
  border-radius: 50px; padding: 1px 7px; font-size: 11px; font-weight: 700;
}
.hint-login-link { border-color: #43ba7f; color: #43ba7f; }
.hint-login-link:hover { background: #43ba7f; color: #fff; }

/* Product card */
.product-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; height: 100%;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }

.pc-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #f5f5f5;
}
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .pc-img img { transform: scale(1.04); }
.pc-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #f0f4f8; color: #bbb; font-size: 44px;
}

.pc-body {
  padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px;
}
.pc-body h5 {
  font-size: 17px; font-weight: 700; color: #212741; margin: 0; line-height: 1.3;
}
.pc-body p {
  font-size: 13px; color: #666; line-height: 1.6; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 6px; flex-wrap: wrap;
}
.pc-price {
  font-size: 22px; font-weight: 800; color: #43ba7f;
}

.add-to-cart-btn {
  background: #212741; color: #fff;
  border: none; border-radius: 8px;
  padding: 9px 16px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.add-to-cart-btn:hover  { background: #43ba7f; }
.add-to-cart-btn.added  { background: #43ba7f; }
.add-to-cart-btn:disabled { opacity: .7; cursor: not-allowed; }

/* Empty state */
.products-empty {
  text-align: center; padding: 80px 20px; color: #666;
}
.products-empty i   { font-size: 54px; color: #ddd; display: block; margin-bottom: 18px; }
.products-empty h5  { font-size: 22px; font-weight: 700; color: #212741; margin-bottom: 10px; }
.products-empty p   { font-size: 15px; color: #888; }
.products-empty a   { color: #43ba7f; font-weight: 600; }

/* Toast */
.cart-toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
  background: #212741; color: #fff;
  padding: 14px 24px; border-radius: 50px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,.22); z-index: 9999;
  animation: slideUpFade .3s ease;
}
.cart-toast .toast-icon { color: #43ba7f; font-size: 18px; }
.cart-toast.error .toast-icon { color: #ff511a; }

@keyframes slideUpFade {
  from { opacity: 0; transform: translateX(-50%) translateY(14px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}


/* 22. Portal Cart / Shipping List Page
------------------------------------------------------------ */
.cart-submit-success {
  display: flex; align-items: flex-start; gap: 20px;
  background: #ecf8f2; border: 2px solid #43ba7f; border-radius: 14px;
  padding: 28px 32px; margin-bottom: 30px;
}
.cart-submit-success i { font-size: 40px; color: #43ba7f; flex-shrink: 0; }
.cart-submit-success h5 { font-size: 18px; font-weight: 700; color: #212741; margin: 0 0 6px; }
.cart-submit-success p  { font-size: 14px; color: #555; margin: 0; }

.cart-items-wrap { display: flex; flex-direction: column; gap: 14px; }

.cart-item-row {
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 16px;
}
.ci-img {
  width: 72px; height: 72px; border-radius: 10px; overflow: hidden;
  background: #f5f5f5; flex-shrink: 0;
}
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-img-placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  background: #f0f4f8; color: #ccc; font-size: 24px;
}
.ci-info { flex: 1; min-width: 0; }
.ci-info h6 { font-size: 15px; font-weight: 700; color: #212741; margin: 0 0 4px; }
.ci-info p  { font-size: 12px; color: #888; margin: 0 0 6px; line-height: 1.4; }
.ci-price   { font-size: 14px; font-weight: 700; color: #43ba7f; }
.ci-controls {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.qty-control {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid #e0e0e0; border-radius: 8px; overflow: hidden;
}
.qty-btn {
  background: #f8f8f8; border: none;
  width: 30px; height: 30px;
  font-size: 16px; font-weight: 700; color: #555;
  cursor: pointer; transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: #eee; }
.qty-val {
  min-width: 32px; text-align: center;
  font-size: 14px; font-weight: 600; color: #212741;
  padding: 0 4px;
}
.ci-subtotal { font-size: 15px; font-weight: 700; color: #212741; min-width: 70px; text-align: right; }
.ci-remove {
  background: none; border: none;
  color: #ccc; font-size: 16px; cursor: pointer;
  padding: 4px; transition: color .2s;
}
.ci-remove:hover { color: #ff511a; }

/* Cart summary card */
.cart-summary-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.09);
  padding: 24px 26px;
}
.csm-title { font-size: 17px; font-weight: 700; color: #212741; margin: 0 0 18px; }
.csm-row   { display: flex; justify-content: space-between; font-size: 14px; color: #555; margin-bottom: 10px; }
.csm-row.shipping { color: #888; font-size: 13px; }
.csm-row.shipping i { margin-right: 5px; }
.csm-divider { height: 1px; background: #f0f0f0; margin: 14px 0; }
.csm-total {
  display: flex; justify-content: space-between;
  font-size: 16px; font-weight: 700; color: #212741;
  margin-bottom: 18px;
}
.csm-total strong { font-size: 20px; color: #43ba7f; }
.csm-form .form-label { font-size: 13px; font-weight: 600; color: #212741; margin-bottom: 6px; }
.csm-form .form-control {
  font-size: 13px; border: 1.5px solid #e0e0e0; border-radius: 8px;
  padding: 10px 14px; transition: border-color .2s;
}
.csm-form .form-control:focus { border-color: #43ba7f; box-shadow: none; }
.req { color: #ff511a; }
.csm-submit {
  width: 100%; padding: 13px;
  background: #43ba7f; color: #fff; border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.csm-submit:hover { background: #37a66e; }
.csm-submit:disabled { opacity: .7; cursor: not-allowed; }
.cs-error {
  margin-top: 14px; background: #fff3f0; border: 1.5px solid #ff511a;
  border-radius: 8px; padding: 10px 14px; font-size: 13px; color: #ff511a;
}

.portal-back-btn {
  font-size: 13px; font-weight: 600; color: #555;
  padding: 8px 16px; border: 1.5px solid #ddd;
  border-radius: 8px; text-decoration: none; transition: all .2s;
}
.portal-back-btn:hover { border-color: #212741; color: #212741; }

@media (max-width: 575px) {
  .cart-item-row   { flex-wrap: wrap; }
  .ci-controls     { width: 100%; justify-content: space-between; }
  .csm-submit      { font-size: 14px; }
}


@media (max-width: 767px) {
  .slide-inner .header-text { text-align: center; width: 100%; }
  .slide-inner .header-text p { display: none; }
  .slide-inner .header-text .div-dec { margin: 0 auto 24px; }
  .slide-inner .header-text .buttons { justify-content: center; }
  .slide-inner .header-text h2 { font-size: 32px; line-height: 46px; }
  .swiper-button-next, .swiper-button-prev { width: 36px; height: 36px; }
  .services .service-item i { margin-bottom: 35px; }
  section.about-us ul.nacc li span.item-title { font-size: 14px !important; }
  section.about-us ul.nacc li span.item { font-size: 13px; }
  .testimonials .item { padding: 50px; }
  .testimonials .item i { margin-bottom: 60px; }
  .testimonials .item img { max-width: 100px; right: 50px; top: 35px; transform: none; }
  section.what-we-do { margin-bottom: 0; }
}

@media (max-width: 575px) {
  .why-choose-us .feature-item { margin-bottom: 20px; }
  footer.main-footer { padding-top: 50px; }
  .page-heading h2, .page-heading h1 { font-size: 36px; }
}


/* 20. Floating Action Buttons
------------------------------------------------------------ */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 9999;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  position: relative;
}

.fab-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  color: #fff;
}

.fab-whatsapp { background-color: #25d366; animation: fab-pulse 2.5s infinite; }
.fab-call     { background-color: #ff511a; }

.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #212741;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #212741;
}

.fab-btn:hover .fab-tooltip { opacity: 1; }

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


/* 21. Public Tracking Page
------------------------------------------------------------ */
section.track-search-section { margin-top: 60px; }
.track-search-card {
  background: #fff; border-radius: 14px; padding: 40px 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,.1); text-align: center;
}
.track-search-card h5 { font-size: 17px; font-weight: 600; color: #212741; margin-bottom: 24px; }
.track-form { max-width: 600px; margin: 0 auto; }
.track-input-group {
  display: flex; align-items: center; background: #f7f7f7;
  border: 2px solid #e8e8e8; border-radius: 8px; overflow: hidden; transition: border-color .25s;
}
.track-input-group:focus-within { border-color: #43ba7f; background: #fff; }
.track-input-group i { padding: 0 16px; color: #bbb; font-size: 16px; flex-shrink: 0; }
.track-input-group input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 15px; color: #212741; padding: 14px 0;
}
.track-input-group input::placeholder { color: #bbb; }
.track-input-group button {
  padding: 14px 28px; background: #212741; color: #fff;
  border: none; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background .25s; white-space: nowrap; letter-spacing: .3px;
}
.track-input-group button:hover { background: #43ba7f; }
.track-hint { font-size: 12px; color: #bbb; margin: 12px 0 0; }

/* Result section */
section.track-result-section { margin-top: 50px; margin-bottom: 80px; }

.track-not-found {
  text-align: center; padding: 60px 40px;
  background: #fff; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.track-not-found i  { font-size: 52px; color: #e0e0e0; margin-bottom: 20px; }
.track-not-found h4 { font-size: 20px; font-weight: 700; color: #212741; margin-bottom: 10px; }
.track-not-found p  { color: #888; font-size: 14px; }

/* Status banner */
.track-status-banner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding: 22px 30px; border-radius: 12px; color: #fff;
}
.track-status-banner.in-transit { background: linear-gradient(135deg, #212741 0%, #2d3a6b 100%); }
.track-status-banner.delivered  { background: linear-gradient(135deg, #27ae60 0%, #43ba7f 100%); }
.tsb-left { display: flex; align-items: center; gap: 16px; }
.tsb-left i    { font-size: 28px; color: #fff; }
.tsb-left span { font-size: 12px; opacity: .7; display: block; margin-bottom: 3px; color: #fff; }
.tsb-left h4   { margin: 0; font-size: 18px; font-weight: 700; color: #fff; }
.tsb-right { display: flex; gap: 30px; flex-wrap: wrap; }
.tsb-meta span   { display: block; font-size: 11px; opacity: .65; margin-bottom: 3px; color: #fff; }
.tsb-meta strong { font-size: 14px; font-weight: 700; color: #fff; }

/* Cards */
.track-card {
  background: #fff; border-radius: 12px; padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.track-card-title { font-size: 14px; font-weight: 700; color: #212741; margin-bottom: 20px; }
.track-card-title i { color: #43ba7f; margin-right: 8px; }

/* Timeline */
.track-timeline { list-style: none; padding: 0; margin: 0; }
.track-timeline li { display: flex; gap: 16px; padding-bottom: 24px; position: relative; }
.track-timeline li::before {
  content: ''; position: absolute; left: 17px; top: 36px;
  width: 2px; bottom: 0; background: #eee;
}
.track-timeline li:last-child { padding-bottom: 0; }
.track-timeline li:last-child::before { display: none; }
.tl-dot {
  width: 36px; height: 36px; border-radius: 50%; background: #f0f0f0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1;
}
.tl-dot i { font-size: 14px; color: #bbb; }
.track-timeline li.active .tl-dot { background: #43ba7f; }
.track-timeline li.active .tl-dot i { color: #fff; }
.tl-content { flex: 1; padding-top: 6px; }
.tl-content strong { display: block; font-size: 14px; font-weight: 700; color: #212741; margin-bottom: 4px; }
.tl-location { display: block; font-size: 12px; color: #43ba7f; margin-bottom: 4px; }
.tl-location i { margin-right: 4px; }
.tl-content p    { font-size: 13px; color: #666; margin: 0 0 4px; }
.tl-content time { font-size: 12px; color: #bbb; }

/* Details list */
.track-details-list { list-style: none; padding: 0; margin: 0; }
.track-details-list li { display: flex; justify-content: space-between; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px; }
.track-details-list li:last-child { border-bottom: none; }
.track-details-list span { color: #aaa; flex-shrink: 0; margin-right: 12px; }
.track-details-list strong { color: #212741; font-weight: 600; text-align: right; }

/* Progress steps */
.track-steps { list-style: none; padding: 0; margin: 0; }
.track-steps li { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px; }
.track-steps li:last-child { border-bottom: none; }
.ts-dot { width: 30px; height: 30px; border-radius: 50%; background: #f0f0f0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ts-dot i { font-size: 12px; color: #ccc; }
.track-steps li.done   .ts-dot { background: #ecf8f2; }
.track-steps li.done   .ts-dot i { color: #43ba7f; }
.track-steps li.active .ts-dot { background: #212741; }
.track-steps li.active .ts-dot i { color: #fff; }
.track-steps li.done   span { color: #43ba7f; font-weight: 600; }
.track-steps li.active span { color: #212741; font-weight: 700; }
.track-steps li.pending span { color: #ccc; }
