/* ==================== [ Root CSS Start ] ==================== */
/* ==================== [ Core Colors ] ==================== */
:root {
  --white: #ffffff;
  --black: #000000;
  --transparent: #0000;
}

/* ==================== [ Brand / Theme ] ==================== */
:root {
  --primary: #0056a0;
  --body: #ffffff;
  --border-color: #e0e0e0;
}

/* ==================== [ Fonts ] ==================== */
:root {
  --font-primary: "", sans-serif;
  --font-secondary: "", sans-serif;
}

/* ==================== [ Layout / Container ] ==================== */
:root {
  --container: 1170px;
  --container-padding: 20px;
  --row-gutter-space: 24px;
}

/* ==================== [ Typography – Common ] ==================== */
:root {
  --a-color: var(--primary);
  --a-hover-color: var(--primary);

  --marker-color: var(--primary);

  --blockquote-border-color: var(--primary);
  --blockquote-bg: var(--white);

  --pre-bg: var(--white);
  --pre-color: var(--primary);
}

/* ==================== [ Table ] ==================== */
:root {
  --table-border: rgba(0, 0, 0, 0.2);

  --table-th-bg: var(--primary);
  --table-th-color: var(--white);

  --table-td-bg: var(--transparent);
  --table-td-color: var(--primary);
}

/* ==================== [ Headings ] ==================== */
:root {
  --heading-color: #079b81;
  --heading-font-family: var(--font-secondary);
  --heading-mb: 20px;
  --heading-fw: 700;

  --h1-fs: 48px;
  --h1-lh: 56px;

  --h2-fs: 40px;
  --h2-lh: 48px;

  --h3-fs: 32px;
  --h3-lh: 40px;

  --h4-fs: 26px;
  --h4-lh: 34px;

  --h5-fs: 22px;
  --h5-lh: 30px;

  --h6-fs: 18px;
  --h6-lh: 26px;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Brand Global CSS Start ] ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: #7a7a7a;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  background: var(--body);
  overflow-x: hidden;
}

/* ==================== [ Brand Global CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
  margin: 0;
}

strong,
b {
  font-weight: 700 !important;
}

a,
input,
button,
textarea {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--transparent) inset !important;
  -webkit-text-fill-color: var(--secondary) !important;
  transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
textarea:autofill,
select:autofill {
  background-color: var(--transparent) !important;
  color: var(--secondary) !important;
}

a {
  color: var(--a-color);
  word-break: break-word;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--a-hover-color);
}

p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 20px;
}

ol,
ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

ol li,
ul li {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

ol li::marker,
ul li::marker {
  color: var(--marker-color);
}

ul li:has(> ul),
ul li:has(> ol) {
  list-style-type: none;
}

blockquote {
  padding: 16px 16px 16px 24px;
  border-left: 5px solid var(--blockquote-border-color);
  margin-bottom: 20px;
  background-color: var(--blockquote-bg);
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

pre {
  background-color: var(--pre-bg);
  padding: 16px;
  overflow: auto;
  font-family: inherit;
  border-radius: 12px;
  position: relative;
  color: var(--pre-color);
}

pre code {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: inherit;
}

th,
td {
  border: 1px solid var(--table-border);
  padding: 8px 12px;
  text-align: left;
}

th {
  background-color: var(--table-th-bg);
  font-weight: 600;
  font-size: inherit;
  color: var(--table-th-color);
}

td {
  background-color: var(--table-td-bg);
  font-weight: 400;
  font-size: inherit;
  color: var(--table-td-color);
}

h1,
.h1 > * {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: var(--h1-fs);
  line-height: var(--h1-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h2,
.h2 > * {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: var(--h2-fs);
  line-height: var(--h2-lh);
  font-weight: var(--heading-fw);
  /* margin-bottom: var(--heading-mb); */
}

h3,
.h3 > * {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: var(--h3-fs);
  line-height: var(--h3-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h4,
.h4 > * {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: var(--h4-fs);
  line-height: var(--h4-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h5,
.h5 > * {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: var(--h5-fs);
  line-height: var(--h5-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h6,
.h6 > * {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: var(--h6-fs);
  line-height: var(--h6-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

hr {
  margin-block: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

.typography {
  padding-block: 120px;
}

.typography img {
  max-width: 300px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
}

.typography img.align-left {
  margin-right: 40px;
  float: left;
}

.typography img.align-right {
  margin-left: 40px;
  float: right;
}

.typography img.align-center {
  margin-inline: auto;
  display: block;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
  margin-inline: calc(var(--row-gutter-space) / -2);
  row-gap: var(--row-gutter-space);
}

.row > * {
  padding-inline: calc(var(--row-gutter-space) / 2);
}

.img-cover * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
  width: fit-content;
  padding: 8px 20px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  border-radius: 50px;
  border: 1px solid;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

.btn-primary:is(:hover, :focus-visible, :active, .active) {
  color: var(--primary) !important;
  background-color: var(--transparent) !important;
  border-color: var(--primary) !important;
  box-shadow: none !important;
  outline: 0 !important;
}
.btn-outline-custom {
  text-decoration: none;
}

/* ==================== [ Button End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
}

.error-404 .heading {
  text-align: center;
}

.error-404 .action * {
  width: fit-content;
  margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
  padding-inline: var(--container-padding);
  margin-inline: auto;
}

.swiper-linear .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ==================== [ Extra Common End ] ==================== */

/* ==================== [custom css start] ==================== */

/* Global Hover Effects (Images) */
.hover-zoom {
  overflow: hidden;
  border-radius: 16px;
  text-align: end;
}
.hover-zoom img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  object-fit: cover;
}
.hover-zoom:hover img {
  transform: scale(1.08);
}

/* ==================== [ Layout Sections ] ==================== */
.section-padding {
  padding-block: 80px;
}

/* Header */
.navbar {
  padding: 15px 0;
  background: #d9e6f1;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.navbar-brand {
  font-family: var(--heading-font-family);
  font-weight: 700;
  color: var(--primary) !important;
  font-size: 24px;
}
.nav-link {
  color: var(--black) !important;
  font-weight: 500;
  font-size: 15px;
  margin: 0 10px;
  position: relative;
}

/* Header Link Hover Animation */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  color: var(--primary) !important;
}

.section-label {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}
.btn-custom span.icon-arrow {
  transform: rotate(90deg);
  font-size: 20px;
  transition: 0.15s ease-in-out;
}
.btn-custom:hover .icon-arrow {
  transform: rotate(90deg) translateY(-6px);
}

/* Hero Section */
.hero-section {
  background-color: #d9e6f1;
  overflow: hidden;
  padding-top: 60px;
}
.hero-section .hover-zoom {
  border-radius: unset;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.hero-section .hover-zoom img {
  max-height: 600px;
}
.hero-label {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}
.customers-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.customers-badge img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -15px;
  transition: transform 0.3s;
}
.customers-badge img:hover {
  transform: translateY(-5px);
  z-index: 10;
  position: relative;
}
.customers-badge img:first-child {
  margin-left: 0;
}
.customers-badge p {
  margin: 0;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}
/* about Section */
.about-section .hover-zoom img {
  max-width: 500px;
  max-height: 500px;
  border-radius: 16px;
}

/* Products Card */
.product-card {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  background: var(--white);
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}
.product-img-wrapper {
  height: 180px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover img {
  transform: scale(1.15);
}
.product-card h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-align: left;
  margin: 0;
  transition: color 0.3s;
  color: #0d0d0d;
}
.product-card:hover h4 {
  color: var(--primary);
}

/* Swiper Navigation Customization */
.products-swiper {
  padding-bottom: 50px !important; /* Space for pagination/navigation */
}
.swiper-button-next,
.swiper-button-prev {
  background-color: var(--white);
  color: var(--primary);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  top: 40% !important;
  transition: all 0.3s ease;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: 700;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* Quality Section */
.quality-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  transition: transform 0.3s;
}
.quality-item:hover {
  transform: translateX(10px);
}
.quality-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.quality-item:hover .quality-icon {
  background: #10b981; /* Green highlight on hover */
  transform: rotateY(180deg);
}
.quality-text h4 {
  font-size: 18px;
  margin-bottom: 0px;
}
.quality-text p {
  margin: 0;
  font-size: 15px;
}
.whyus-section .hover-zoom img {
  max-height: 600px;
}

/* ==================== [ Contact Us Section Premium Style ] ==================== */
.contact-info-card {
  background-color: #fcfcfc;
  padding: 35px 25px;
  border-radius: 8px;
  text-align: left;
  height: 100%;
  border: 1px solid #ebebeb;
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--teal);
  transform: translateY(-5px);
}
.contact-info-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}
.contact-info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Form Wrapper */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden; /* Keeps the right side box perfectly clipped */
}

.form-control-custom {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--heading-color);
  background-color: #f9f9f9; /* Light grey inside inputs */
  margin-bottom: 24px;
  transition: all 0.3s;
}
.form-control-custom::placeholder {
  color: #999;
}
.form-control-custom:focus {
  border-color: var(--teal);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 131, 143, 0.1);
  outline: none;
}
.form-label-custom {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.btn-send {
  background-color: var(--teal);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-send:hover {
  background-color: #006b75;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 131, 143, 0.3);
}

/* Social Media Sidebar */
.social-media-box {
  background-color: #d9e6f1; /* Dark navy/teal from screenshot */
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.social-media-box h4 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
.social-media-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.social-icons-wrap {
  display: flex;
  gap: 15px;
}
.social-icons-wrap a {
  color: #113f48;
  background: var(--white);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.social-icons-wrap a:hover {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.1);
}
.social-icons-wrap a img {
  max-width: 24px;
  max-height: 24px;
}
/* ==================== [ Map Section Fix ] ==================== */
.map-container {
  width: 100%;
  height: 450px;
  margin-top: 80px;
  background: #e9ecef;
  position: relative; /* Added for absolute iframe */
  display: block;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.5s;
}
.map-container:hover iframe {
  filter: grayscale(0%);
}
/* ==================== [ Exact Match Footer CSS ] ==================== */
.footer {
  background-color: var(--primary); /* #0056a0 */
  color: var(--white);
  padding: 60px 0 40px;
  font-family: var(--font-primary);
}
.footer-top {
  padding-bottom: 25px;
}
.footer-logo-img {
  max-height: 55px; /* Replace src with your actual logo image path */
  object-fit: contain;
}
.back-to-top {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.back-to-top:hover {
  background-color: #f1f1f1;
  color: var(--primary);
  transform: translateY(-3px);
}
.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 0 40px 0;
  opacity: 1;
}
.footer-middle {
  margin-bottom: 20px;
}
.footer-heading {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 18px;
}
.footer-links li a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.3s;
}
.footer-links li a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Social Pills */
.social-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end; /* Right aligned on desktop */
  max-width: 400px;
  margin-left: auto;
}
.social-pill {
  background-color: #202020; /* Dark Gray from screenshot */
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.social-pill:hover {
  background-color: var(--white);
  color: #222222;
  text-decoration: none;
}

.footer-bottom {
  font-size: 14px;
  color: var(--white);
}
.footer-bottom a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-bottom a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.separator {
  margin: 0 10px;
  opacity: 0.7;
}
.sidelayout-bar {
  gap: 60px;
}
.sidelayout-bar .side-left-bar h2 {
  white-space: nowrap;
  text-transform: capitalize;
}
.sidelayout-bar .side-right-bar {
  max-width: 400px;
}
