/*******************************/
/********* General CSS *********/
/*******************************/

:root {
  --brand-orange: #ef4323;
  --brand-blue: #030f27;
  --muted: #6b7280;
  --bg: #ffffff;
  --card-bg: #ffffff;
  --maxw: 1200px;
  --gap: 20px;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(3, 15, 39, 0.06);
  --ff: "Poppins", sans-serif;
}

body {
  color: #666666;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #030f27;
}

a {
  color: #666666;
  transition: 0.3s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #ef4323;
  outline: none;
  text-decoration: none;
}

.btn:focus {
  box-shadow: none;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  background: #ffffff;
}

.back-to-top {
  position: fixed;
  display: none;
  background: #ef4323;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 9;
}

.back-to-top:hover {
  color: #ffffff;
  background: #030f27;
}

.btn {
  transition: 0.3s;
}

/* Responsive Styles for Navbar (max-width: 991.98px) */
@media (max-width: 991.98px) {
  .back-to-top {
    display: none; /* Show back-to-top button on small screens */
  }
}

/* Responsive Styles for Navbar (max-width: 575.98px) */
@media (max-width: 575.98px) {
  .back-to-top {
    display: none; /* Hide back-to-top button on small screens */
  }
}

/* WhatsApp widget styles */
#ajz-wa-widget {
  z-index: 200000 !important;
  font-family: Poppins, Arial, sans-serif;
}
.ajz-wa-fab {
  position: fixed;
  right: 70px;
  bottom: 7px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, #25d366, #128c7e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(3, 15, 39, 0.2);
  cursor: pointer;
  z-index: 200001 !important; /* above panel */
}
.ajz-wa-panel {
  position: fixed;
  right: 20px;
  bottom: 100px; /* default; JS will override if needed */
  width: 340px;
  max-width: calc(100% - 40px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(3, 15, 39, 0.18);
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: all 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 200002 !important; /* ensure it is topmost */
  /* safety: ensure panel's content can't overflow beyond viewport */
  max-height: calc(100vh - 140px); /* fallback; JS recalculates */
}
.ajz-wa-panel[aria-hidden="false"] {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* make sure internal scroll is usable when panel is constrained */
.ajz-wa-body {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
}

/* Hide vertical overflow that could leak behind page overlays */
.ajz-wa-panel *,
.ajz-wa-panel *::before,
.ajz-wa-panel *::after {
  z-index: inherit;
}

/* small tweak: when panel is close to top ensure rounded corners visible */
.ajz-wa-panel.show-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.ajz-wa-fab svg {
  display: block;
}
.ajz-wa-panel {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 340px;
  max-width: calc(100% - 40px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(3, 15, 39, 0.18);
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: all 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.ajz-wa-panel[aria-hidden="false"] {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.ajz-wa-close {
  position: absolute;
  right: 8px;
  top: 8px;
  border: none;
  background: transparent;
  font-size: 22px;
  color: #6b7280;
  cursor: pointer;
}
.ajz-wa-header {
  display: flex;
  gap: 12px;
  padding: 14px;
  align-items: center;
  background: linear-gradient(90deg, #fff, #f7fafc);
  border-bottom: 1px solid #eef2f6;
}
.ajz-wa-avatar {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 6px 18px rgba(3, 15, 39, 0.06);
}
.ajz-wa-name {
  font-weight: 700;
  color: #030f27;
  font-size: 15px;
}
.ajz-wa-sub {
  font-size: 13px;
  color: #6b7280;
}
.ajz-wa-body {
  padding: 14px;
}
.ajz-wa-quick {
  font-weight: 700;
  color: #030f27;
  margin-bottom: 6px;
  font-size: 13px;
}
.ajz-wa-quick-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.ajz-wa-quick-btn {
  background: #f6f7fb;
  border: 1px solid #eef2f6;
  padding: 8px 10px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}
.ajz-wa-note {
  color: #6b7280;
  font-size: 13px;
  margin-top: 6px;
}
.ajz-wa-textarea {
  width: 100%;
  min-height: 80px;
  border-radius: 8px;
  border: 1px solid #e6eef6;
  padding: 10px;
  resize: vertical;
  margin-top: 8px;
  font-size: 14px;
}
.ajz-wa-textarea:focus {
  box-shadow: 0 8px 24px rgba(239, 65, 35, 0.062);
  border-color: #ef4323;
  transform: translateY(-1px);
  outline: none;
}
.ajz-wa-send {
  background: var(--brand-orange);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.ajz-wa-send.alt {
  background: #fff;
  color: var(--brand-blue);
  border: 1px solid #eef2f6;
}
.ajz-button {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}
.ajz-wa-footer {
  background: #fbfdff;
  padding: 12px;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  border-top: 1px solid #eef2f6;
}
@media (max-width: 700px) {
  .ajz-wa-panel {
    right: 12px;
    left: 12px;
    bottom: 90px;
    width: auto;
    max-width: none;
  }
  .ajz-wa-fab {
    right: 12px;
    bottom: 16px;
  }
}

/******* Custom Scrollbar **********/

/* For Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-orange) #f1f1f1;
}

/* For Webkit-based browsers (Chrome, Safari, Edge, etc.) */
body::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #f1f1f1; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--brand-orange); /* color of the scroll thumb */
  border-radius: 10px; /* roundness of the scroll thumb */
  border: 3px solid #f1f1f1; /* creates padding around scroll thumb */
}

body::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand-blue); /* color of the scroll thumb on hover */
}

/* For Internet Explorer and Edge */
body {
  -ms-overflow-style: -ms-autohiding-scrollbar; /* hides scrollbar when not in use */
}

/* This is a fallback for browsers that do not support custom scrollbars */
body {
  scrollbar-color: var(--brand-orange) #f1f1f1; /* color of the scrollbar thumb and track */
  scrollbar-width: thin; /* makes the scrollbar thinner */
}

/* This ensures that the custom scrollbar styles are applied consistently across different browsers */
body {
  overflow-y: scroll; /* ensures vertical scrollbar is always visible */
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/

/* Primary Button Styles */

.btn-primary {
  color: var(--brand-blue);
  background-color: var(--brand-orange);
  border-color: #da3012;
}

/* Dark Background Color */
.bg-dark {
  background-color: var(--brand-blue) !important;
}

/* Light Text Color */
.text-light {
  color: #f5f5f5 !important;
}

/* Button Transition */
.btn {
  transition: 0.5s;
  font-weight: 500;
}
/* Primary Button Text Color */
.btn-primary,
.btn-outline-primary:hover {
  color: #ffffff;
}

/* Header Top Section - Right Side Styling */
.topbar-right {
  position: relative;
  background: var(--brand-orange);
  border-radius: 0; /* Added rounded corners 0.5rem  */
  display: flex;
  align-items: right;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  justify-content: space-between;
}

.topbar-right::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  top: 0;
  left: -15px;
  transform: skewX(-30deg);
  background-color: var(--brand-blue);
}

/* Bottom Header Section - Navbar Sticky Behavior */
.navbar.sticky-top {
  box-shadow: none; /* No shadow by default */
}
.navbar.sticky-top.is-sticky {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* Shadow only when .is-sticky is added */
}
/* Navbar Brand Styling */
.navbar .navbar-brand {
  position: relative;
  padding-right: 30px;
  height: 75px;
  display: flex;
  align-items: center;
  background: var(--brand-orange);
  border-radius: 0; /* Added rounded corners 0.5rem */
}

.navbar .navbar-brand::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 100%;
  top: 0;
  right: -25px;
  transform: skewX(-30deg);
  background-color: var(--brand-orange);
}

/* Navbar Nav Link Hover and Active States */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--brand-orange);
}

/* Navbar Nav Link Base Styles */
.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 20px 0;
  color: var(--brand-blue);
  font-size: 15px;
  font-weight: 600;
  outline: none;
  text-transform: uppercase;
}

/* Dropdown Toggle Icon */
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 6 pro";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff;
  background-color: var(--brand-orange);
}

/* DESKTOP: hover dropdown behaviour (>= 992px) */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block; /* keep block so animation works */
    position: absolute;
    left: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 18px 40px rgba(3, 15, 39, 0.12);
    transition: 0.3s ease;
  }
  .navbar .nav-item:hover > .dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}

/* MOBILE: click dropdown, no extra space (< 992px) */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu,
  .navbar .nav-item .dropdown-menu {
    position: static;
    width: 100%;
    margin: 0;
    border: 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .navbar .dropdown-menu.show {
    display: block;
  }
}

/* Navbar Logo */
.navbar-brand .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 70px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.navbar-brand .logo-img {
  max-width: 100%;
  max-height: 70px;
}

/* Navbar Button Style */
.navbar .btn-primary {
  background: linear-gradient(90deg, #ef4323 60%, #ff7e5f 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(239, 67, 35, 0.15);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s,
    transform 0.25s cubic-bezier(0.4, 2, 0.6, 1);
}

.navbar .btn-primary:hover,
.navbar .btn-primary:focus {
  background: linear-gradient(90deg, #ff7e5f 0%, #ef4323 100%);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(239, 67, 35, 0.35), 0 0 0 4px #ff7e5f33;
  transform: scale(1.07);
}

/* Modern Navbar Menu Hover Effect */
.navbar .navbar-nav .nav-link {
  position: relative;
  color: #030f27;
  transition: color 0.3s;
  overflow: hidden;
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4323 60%, #ff7e5f 100%);
  border-radius: 2px;
  transition: width 1.3s cubic-bezier(0.4, 2, 0.6, 1),left 0.3s cubic-bezier(0.4, 2, 0.6, 1);
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #ef4323;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0%;
}

/* Custom Navbar Toggler Icon Style */
.custom-toggler {
  border: none;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(239, 67, 35, 0.1);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1051;
  transition: box-shadow 0.3s, background 0.3s;
}

.custom-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ef4323;
}
.custom-toggler:hover {
  box-shadow: 0 4px 16px rgba(239, 67, 35, 0.2);
  background: #fff;
  border: none;
}

.navbar-toggler-icon {
  display: block;
  width: 40px;
  margin: 4px 0;
  background: #ef4323;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 2, 0.6, 1);
}

/* Hamburger Animation (X effect when open) */
.custom-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(1) {
  transform: translateY(14px) rotate(48deg);
}
.custom-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(2) {
  opacity: 0;
}
.custom-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(3) {
  transform: translateY(-12px) rotate(-48deg);
}

/*Responsive Styles for Navbar (max-width: 1320px) */
@media (max-width: 1320.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 18px 0;
  }

  .navbar .navbar-brand {
    padding-right: 25px;
  }

  .navbar .navbar-brand::after {
    width: 45px;
    right: -22px;
    transform: skewX(340deg);
  }
}
/*Responsive Styles for Navbar (max-width: 1279.98px) */
@media (max-width: 1279.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 17px 0;
  }

  .navbar .navbar-brand {
    padding-right: 22px;
  }

  .navbar .navbar-brand::after {
    width: 42px;
    right: -21px;
    transform: skewX(340deg);
  }
}
/*Responsive Styles for Navbar (max-width: 1249.98px) */
@media (max-width: 1249.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 22px;
    padding: 16px 0;
  }

  .navbar .navbar-brand {
    padding-right: 21px;
  }

  .navbar .navbar-brand::after {
    width: 41px;
    right: -20px;
    transform: skewX(340deg);
  }
}
/*Responsive Styles for Navbar (max-width: 1219.98px) */
@media (max-width: 1219.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 21px;
    padding: 15px 0;
  }

  .navbar .navbar-brand {
    padding-right: 20px;
  }

  .navbar .navbar-brand::after {
    width: 40px;
    right: -20px;
    transform: skewX(340deg);
  }
}
/*Responsive Styles for Navbar (max-width: 1199.98px) */
@media (max-width: 1199.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 18px;
    padding: 12px 0;
  }

  .navbar .navbar-brand {
    padding-right: 20px;
  }

  .navbar .navbar-brand::after {
    width: 40px;
    right: -20px;
    transform: skewX(340deg);
  }
}
/* Responsive Styles for Navbar (max-width: 1023.98px) */
@media (max-width: 1023.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 15px;
    padding: 10px 0;
  }

  .navbar .navbar-brand {
    padding-right: 15px;
  }

  .navbar .navbar-brand::after {
    width: 30px;
    right: -15px;
    transform: skewX(340deg);
  }
}

/* Responsive Styles for Navbar (max-width: 991.98px) */
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav .nav-link::after {
    display: none !important;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }

  .navbar .navbar-brand {
    padding-right: 10px;
  }

  .ps-5 {
    padding-left: 20px !important;
  }

  .pe-5 {
    padding-right: 1rem !important;
  }

  .navbar .navbar-brand::after {
    width: 20px;
    right: -15px;
    transform: skewX(340deg);
  }
}

@media (max-width: 767.98px) {
  .navbar .navbar-nav .nav-link {
    padding: 8px 0;
  }

  .navbar .navbar-brand {
    padding-right: 8px;
  }

  .navbar .navbar-brand::after {
    width: 18px;
    right: -12px;
    transform: skewX(-12deg);
  }
}

/* Responsive Styles for Navbar (max-width: 575.98px) */
@media (max-width: 575.98px) {
  .navbar .navbar-nav .nav-link {
    padding: 5px 0;
  }

  .navbar .navbar-brand {
    padding-right: 5px;
  }

  .navbar .navbar-brand::after {
    width: 15px;
    right: -8px;
    transform: skewX(-12deg);
  }
  .back-to-top {
    display: none; /* Hide back-to-top button on small screens */
  }
}

@media (max-width: 479.98px) {
  .navbar .navbar-nav .nav-link {
    padding: 5px 0;
  }

  .navbar .navbar-brand {
    padding-right: 5px;
  }

  .navbar .navbar-brand::after {
    width: 15px;
    right: -8px;
    transform: skewX(-12deg);
  }

  .logo-img {
    width: 230px;
    height: auto;
    max-width: 100%;
  }

  .back-to-top {
    display: none;
  }
}

@media (max-width: 375.98px) {
  .navbar .navbar-nav .nav-link {
    padding: 3px 0;
  }

  .navbar .navbar-brand {
    padding-right: 3px;
  }

  .navbar .navbar-brand::after {
    width: 23px;
    right: -18px;
    transform: skewX(-12deg);
  }
  .logo-img {
    width: 180px;
    height: auto;
    max-width: 100%;
  }

  .back-to-top {
    display: none;
  }
}

/*******************************/
/**** Quote modal form CSS *****/
/*******************************/

/* Modal overlay & panel */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--overlay);
  z-index: 2000;
  padding: 20px;
}
.modal-panel {
  width: 100%;
  max-width: var(--maxw);
  background: var(--bg);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(3, 15, 39, 0.2);
  position: relative;
}
.modal-panel:focus {
  outline: none;
}

/* Header */
.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.modal-head .section-header {
  text-align: left;
  margin-bottom: 10px;
}
.modal-head .section-header h2 {
  font-size: 25px;
  color: var(--brand-blue);
  margin: 0;
  font-weight: 700;
}
.modal-head .section-header .modal-subhead p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}
.close-btn {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Form layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.form-row {
  display: flex;
  flex-direction: column;
}
label {
  font-size: 13px;
  color: #354052;
  margin-bottom: 6px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea,
input[type="number"] {
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid #e6eef6;
  background: #fff;
  font-size: 14px;
  color: #111;
  min-height: 42px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus,
input[type="number"]:focus {
  box-shadow: 0 8px 24px rgba(239, 65, 35, 0.062);
  border-color: #ef4323;
  transform: translateY(-1px);
  outline: none;
}
input[type="text"]:focus::placeholder,
input[type="email"]:focus::placeholder,
input[type="tel"]:focus::placeholder,
select:focus::placeholder,
textarea:focus::placeholder,
input[type="number"]:focus::placeholder {
  color: #111;
  opacity: 0.5;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
select::placeholder,
textarea::placeholder,
input[type="number"]::placeholder {
  color: #6b7280;
  opacity: 0.5;
}
textarea {
  resize: vertical;
  min-height: 96px;
}
.file-field {
  display: flex;
  align-items: center;
  gap: 10px;
}
.file-note {
  font-size: 12px;
  color: var(--muted);
}
/* Full width fields */
.full {
  grid-column: 1/-1;
}

/* Footer */
.modal-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}
.modal-btn-primary {
  background: var(--brand-orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.btn-secondary {
  background: #fff;
  border: 1px solid #e6eef6;
  padding: 10px 16px;
  border-radius: 28px;
  cursor: pointer;
}

/* Success message */
.form-success {
  display: none;
  padding: 16px;
  border-radius: 10px;
  background: #f0fff6;
  color: #05603a;
  margin-top: 12px;
  border: 1px solid #d1f3dc;
}
.form-error {
  display: none;
  padding: 12px;
  border-radius: 10px;
  background: #fff5f5;
  color: #7a1414;
  margin-top: 12px;
  border: 1px solid #ffd6d6;
}

/* Responsive */
@media (max-width: 820px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .modal-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-footer {
    justify-content: stretch;
  }
}

/*******************************/
/******** Carousel CSS *********/
/*******************************/

.carousel {
  position: relative;
  width: 100%;
  height: calc(108vh - 170px);
  min-height: 400px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  border-radius: 0 55px 0 0;
}
.carousel .carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: auto;
  z-index: 2;
  padding: 0;
  margin: 0;
}
.carousel .carousel-indicators [data-bs-target] {
  position: relative;
  width: 60px;
  height: 6px;
  background: #eee;
  border: none;
  border-radius: 3px;
  opacity: 0.5;
  margin: 0;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.carousel .carousel-indicators .active,
.carousel .carousel-indicators [aria-current="true"] {
  opacity: 1;
  background: #eee;
}
.carousel .carousel-indicators .indicator-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ef4323 60%, #ff7e5f 100%);
  border-radius: 3px;
  opacity: 1;
  z-index: 2;
}
.carousel .carousel-indicators .active .indicator-line,
.carousel .carousel-indicators [aria-current="true"] .indicator-line {
  animation: indicator-line-progress 3s linear forwards;
  width: 100%;
}

@keyframes indicator-line-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.carousel .carousel-inner,
.carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel .carousel-item .d-block {
  height: 100%;
  display: block !important;
}
.carousel .carousel-item .w-100 {
  width: 100% !important;
}
.carousel .carousel-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.568);
  z-index: 1;
}
.carousel .carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(100vh - 170px);
  min-height: 400px;
  z-index: 2;
}
.carousel .carousel-caption p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.carousel .carousel-caption h1 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 35px;
}
.carousel .carousel-caption .btn {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 2px solid var(--bg);
  border-radius: 0;
  transition: 0.3s;
}
.carousel .carousel-caption .btn:hover {
  color: #ffffff;
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}
.carousel .animated {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.carousel-control {
  background-color: #030f2785; /* Semi-transparent black */
  color: white;
  font-size: 2.3rem; /* Larger buttons for full page */
  padding: 0.75rem 1.25rem; /* Larger padding */
  border-radius: 9999px; /* Fully rounded */
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; /* Ensure buttons are above slides */
  border: none;
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 40px;
  width: 5% !important;
  height: 15%;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: #ef4323;
  color: white;
  border: none;
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 5% !important;
  height: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  color: #ef4323;
}
.carousel-control-prev {
  position: absolute;
  left: 0; /* More spacing from the edge */
  border-radius: 0 30% 30% 0;
}
.carousel-control-next {
  position: absolute;
  right: 0; /* More spacing from the edge */
  border-radius: 30% 0 0 30%;
}

/* Responsive overrides for carousel (add after your main carousel CSS) */

@media (max-width: 1199.98px) {
  .carousel {
    border-radius: 0;
  }
  .carousel .carousel-caption h1 {
    font-size: 45px;
    font-weight: 700;
  }

  .carousel .carousel-caption p {
    font-size: 18px;
  }
  .carousel .carousel-caption .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .carousel-control {
    margin: 0;
    width: 5% !important;
  }
  .carousel .carousel-caption {
    height: auto;
    padding: 20px 15px;
  }
}
@media (max-width: 767.98px) {
  .carousel {
    border-radius: 0;
  }

  .carousel .carousel-caption h1 {
    font-size: 40px;
    font-weight: 700;
  }

  .carousel .carousel-caption p {
    font-size: 16px;
  }

  .carousel .carousel-caption .btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .carousel-control {
    margin: 0;
    width: 4% !important;
  }
  .carousel .carousel-caption {
    height: auto;
    padding: 20px 15px;
  }
  .carousel {
    height: calc(115vh - 170px);
    min-height: 500px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    border-radius: 0;
  }
  .carousel .carousel-item img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 575.98px) {
  .carousel {
    border-radius: none;
  }
  .carousel .carousel-caption h1 {
    font-size: 30px;
    font-weight: 500;
  }

  .carousel .carousel-caption p {
    font-size: 16px;
  }

  .carousel .carousel-caption .btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
  }
  .carousel-control {
    margin: 0;
    width: 2% !important;
  }
  .carousel .carousel-caption {
    height: auto;
    padding: 20px 15px;
  }
  .carousel {
    height: calc(105vh - 170px);
    min-height: 500px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    border-radius: 0;
  }
  .carousel .carousel-item img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .carousel .carousel-item::after {
    background: rgba(0, 0, 0, 0.7);
  }

  .carousel .carousel-caption .btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 400;
  }
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
  position: relative;
  margin-bottom: 45px;
  padding: 90px 0;
  text-align: center;
  background: var(--brand-orange);
}
.page-header h2 {
  position: relative;
  color: var(--brand-blue);
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.page-header h2::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  left: calc(50% - 50px);
  bottom: 0;
  background: var(--brand-blue);
}
.page-header a {
  position: relative;
  padding: 0 12px;
  font-size: 22px;
  color: var(--brand-blue);
}

.page-header a:hover {
  color: #ffffff;
}
.page-header a::after {
  position: absolute;
  content: "/";
  width: 8px;
  height: 8px;
  top: -2px;
  right: -7px;
  text-align: center;
  color: #121518;
}
.page-header a:last-child::after {
  display: none;
}

@media (max-width: 991.98px) {
  .page-header {
    padding: 60px 0;
  }

  .page-header h2 {
    font-size: 45px;
  }

  .page-header a {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .page-header {
    padding: 45px 0;
  }

  .page-header h2 {
    font-size: 35px;
  }

  .page-header a {
    font-size: 18px;
  }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
  position: relative;
  width: 100%;
  margin-bottom: 45px;
}

.section-header p {
  color: #ef4323;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-header h2 {
  margin: 0;
  position: relative;
  font-size: 50px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 30px;
  }
}

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
  position: relative;
  margin-bottom: 45px;
}

.feature .col-md-12 {
  background: #030f27;
}

.feature .col-md-12:nth-child(2n) {
  color: #030f27;
  background: #ef4323;
}

.feature .feature-item {
  min-height: 250px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature .feature-icon {
  position: relative;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature .feature-icon::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  top: -20px;
  left: -10px;
  border: 2px dotted #ffffff;
  border-radius: 60px;
  z-index: 1;
}

.feature .feature-icon::after {
  position: absolute;
  content: "";
  width: 79px;
  height: 79px;
  top: -18px;
  left: -9px;
  background: #030f27;
  border-radius: 60px;
  z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
  background: #ef4323;
}

.feature .feature-icon [class^="fa"]::before {
  position: relative;
  margin: 0;
  color: #ef4323;
  font-size: 60px;
  line-height: 60px;
  z-index: 3;
  vertical-align: middle;
}

.feature .feature-text {
  padding-left: 30px;
}

.feature .feature-text h3 {
  margin: 0 0 10px 0;
  color: #ef4323;
  font-size: 25px;
  font-weight: 600;
}

.feature .feature-text p {
  margin: 0;
  color: #ef4323;
  font-size: 18px;
  font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="fa"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
  color: #fff;
}

.feat-icon {
  font-size: 30px;
  color: #ef4323;
  margin-right: 10px;
  vertical-align: middle;
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
  position: relative;
  width: 100%;
  padding: 45px 0;
  background: var(--bg);
}

.about .section-header {
  margin-bottom: 30px;
}

.about .about-img {
  position: relative;
  height: 100%;
}

.about .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.about .about-text p {
  font-size: 16px;
}

.about .about-text a.btn {
  background-color: #ef4323;
  border-color: #ef4323;
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
}

.about .about-text a.btn:hover {
  color: #d53b1f;
  background-color: #fff;
  border-color: #d53b1f;
  box-shadow: 0 2px 4px rgba(255, 60, 0, 0.718);
  text-decoration: none;
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

@media (max-width: 767.98px) {
  .about .about-img {
    margin-bottom: 30px;
    height: auto;
  }
}

/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
  position: relative;
  width: 100%;
  padding: 45px 0;
  background: linear-gradient(120deg,rgba(3, 15, 39, 0.863),rgba(239, 65, 35, 0.884)),url(../img/hero-section.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fact .col-6 {
  display: flex;
  align-items: flex-start;
}
.fact .fact-icon {
  position: relative;
  margin: 7px 15px 0 15px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fact .fact-icon [class^="fa"]::before {
  margin: 0;
  font-size: 60px;
  line-height: 60px;
  background-color: #ef4323;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fact .fact-right .fact-icon [class^="fa"]::before {
  background-color: #030f27;
}
.fact .fact-left,
.fact .fact-right {
  padding-top: 60px;
  padding-bottom: 60px;
}
.fact .fact-text h2 {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
}
.fact .fact-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.fact .fact-left {
  color: #ef4323;
}
.fact .fact-right {
  color: #030f27;
}
.fact .fact-left h2 {
  color: #ef4323;
}
.fact .fact-text .fact-unit {
  font-size: 30px;
  font-weight: bold;
  margin-left: 5px;
  line-height: 1;
  color: inherit;
  display: inline-block;
}

@media (max-width: 767.98px) {
  .fact {
    padding: 40px 25px;
  }

  .fact .col-6 {
    flex-direction: column;
  }

  .fact .fact-icon {
    margin: 7px 12px 0 12px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fact .fact-icon [class^="fa"]::before {
    font-size: 46px;
    line-height: 46px;
  }

  .fact .fact-left,
  .fact .fact-right {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .fact .fact-text h2 {
    font-size: 25px;
  }

  .fact .fact-text p {
    font-size: 14px;
  }

  .fact .fact-left {
    color: var(--brand-orange);
  }

  .fact .fact-right {
    color: var(--brand-blue);
  }

  .fact .fact-left h2 {
    color: var(--brand-orange);
  }

  .fact .fact-text .fact-unit {
    font-size: 25px;
    margin-left: 3px;
  }
}

@media (max-width: 575.98px) {
  .fact {
    padding: 40px 25px;
  }

  .fact .col-6 {
    flex-direction: column;
  }
  .fact .fact-icon {
    margin: 7px 12px 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fact .fact-icon [class^="fa"]::before {
    font-size: 40px;
    line-height: 40px;
  }

  .fact .fact-left,
  .fact .fact-right {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .fact .fact-text h2 {
    font-size: 20px;
  }

  .fact .fact-text p {
    font-size: 14px;
  }

  .fact .fact-left {
    color: var(--brand-orange);
  }

  .fact .fact-right {
    color: var(--brand-blue);
  }

  .fact .fact-left h2 {
    color: var(--brand-orange);
  }

  .fact .fact-text .fact-unit {
    font-size: 20px;
    margin-left: 2px;
  }
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.service .service-item {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.15);
}

.service .service-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.service .service-img img {
  width: 100%;
}

.service .service-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 15, 39, 0.7);
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover .service-overlay {
  opacity: 1;
}

.service .service-overlay p {
  margin: 0;
  color: #ffffff;
}

.service .service-text {
  display: flex;
  align-items: center;
  height: 60px;
  background: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-radius: 0 0 15px 15px;
}

.service .service-text h3 {
  margin: 0;
  padding: 0 15px 0 25px;
  width: calc(100% - 60px);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-blue);
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.service .service-item a.btn {
  width: 60px;
  height: 60px;
  padding: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 60px;
  font-weight: 100;
  color: #fff;
  background: var(--brand-orange);
  border-radius: 0;
  transition: 0.3s;
}

.service .service-item:hover a.btn {
  color: var(--brand-orange);
  background-color: var(--brand-blue);
}

.h-service-text {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  font-size: 16px;
  padding-left: 6%;
  padding-right: 6%;
  margin-bottom: 2em;
}

/*******************************/
/***** Product Gallery CSS *****/
/*******************************/
.product-gallery {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-header h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #030f27;
}

.section-header p {
  color: #666;
  font-size: 16px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #030f27;
}

.product-info p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.view-more-btn {
  background-color: #ef4323;
  border-color: #ef4323;
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
}

.view-more-btn:hover {
  color: #d53b1f;
  background-color: #fff;
  border-color: #d53b1f;
  box-shadow: 0 2px 4px rgba(255, 60, 0, 0.718);
  text-decoration: none;
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
  /* Extra large screens (e.g., desktops > 1200px) */
  .col-xl-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Large screens (e.g., laptops) */
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* Medium screens (e.g., tablets) */
  .col-md-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Small screens */
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .product-gallery {
    padding: 60px 25px;
    background-color: #f9f9f9;
  }
}
@media (max-width: 575.98px) {
  /* Extra small screens (e.g., phones) */
  .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .product-gallery {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  .section-header h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #030f27;
  }

  .section-header p {
    color: #666;
    font-size: 14px;
  }
}

/*******************************/
/******* Why Choose CSS ********/
/*******************************/
.why-choose {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.why-choose .section-header {
  margin-bottom: 30px;
}

.why-choose .why-choose-img {
  position: relative;
  height: 100%;
}

.why-choose .why-choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.why-choose .why-choose-text p {
  font-size: 16px;
}

.why-choose .why-choose a.btn {
  position: relative;
  margin-top: 15px;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  border-radius: 0;
  background: #ef4323;
  transition: 0.3s;
}

.why-choose .why-choose-text a.btn:hover {
  color: #ef4323;
  background: #030f27;
}

@media (max-width: 767.98px) {
  .why-choose .why-choose-img {
    margin-bottom: 30px;
    height: auto;
  }
}

/*******************************/
/******* Hero Section CSS ******/
/*******************************/
.hero-section {
  position: relative;
  text-align: center;
  color: white;
  height: 417px;
  overflow: visible;
  margin-bottom: 20px;
}
.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(3, 15, 39, 0.9), rgba(3, 15, 39, 0.575)),url(../img/hero-section.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.hero-text {
  position: absolute;
  width: 780px;
  max-width: calc(100% - 110px);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -30%);
  color: white;
  z-index: 2;
}
.hero-text h1 {
  color: #fff;
  font-size: 2.8rem;
  margin: 0;
}
.hero-text p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  margin: 10px 0;
}

@media (max-width: 924px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .hero-text p {
    font-size: 0.9rem;
  }
}

/*******************************/
/***** Cnt Section Header ******/
/*******************************/
.cnt-section {
  position: relative;
  width: 100%;
  padding: 45px 0;
}
.cnt-section .section-header {
  margin-bottom: 30px;
}
.cnt-section .cnt-section-img {
  position: relative;
  height: 100%;
}
.cnt-section .cnt-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.cnt-section .cnt-section-text p {
  font-size: 16px;
}
.two-column-section {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.column {
  flex: 1;
  min-width: 300px;
}
.column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

@media (max-width: 767.98px) {
  .cnt-section .cnt-section-img {
    margin-bottom: 30px;
    height: auto;
  }
}

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
  position: relative;
  width: 100%;
  padding: 45px 0;
  background: #fff;
}

.blog .blog-item {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
  border-radius: var(--radius);
}

.blog .blog-img {
  position: relative;
  overflow: hidden;
}

.blog .blog-img img {
  width: 100%;
}

.blog .blog-title {
  display: flex;
  align-items: center;
  height: 60px;
  background: #030f27;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog .blog-title h3 {
  margin: 0;
  padding: 0 15px 0 25px;
  width: calc(100% - 60px);
  font-size: 18px;
  font-weight: 700;
  color: #ef4323;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog .blog-title a.btn {
  width: 60px;
  height: 60px;
  padding: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 60px;
  font-weight: 100;
  color: #030f27;
  background: #ef4323;
  border-radius: 0;
  transition: 0.3s;
}

.blog .blog-item:hover a.btn {
  color: #ffffff;
}

.blog .blog-meta {
  position: relative;
  padding: 25px 0 10px 0;
  background: var(--card-bg);
}

.blog .blog-meta::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  left: calc(50% - 50px);
  bottom: 0;
  background: #ef4323;
}

.blog .blog-meta p {
  display: inline-block;
  margin: 0;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: #666666;
}

.blog .blog-meta p a {
  margin-left: 5px;
  font-style: normal;
}

.blog .blog-text {
  padding: 10px 25px 25px 25px;
  background: var(--card-bg);
}

.blog .blog-text p {
  margin: 0;
  font-size: 16px;
}

.blog .pagination .page-link {
  color: #030f27;
  border-radius: 0;
  border-color: #ef4323;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
  color: #ef4323;
  background: #030f27;
}

.blog .pagination .disabled .page-link {
  color: #999999;
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
  position: relative;
  padding-top: 90px;
  background: var(--brand-blue);
  color: #ffffff;
}
.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
  position: relative;
  margin-bottom: 45px;
}
.footer h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-orange);
}
.footer h2::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: var(--brand-orange);
}
.footer .footer-link a {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  transition: 0.3s;
}
.footer .footer-link a::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  margin-right: 10px;
}
.footer .footer-link a:hover {
  color: var(--brand-orange);
}
.footer .footer-contact p i {
  width: 25px;
}
.footer .footer-social {
  position: relative;
  margin-top: 20px;
}
.footer .footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 7px 0;
  text-align: center;
  border: 1px solid rgba(256, 256, 256, 0.3);
  border-radius: 60px;
  transition: 0.3s;
}
.footer .footer-social a i {
  font-size: 15px;
  color: #ffffff;
}
.footer .footer-social a:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}
.footer .footer-social a:hover i {
  color: var(--brand-blue);
}
.footer .newsletter .form {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.footer .footer-menu .f-menu {
  position: relative;
  padding: 15px 0;
  font-size: 0;
  text-align: center;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
  border-bottom: 1px solid rgba(256, 256, 256, 0.1);
}
.footer .footer-menu .f-menu a {
  color: #ffffff;
  font-size: 16px;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-menu .f-menu a:hover {
  color: var(--brand-orange);
}
.footer .footer-menu .f-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.footer .copyright {
  padding: 30px 15px;
}
.footer .copyright p {
  margin: 0;
  color: #ffffff;
}
.footer .copyright .col-md-6:last-child p {
  text-align: right;
}
.footer .copyright p a {
  color: var(--brand-orange);
  font-weight: 500;
  letter-spacing: 1px;
}
.footer .copyright p a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer .copyright p,
  .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}

/*******************************/
/********* 404 Page CSS ********/
/*******************************/

.page-not-found {
  position: relative;
  width: 30%;
  margin: 0 auto;
  padding: 45px 0;
  align-content: center;
}
.error-page {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  margin-top: -90px;
}
.error-page h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 20px;
}
.error-page p {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 30px;
}
.error-page a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: var(--brand-orange);
  border-radius: 0;
  transition: 0.3s;
}
.error-page a:hover {
  color: var(--brand-orange);
  background: var(--brand-blue);
}
.error-page img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .page-not-found {
    width: 90%;
  }
  .error-page h1 {
    font-size: 36px;
  }
  .error-page p {
    font-size: 16px;
  }
  .error-page a {
    font-size: 14px;
    padding: 8px 16px;
  }
  .error-page img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .page-not-found {
    width: 80%;
  }
  .error-page h1 {
    margin-top: 20px;
  }
  .error-page p {
    margin-top: 10px;
  }
  .error-page a {
    margin-top: 10px;
  }
  .error-page img {
    margin-top: 30px;
  }
}

/******* About Page's CSS *******/

/*******************************/
/********** MVV CSS ************/
/*******************************/

.mvv-section {
  position: relative;
  width: 100%;
  padding: 45px 0;
  background: var(--bg);
}

.mvv-section .mvv-heading {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.mvv-section .mvv-heading h2 {
  margin: 0;
  position: relative;
  font-size: 30px;
  font-weight: 700;
}

.mvv-section .mvv-text p {
  font-size: 16px;
}

.mvv-box {
  padding: 20px 30px;
  border-right: 1px solid #ddd;
}

.mvv-box:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .mvv-box {
    border: none;
  }
  .mvv-box:last-child {
    border-bottom: none;
  }
  .mvv-section .mvv-heading h2 {
    font-size: 30px;
  }
}

/*******************************/
/******* commitment CSS ********/
/*******************************/

.commitment {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background: linear-gradient(rgba(239, 65, 35, 0.938), rgba(3, 15, 39, 0.884)),url(../img/hero-section.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.commitment .section-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.commitment .commitment-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  max-width: 850px;
  margin: 0 auto;
}

/*******************************/
/******* Contact Page CSS ******/
/*******************************/
.contact.contact-model {
  padding: 56px 0;
  background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%);
}

.contact.contact-model .overline {
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 6px;
}

.contact.contact-model .title {
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--brand-blue);
}

.contact.contact-model .lead {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

/* Info grid cards */
.info-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(16, 32, 50, 0.04);
  border: 1px solid rgba(3, 15, 39, 0.03);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ef4323 0%, #ff8a6b 100%);
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(239, 67, 35, 0.12);
}

.info-body h6 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue);
}

.info-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Form card */
.form-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 18px 40px rgba(16, 32, 50, 0.08);
  border: 1px solid rgba(3, 15, 39, 0.03);
}

.form-card-header h5 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-blue);
}

.form-card-header p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

/* Form controls */
.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid rgba(16, 32, 50, 0.06);
  padding: 12px 14px;
  background: #fbfdff;
  transition: box-shadow 0.18s ease, transform 0.18s ease,
    border-color 0.18s ease;
}

.contact-form .form-control:focus {
  box-shadow: 0 8px 24px rgba(239, 67, 35, 0.12);
  border-color: #ef4323;
  transform: translateY(-1px);
  outline: none;
}

/* Primary button stronger */
.contact-model .btn-primary {
  background: linear-gradient(90deg, #ef4323 60%, #ff7e5f 100%);
  width: 100%;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 12px 36px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(239, 67, 35, 0.2);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s,
    transform 0.25s cubic-bezier(0.4, 2, 0.6, 1);
}

.contact-model .btn-primary:hover,
.contact-model .btn-primary:focus {
  background: var(--brand-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(3, 15, 39, 0.12);
  outline: none;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .contact.contact-model {
    padding: 36px 12px;
  }

  .info-card {
    padding: 12px;
  }
  .info-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .form-card {
    padding: 18px;
  }
}

@media (max-width: 575.98px) {
  .contact.contact-model .title {
    font-size: 26px;
  }
  .info-card {
    gap: 10px;
    padding: 10px;
  }
}

@media (min-width: 992px) {
  /* Desktop: icon + heading on the same row, description on the next line */
  .info-grid .col-md-6 {
    display: flex;
    align-items: stretch;
  }

  .info-grid .col-md-6 .info-card {
    display: flex;
    align-items: flex-start; /* align icon and heading line */
    gap: 16px;
    padding: 18px;
    flex: 1 1 auto;
    height: 100%;
  }

  /* keep icon fixed size and slightly push it down so heading aligns visually center */
  .info-card .info-icon {
    flex: 0 0 35px;
    width: 56px;
    height: 56px;
    margin-top: 6px;
  }

  /* body is a vertical stack: heading first line, paragraph on next line */
  .info-card .info-body {
    flex: 1 1 auto;
    display: block;
  }

  .info-card .info-body h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1;
    display: inline-block; /* stays on same row as icon */
    vertical-align: middle;
  }

  .info-card .info-body p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
  }
}

/*******************************/
/***** Industries Page CSS *****/
/*******************************/

.industry-service {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 20px 0;
}

.industry-service .section-header {
  text-align: center;
  margin-bottom: 20px;
}
.industry-service-intro-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}
.industry-service .intro-text {
  max-width: 970px;
  margin: 20px auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.ind-card {
  background: var(--card-bg);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(16, 32, 50, 0.08);
  border: 1px solid rgba(11, 13, 23, 0.04);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.28s, box-shadow 0.28s;
}
.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(3, 15, 39, 0.08);
}
.icon-wrap {
  min-width: 70px;
  height: 70px;
  border-radius: 14px;
  background: linear-gradient(180deg,rgba(239, 67, 35, 0.12),rgba(239, 67, 35, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--brand-orange);
}

.ind-card-head h3 {
  margin: 0;
  font-size: 18px;
  color: var(--brand-blue);
  font-weight: 700;
}
.ind-card-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.ind-card-body p {
  margin: 12px 0 0;
  color: #374151;
  line-height: 1.6;
}
.ind-card-body {
  padding-left: 0;
  flex: 1 1 auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 28px;
}

@media (max-width: 1199.98px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-service .intro-text {
    text-align: left;
  }
  .industry-service-intro-text {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .industry-service .intro-text {
    text-align: left;
  }
  .ind-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .icon-wrap {
    min-width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .ind-card-head h3 {
    font-size: 16px;
  }
  .ind-card-head p {
    font-size: 13px;
  }
  .ind-card-body p {
    font-size: 14px;
  }
}

@media (max-width: 480.98px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .icon-wrap {
    min-width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .ind-card-head h3 {
    font-size: 14px;
  }
  .ind-card-head p {
    font-size: 12px;
  }
  .ind-card-body p {
    font-size: 13px;
  }
}

.industry-why-choose-us {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 20px;
}
.heading-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.heading-wrap h2 {
  font-size: 30px;
  color: var(--brand-blue);
  margin: 0 0 12px;
}
.industry-image-wrap {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 0 auto 40px;
  position: relative;
}
.industry-image-wrap img {
  width: 100%;
  height: auto;
}

.industry-why-choose-us .intro-text {
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}
.box-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.box {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(3, 15, 39, 0.1);
}
.icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    180deg,
    rgba(239, 67, 35, 0.12),
    rgba(239, 67, 35, 0.04)
  );
  color: var(--brand-orange);
  font-size: 26px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.box h4 {
  margin: 0 0 6px;
  color: var(--brand-blue);
  font-size: 17px;
}
.box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .box-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .box-grid {
    grid-template-columns: 1fr;
  }
  .industry-image-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 375px) {
  .icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .box h4 {
    font-size: 16px;
  }
  .box p {
    font-size: 13px;
  }
}

/*******************************/
/***** Service Page CSS ********/
/*******************************/
.service-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 0 30px;
}
/* Intro area */
.intro {
  padding: 28px 0 6px;
}
.intro p {
  max-width: 100%;
  color: #374151;
  margin: 10px auto;
  line-height: 1.75;
  font-size: 15px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 18px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(11, 13, 23, 0.04);
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.28s, box-shadow 0.28s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(3, 15, 39, 0.08);
}
.service-body {
  flex: 1;
}
.service-body h3 {
  margin: 0;
  font-size: 18px;
  color: var(--brand-blue);
  font-weight: 700;
}
.service-body p {
  margin: 8px 0 0;
  color: #374151;
  line-height: 1.6;
  font-size: 14px;
}

/* Icon small badge */
.service-icon {
  min-width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(180deg,rgba(239, 67, 35, 0.12),rgba(239, 67, 35, 0.04));
  color: var(--brand-orange);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* feature service */
.featured-services {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 0 20px;
}

.featured-services .intro-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 970px;
  margin: 20px auto;
}
.featured-services-grid {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 20px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  background: linear-gradient(
    180deg,
    rgba(239, 67, 35, 0.12),
    rgba(239, 67, 35, 0.04)
  );
  color: var(--brand-blue);
  font-size: 28px;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(3, 15, 39, 0.1);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg,rgba(239, 67, 35, 0.12),rgba(239, 67, 35, 0.04));
  color: var(--brand-orange);
  font-size: 26px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.feature-card h4 {
  margin: 0 0 6px;
  color: var(--brand-blue);
  font-size: 17px;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.feature-text {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* service content */
.service-content {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 0 60px;
}
.service-content p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .featured-services .section-header h2 {
    font-size: 28px;
  }
  .featured-services .section-header p {
    font-size: 16px;
  }
  .featured-services .intro-text {
    font-size: 16px;
  }
  .featured-services .featured-services-grid {
    flex-direction: column;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .service-section {
    padding: 5px 0;
  }
  .service-content {
    padding: 10px 0;
  }
  .featured-services .section-header {
    text-align: center;
    margin-bottom: 20px;
  }
  .featured-services .intro-text {
    text-align: left;
  }
  .featured-services .intro-text {
    font-size: 16px;
  }
  .featured-services .featured-services-grid {
    flex-direction: column;
  }
  .featured-services-grid {
    padding: 0 15px;
  }
  .feature-card {
    text-align: center;
  }
  .feature-icon {
    margin: 0 auto 14px;
  }
  .feature-card h4 {
    font-size: 16px;
  }
  .feature-card p {
    font-size: 14px;
  }
  .feature-text {
    font-size: 14px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .featured-services .section-header h2 {
    font-size: 26px;
  }
  .featured-services .section-header p {
    font-size: 15px;
  }
  .featured-services .intro-text {
    font-size: 15px;
  }
  .featured-services .featured-services-grid {
    gap: 12px;
  }
  .feature-card {
    gap: 12px;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/********************************/
/****** Product Page CSS ********/
/********************************/
/* Intro */
.intro {
  padding: 24px 0 6px;
}
.intro p {
  max-width: 100%;
  margin: 10px auto;
  color: #374151;
  line-height: 1.75;
  font-size: 15px;
}

/* Catalog controls (download, filter chips) */
.controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0;
}
.productpage-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 28px;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 600;
}
.productpage-btn.alt {
  background: #fff;
  color: var(--brand-blue);
  border: 1px solid #e9eef6;
  box-shadow: 0 8px 24px rgba(3, 15, 39, 0.03);
  font-weight: 700;
  transition: all 0.22s ease;
  text-decoration: none;
}
.productpage-btn:hover {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 12px 32px rgba(3, 15, 39, 0.12);
  border: none;
  transform: translateY(-2px);
  transition: all 0.22s ease;
}
.productpage-btn.alt:hover,
.product-btn.alt:hover,
.ajz-wa-send.alt:hover {
  border: 1px solid transparent;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  background: #fff;
  border: 1px solid #eef2f6;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(3, 15, 39, 0.03);
  transition: all 0.22s ease;
}
.chip:hover {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 12px 32px rgba(3, 15, 39, 0.12);
  transform: translateY(-2px);
  transition: all 0.22s ease;
}

/* Categories grid (5 per row on wide screens) */
.productpage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.productpage-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(11, 13, 23, 0.04);
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.productpage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(3, 15, 39, 0.08);
}
.productpage-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,rgba(239, 67, 35, 0.1),rgba(239, 67, 35, 0.03));
  color: var(--brand-orange);
  font-size: 22px;
  flex: 0 0 60px;
}
.productpage-card-body {
  flex: 1;
}
.productpage-card-body h3 {
  margin: 0;
  font-size: 16px;
  color: var(--brand-blue);
}
.productpage-card-body p {
  margin: 8px 0 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
}
.productpage-card-footer {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}
/* View link */
.view-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.22s ease;
  text-decoration: none;
}
.view-link:hover {
  color: var(--brand-orange);
  transform: translateY(-2px);
  transition: all 0.22s ease;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .productpage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .productpage-card {
    gap: 12px;
  }
  .productpage-card-body h3 {
    font-size: 15px;
  }
  .productpage-card-body p {
    font-size: 14px;
  }
  .productpage-card-footer {
    font-size: 13px;
  }
  .view-link {
    font-size: 14px;
  }
  .productpage-icon {
    width: 55px;
    height: 55px;
    font-size: 21px;
    flex: 0 0 55px;
  }
}
@media (max-width: 980px) {
  .productpage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .productpage-card {
    gap: 10px;
  }
  .productpage-card-body h3 {
    font-size: 14px;
  }
  .productpage-card-body p {
    font-size: 13px;
  }
  .productpage-card-footer {
    font-size: 12px;
  }
  .view-link {
    font-size: 13px;
  }
  .productpage-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    flex: 0 0 50px;
  }
  .chip {
    padding: 6px 10px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .productpage-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .page-header .title {
    font-size: 20px;
  }
  .productpage-card-body h3 {
    font-size: 16px;
  }
  .productpage-card-body p {
    font-size: 14px;
  }
  .productpage-card-footer {
    font-size: 13px;
  }
  .view-link {
    font-size: 14px;
  }
  .productpage-icon {
    width: 55px;
    height: 55px;
    font-size: 21px;
    flex: 0 0 55px;
  }
  .chip {
    padding: 7px 12px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .productpage-btn,
  .productpage-btn.alt {
    padding: 8px 14px;
    font-size: 14px;
  }
  .chip {
    padding: 6px 10px;
    font-size: 12px;
  }
  .productpage-card-body h3 {
    font-size: 14px;
  }
  .productpage-card-body p {
    font-size: 13px;
  }
  .productpage-card-footer {
    font-size: 12px;
  }
  .view-link {
    font-size: 13px;
  }
  .productpage-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    flex: 0 0 50px;
  }
  .chip {
    padding: 5px 8px;
    font-size: 11px;
  }
}

/* Mini features */
.mini {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.mini .mcard {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(3, 15, 39, 0.03);
  border: 1px solid rgba(3, 15, 39, 0.03);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini .micon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,rgba(3, 15, 39, 0.02),rgba(239, 67, 35, 0.03));
  color: var(--brand-blue);
  font-size: 22px;
}
.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  border: 1px solid #f3f6f9;
  font-weight: 500;
}

/* Responsive breakpoints */
@media (max-width: 991.98px) {
  .mini {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-btn,
  .product-btn.alt {
    padding: 8px 14px;
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .mini {
    grid-template-columns: repeat(2, 1fr);
  }
  .productpage-btn,
  .productpage-btn.alt {
    padding: 6px 10px;
    font-size: 13px;
  }
}
@media (max-width: 375.98px) {
  .mini {
    grid-template-columns: repeat(1, 1fr);
  }
  .productpage-btn,
  .productpage-btn.alt {
    padding: 6px 8px;
    font-size: 12px;
  }
}

/* Footer CTA */
.cta-wrap {
  margin: 26px 0;
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Utility */
.center {
  text-align: center;
}
.small-muted {
  color: var(--muted);
  font-size: 13px;
}

/* image preview style (optional) */
.thumb {
  width: 140px;
  height: 80px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex: 0 0 140px;
}

/*********************************/
/******* Our Brand Page CSS ******/
/*********************************/
.our-brand {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 10px 60px;
}
.our-brand .intro-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 970px;
  margin: 20px auto;
}
.our-brand.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px;
}
.our-brand .kicker {
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 13px;
}
.our-brand .section-header {
  text-align: center;
  margin-bottom: 10px;
}
.our-brand .lead {
  color: var(--muted);
  line-height: 1.8;
  max-width: auto;
  margin: 12px auto 0;
  font-size: 15px;
}
.our-brand .features {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.brand-feature {
  background: linear-gradient(180deg, rgba(239, 67, 35, 0.1),rgba(239, 67, 35, 0.03));
  border-radius: var(--radius);
  padding: 26px;
  flex: 1;
  box-shadow: 0 10px 30px rgba(3, 15, 39, 0.05);
  text-align: center;
}
.brand-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(180deg,rgba(239, 67, 35, 0.1),rgba(239, 67, 35, 0.03));
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 24px;
}
.brand-feature h4 {
  margin: 0 0 6px;
  color: var(--brand-blue);
  font-size: 18px;
}
.brand-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.planned-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 0 20px;
}
.planned-row {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}
.planned-section .section-header {
  text-align: center;
  margin-bottom: 10px;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}
.planned-section .section-header h3 {
  margin-bottom: 10px;
  font-size: 30px;
  color: var(--brand-blue);
}
.planned-section .section-header p {
  margin: 6px 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.brand-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(3, 15, 39, 0.03);
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(3, 15, 39, 0.06);
}
.brand-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgb(243, 244, 246), rgb(255, 255, 255));
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 24px;
}
.brand-name {
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 6px;
}
.brand-tag {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}
.label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff8f6;
  color: var(--brand-orange);
  border: 1px solid rgba(239, 67, 35, 0.08);
  font-weight: 600;
  margin-bottom: 8px;
}
.small-cta {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(3, 15, 39, 0.06);
  color: var(--brand-blue);
  font-weight: 600;
}
.timeline {
  display: flex;
  gap: 16px;
  margin: 56px 0;
}
.timeline .line {
  flex: 0.2;
  height: 2px;
  background: var(--brand-orange);
  align-self: center;
}
.timeline .step:first-child {
  margin-left: 0;
}
.timeline .step:last-child {
  margin-right: 0;
}
.timeline .section-header h5 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--brand-blue);
}
.timeline .step-description {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media (min-width: 991px) {
  .timeline .section-header {
    display: none;
  }
  .timeline .step-description {
    display: none;
  }
}
.timeline .step {
  background: #fff;
  padding: 14px;
  border: 1px solid var(--brand-orange);
  border-radius: var(--radius);
  flex: 1;
}
.timeline .step h5 {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-size: 16px;
}
.timeline .step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.cta-block {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255)60%);
  padding: 22px;
  border-radius: 12px;
  margin-top: 22px;
  text-align: center;
}
.cta-block h3 {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-size: 22px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
.cta-action {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 28px;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
}
.btn-outline {
  padding: 10px 16px;
  border: 1px solid rgba(3, 15, 39, 0.06);
  background: #fff;
  border-radius: 8px;
}
.btn-outline:hover {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 12px 32px rgba(3, 15, 39, 0.12);
  transform: translateY(-2px);
  transition: all 0.22s ease;
}
.micro {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features {
    flex-direction: column;
    gap: 16px;
  }
  .brand-feature {
    text-align: center;
  }
  .brand-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 auto 12px;
  }
  .brand-feature h4 {
    font-size: 16px;
  }
  .brand-feature p {
    font-size: 14px;
  }
  .brand-card {
    text-align: center;
  }
  .timeline {
    flex-direction: column;
    gap: 16px;
  }
  .container {
    padding: 18px;
  }
}
@media (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .features {
    flex-direction: column;
    gap: 16px;
  }
  .brand-feature {
    text-align: center;
  }
  .brand-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 auto 12px;
  }
  .brand-feature h4 {
    font-size: 16px;
  }
  .brand-feature p {
    font-size: 14px;
  }
  .brand-card {
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .features {
    flex-direction: column;
    gap: 16px;
  }
  .brand-feature {
    text-align: center;
  }
  .brand-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 auto 12px;
  }
  .brand-feature h4 {
    font-size: 16px;
  }
  .brand-feature p {
    font-size: 14px;
  }
  .brand-card {
    text-align: center;
  }
}