﻿@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --clr-black: #000000;
  --clr-gray: #444444;
  --clr-red: #c61c11;
  --clr-white: #ffffff;
  --clr-blue: #006bad;
  --clr-dark: #111111;
  --clr-bg-blue: #f3f7fc;
  --clr-bg-grey: #f4f4f6;
  --font-16: 16px;
  --font-18: 18px;
  --font-22: 22px;
  --font-24: 24px;
  --font-28: 28px;
  --font-30: 30px;
  --font-38: 38px;
  --font-42: 42px;
  --font-50: 50px;
  --font-80: 80px;
  --body-font: "Poppins", sans-serif;
  --header-font: "Lora", serif;
  --container-width: 1520px;
}
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: var(--font-16);
  color: var(--clr-dark);
  background-color: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--header-font);
  font-weight: 700;
  color: var(--clr-black);
  scroll-margin-top: 180px;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: inline-block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a:focus-visible {
  outline: none !important;
}

.post,
.page {
  margin: 0;
}
.row {
  margin: 0;
}

p,
ul {
  margin: 0;
  padding: 0;
}

.row > * {
  padding-left: 0;
  padding-right: 0;
}
.az-container {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}
.btn-common {
  background-color: var(--clr-red);
  color: var(--clr-white);
  padding: 14px 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-18);
  font-weight: 500;
  font-family: var(--body-font);
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-common::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s ease;
}

.btn-common:hover {
  box-shadow: 0 8px 15px rgba(198, 28, 17, 0.3);
  background-color: #d81e11;
}

.btn-common:hover::before {
  left: 100%;
}

.btn-common img {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-common:hover img {
  transform: scale(1.2);
}

.btn-common:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(198, 28, 17, 0.4);
}
main {
  padding-top: 148px;
  position: relative;
}
main::before {
  content: "";
  background: url(../images/mix-dot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 40vw;
  left: 4vw;
  width: 50px;
  height: 100px;
  z-index: 9;
}
main::after {
  content: "";
  background: url(../images/star.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 40vw;
  right: 4vw;
  width: 50px;
  height: 50px;
  z-index: 9;
}
/* Header Styling */
.main-header {
  background-color: var(--clr-white);
  padding: 18px 0;
  border-bottom: 2px solid #f5f5f5;
  position: fixed;
  top: 0;
  z-index: 1100;
  background: #fff;
  width: 100%;
}
.mobile-menu-overlay {
  display: none;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-logo img {
  max-width: 220px;
  height: auto;
}

.header-right-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Top Info Bar */
.top-info-bar {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding-bottom: 5px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-18, 18px);
  color: var(--clr-dark);
  font-weight: 600;
}

.info-item img {
  width: 25px;
  height: auto;
}

.info-item span {
  color: var(--clr-black);
  font-family: var(--body-font);
  font-size: var(--font-18);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.info-item a {
  color: inherit;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--clr-red);
}

.navigation-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.main-navigation {
  margin: 0 auto;
}
.header-action {
  min-width: 158px;
}
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation ul li a {
  font-family: var(--body-font);
  font-size: var(--font-16);
  font-weight: 400;
  color: var(--clr-black);
  padding: 24px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: color 0.3s ease;
}

.main-navigation > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--clr-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.5, 0, 0, 1);
}

.main-navigation > ul > li:hover > a::after,
.main-navigation > ul > li.current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
  color: var(--clr-red);
}

.main-navigation ul li.current-menu-item a {
  font-weight: 600;
}

.main-navigation ul li.menu-item-has-children > a {
  padding-right: 18px;
}

.main-navigation ul li.menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: all 0.4s ease;
  pointer-events: none;
}

.main-navigation ul li.menu-item-has-children:hover > a::before {
  transform: translateY(-30%) rotate(225deg);
  color: var(--clr-red);
}
.main-navigation ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transform-origin: top left;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 99;
}

.main-navigation ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.main-navigation ul li .sub-menu li {
  width: 100%;
  padding: 0 10px;
}

.main-navigation ul li .sub-menu li a {
  width: 100%;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-dark);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-navigation ul li .sub-menu li a::after {
  display: none;
}

.main-navigation ul li .sub-menu li a:hover {
  background-color: var(--clr-red);
  color: var(--clr-white) !important;
  transform: translateX(5px);
}
.header-action .btn-common {
  padding: 12px 25px;
  font-size: var(--font-16);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
}
/* Hamburger Trigger */
.header-mobile-trigger {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  transition: all 0.4s ease;
}

.header-mobile-trigger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--clr-red);
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  border-radius: 4px;
}

.header-mobile-trigger span:nth-child(2) {
  width: 75%;
  margin-left: auto;
}

.header-mobile-trigger:hover span:nth-child(2) {
  width: 100%;
}

.header-mobile-trigger.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: var(--clr-red);
}

.header-mobile-trigger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.header-mobile-trigger.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: var(--clr-red);
}
/* Hero Section Styling */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 680px;
}

.hero-content h1 {
  font-size: var(--font-80);
  color: var(--clr-black);
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--header-font);
  line-height: 106%;
  letter-spacing: -0.4px;
  text-transform: capitalize;
}

.hero-content p {
  font-size: var(--font-18);
  color: var(--clr-gray);
  line-height: 150%;
  margin-bottom: 50px;
  font-weight: 400;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: var(--clr-black);
  padding: 10px 0;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-read-more img {
  width: 18px;
  height: auto;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-read-more span {
  font-size: var(--font-16);
  font-weight: 500;
  color: var(--clr-black);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.btn-read-more::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(-0deg);
  width: 50px;
  height: 50px;
  border: 2px solid var(--clr-black);
  border-radius: 50%;
  border-right-color: transparent;
  z-index: 1;
  transition: all 0.4s ease;
}
.common-arrow-btn {
  padding-left: 10px;
}
.btn-read-more:hover img {
  transform: translateX(2px);
}

.btn-read-more:hover span {
  color: var(--clr-red);
}

.hero-pagination {
  position: absolute;
  bottom: 40px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  width: auto !important;
}
.hero-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: transparent;
  opacity: 1;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 5px !important;
}
.hero-pagination .swiper-pagination-bullet svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.hero-pagination .swiper-pagination-bullet svg path {
  fill: #dadada;
  transition: all 0.3s ease;
}
.hero-pagination .swiper-pagination-bullet-active {
  transform: scale(1.1);
}

.hero-pagination .swiper-pagination-bullet-active svg path {
  fill: var(--clr-blue);
}
.hero-pagination .swiper-pagination-bullet svg path:focus,
.hero-pagination .swiper-pagination-bullet-active svg path:focus {
  outline: none !important;
}

/* About Section Styling */
.about-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--clr-white);
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18%;
  height: 100%;
  background-color: var(--clr-blue);
  z-index: 1;
}
.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: var(--clr-blue);
  z-index: 1;
}

.about-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.about-dot {
  position: absolute;
  width: 80px;
}

.about-dot.mix-dot {
  left: 10vw;
  bottom: 0.5vw;
}

.about-dot.white-dot {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about-star {
  position: absolute;
  width: 30px;
}

.about-star img {
  filter: brightness(0) invert(1) opacity(0.5); /* Make it white/subtle on blue */
}

.about-star.star-top {
  right: 12%;
  top: 6%;
}

.about-star.star-bottom {
  right: 50%;
  bottom: 8%;
}

.about-section .az-container {
  position: relative;
  z-index: 3;
}

.about-row {
  display: flex;
  align-items: start;
  gap: 56px;
}

.about-content-col {
  flex: 1.2;
}

.about-image-col {
  flex: 1;
}

.about-title {
  margin-bottom: 20px;
}

.about-title h2 {
  font-size: var(--font-50);
  font-weight: 500;
  color: var(--clr-black);
  text-transform: uppercase;
  font-family: var(--body-font);
  margin: 0;
}

.about-title h2 span {
  font-family: var(--header-font);
  color: var(--clr-blue);
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.about-item h3 {
  font-size: var(--font-24);
  font-weight: 500;
  color: var(--clr-black);
  font-family: var(--body-font);
  margin-bottom: 10px;
}

.about-item h3 span {
  font-family: var(--header-font);
  color: var(--clr-blue);
}

.about-item p {
  font-size: var(--font-16);
  color: var(--clr-gray);
  font-weight: 400;
}

.about-img-wrapper {
  position: relative;
  box-shadow: 8px 8px 0px rgb(255, 255, 255);
  border-radius: 4px;
  overflow: hidden;
  z-index: 5;
  border-radius: 0 20px;
}

.about-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
}

/* Footer Section */
.footer-main {
  background-color: var(--clr-bg-blue);
  padding: 80px 0 60px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col-info {
  flex: 1.5;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 180px;
}

.footer-about p {
  color: var(--clr-gray);
  font-size: var(--font-16);
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-social-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-sub-title span {
  font-size: var(--font-24);
  font-weight: 500;
  display: block;
  color: var(--clr-dark);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.footer-social-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background-color: #d3d3d3;
}

.footer-social-links a img {
  width: 24px;
  height: auto;
  filter: brightness(0);
}

.footer-social-links a:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(4882%)
    hue-rotate(352deg) brightness(95%) contrast(100%);
}

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

.footer-title span {
  font-size: var(--font-24);
  color: var(--clr-dark);
  margin-bottom: 20px;
  font-family: var(--header-font);
  display: block;
  font-weight: 500;
}

.footer-col-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-menu ul li:not(:last-child) {
  margin-bottom: 12px;
  position: relative;
}

.footer-col-menu ul li a {
  color: var(--clr-gray);
  font-size: var(--font-18);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-col-menu ul li a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background-color: var(--clr-red);
  opacity: 0;
  transition: all 0.5s ease;
}

.footer-col-menu ul li:hover a {
  color: var(--clr-red);
  padding-left: 18px;
}

.footer-col-menu ul li:hover a::before {
  opacity: 1;
  left: 0;
}

.footer-col-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-contact ul li:not(:last-child) {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-icon {
  width: 20px;
  flex-shrink: 0;
}

.contact-text span a {
  color: var(--clr-gray);
  font-size: var(--font-16);
  text-decoration: none;
  line-height: 1.4;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.contact-text span a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background-color: var(--clr-blue);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-col-contact ul li:hover .contact-text span a {
  color: var(--clr-red);
}

.footer-col-contact ul li:hover .contact-icon img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(4882%)
    hue-rotate(352deg) brightness(95%) contrast(100%);
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background-color: var(--clr-white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: var(--font-50);
  font-weight: 500;
  margin-bottom: 0;
  color: var(--clr-black);
  font-family: var(--body-font);
}

.section-title h2 span {
  color: var(--clr-blue);
  font-family: var(--header-font);
}
.section-title p {
  color: var(--clr-gray);
  text-align: center;
  font-family: var(--body-font);
  font-size: var(--font-18);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 978px;
  margin: 0 auto;
  margin-top: 14px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 40px;
}

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-thumb {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
}

.blog-thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 10px;
}

.blog-meta {
  font-size: var(--font-18);
  color: var(--clr-black);
  font-weight: 400;
  margin-bottom: 14px;
}

.blog-body h3 {
  font-size: var(--font-22);
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 6px;
  font-family: var(--body-font);
  /* Line clamp 1 */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-body p {
  font-size: var(--font-18);
  color: var(--clr-gray);
  margin-bottom: 30px;
  /* Line clamp 3 */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Client Section */
.client-section {
  padding: 80px 0;
  background-color: var(--clr-bg-grey);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.client-section::before,
.client-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 107, 173, 0.05);
  pointer-events: none;
  z-index: -1;
}

.client-section::before {
  width: 200px;
  height: 200px;
  left: 150px;
  bottom: -100px;
  box-shadow:
    0 0 0 60px rgba(0, 107, 173, 0.02),
    0 0 0 120px rgba(0, 107, 173, 0.01);
}

.client-section::after {
  width: 300px;
  height: 300px;
  right: 200px;
  top: -200px;
  box-shadow:
    0 0 0 50px rgba(0, 107, 173, 0.02),
    0 0 0 100px rgba(0, 107, 173, 0.01);
}

.title-wrapper {
  display: inline-block;
  position: relative;
}
.client-section .az-container {
  position: relative;
}
.client-section .az-container::before,
.client-section .az-container::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: var(--clr-blue);
  mask-image: url("../images/star.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/star.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

.client-section .az-container::before {
  top: -10px;
  left: 20vw;
}

.client-section .az-container::after {
  bottom: px;
  right: 6vw;
}
.client-section .client-slider {
  max-width: 1300px;
  margin: 0 auto;
}
.client-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 0 20px;
}

.client-logo-box img {
  max-width: 100%;
  max-height: 80px;
}

/* Product Section */
.product-section {
  padding: 80px 0;
  background-color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
  padding-top: 50px; /* Space for the shifted items */
}

.product-col:nth-child(3n + 2) {
  transform: translateY(-50px);
}

.product-card {
  aspect-ratio: 1 / 1;
  perspective: 1000px;
}

.product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.product-card:hover .product-card-inner {
  transform: rotateY(180deg);
}

.product-card-front,
.product-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 6px;
  overflow: hidden;
}

.product-card-front {
  background-color: var(--clr-black);
}

.product-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  text-align: center;
}

.product-name span {
  font-size: var(--font-24);
  color: var(--clr-white);
  font-weight: 600;
  font-family: var(--body-font);
}

.product-card-back {
  background-color: var(--clr-blue);
  color: var(--clr-white);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 46px 20px;
  text-align: left;
}

.product-card-back h3 {
  color: var(--clr-white);
  font-family: var(--body-font);
  font-size: var(--font-28);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.product-card-back p {
  color: var(--clr-white);
  font-family: var(--body-font);
  font-size: var(--font-18);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-card-back .common-arrow-btn {
  margin-top: auto;
}
.product-card .btn-read-more::before {
  border-color: var(--clr-white);
  border-right: none;
}
.product-card .btn-read-more img {
  filter: invert(1);
}
.product-card .btn-read-more span {
  color: var(--clr-white);
  background-color: var(--clr-blue);
}
/* Product Stars */
.product-star {
  position: absolute;
  width: 32px;
  height: 32px;
  background-color: var(--clr-blue);
  mask-image: url("../images/star.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/star.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  pointer-events: none;
}

.product-star.left {
  left: 50px;
  top: 60%;
}

.product-star.right {
  right: 50px;
  top: 30%;
}

/* Footer Banner Section */
.footer-banner-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.footer-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  opacity: 0.9;
  z-index: 1;
}

.footer-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-banner-phone a {
  font-size: var(--font-42);
  font-weight: 600;
  color: var(--clr-black);
  text-decoration: none;
  padding: 16px 0;
}

.footer-banner-info p {
  font-size: var(--font-38);
  color: var(--clr-black);
  font-weight: 500;
  margin: 0;
  padding-bottom: 66px;
}

/* Footer Bottom Bar */
.footer-bottom {
  background-color: var(--clr-bg-blue);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright p,
.footer-developer p {
  color: var(--clr-dark);
  font-size: var(--font-16);
  margin: 0;
}

.footer-developer a {
  font-weight: 700;
  color: var(--clr-black);
  text-transform: uppercase;
  cursor: pointer;
}

/* Page Banner Styling */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.page-banner .az-container {
  position: relative;
  z-index: 2;
}

.page-banner-content h1 {
  font-size: var(--font-80);
  font-weight: 600;
  color: var(--clr-white);
  text-transform: capitalize;
  font-family: var(--header-font);
  margin: 0;
  letter-spacing: -1px;
}

/* About Story Section Styling */
.about-story-section {
  padding: 80px 0;
  background-color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.story-container {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.story-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* The Magic Trick: Alternating Rows */
.story-row:nth-child(even) {
  flex-direction: row-reverse;
}

.story-image-col {
  flex: 1;
}

.story-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.story-content-col {
  flex: 1.2;
}

.story-title {
  margin-bottom: 50px;
  position: relative;
}

.story-title h2 {
  font-size: var(--font-30);
  font-weight: 500;
  color: var(--clr-black);
  font-family: var(--body-font);
}

.story-title h2 span {
  font-family: var(--header-font);
  color: var(--clr-blue);
}

.story-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--clr-black);
}

.story-text p {
  font-size: var(--font-18);
  color: var(--clr-gray);
  line-height: 155%;
  margin-bottom: 10px;
  font-weight: 400;
  opacity: 0.8;
}

.story-text p strong {
  color: var(--clr-gray);
}

/* Decorative Elements */
.about-story-section::before,
.about-story-section::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--clr-blue);
  mask-image: url("../images/star.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/star.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  pointer-events: none;
  /* z-index: 1; */
}

.about-story-section::before {
  top: 15%;
  left: 5%;
}

.about-story-section::after {
  bottom: 10%;
  right: 5%;
}

/* About Services Section Styling */
.about-services-section {
  padding: 80px 0;
  background-color: var(--clr-bg-grey);
}

.about-services-section .section-title {
  max-width: 1300px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-services-section .section-title h2 {
  font-size: var(--font-42);
  margin-bottom: 20px;
}

.about-services-section .section-title h2 span {
  color: var(--clr-blue);
  font-family: var(--header-font);
}

.about-services-section .section-title p {
  max-width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--clr-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-card-title-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-icon {
  background-color: var(--clr-red);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.service-icon img {
  width: 26px;
  height: auto;
}

.service-card-title-box h3 {
  font-size: var(--font-22);
  margin: 0;
  font-family: var(--body-font);
  font-weight: 600;
}

.service-arrow-link img {
  width: 30px;
  height: 30px;
  height: auto;
  transition: transform 0.3s ease;
}

.service-card:hover .service-arrow-link img {
  transform: translate(3px, -3px);
  opacity: 1;
}

.service-card-text p {
  font-size: var(--font-18);
  color: var(--clr-gray);
  line-height: 155%;
  margin-bottom: 14px;
  font-weight: 400;
  opacity: 0.8;
}
.service-card-text p strong {
  color: var(--clr-black);
  font-weight: 500;
}
.service-card-image {
  border-radius: 12px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* ==========================================================================
   Blog Listing Page Styling
   ========================================================================== */

.blog-listing-section {
  padding: 80px 0;
  background-color: var(--clr-white);
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-item.featured {
  width: 100%;
}

.blog-card {
  background: var(--clr-white);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.blog-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card .btn-read-more {
  margin-left: 14px;
}
.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--clr-red);
  color: var(--clr-white);
  padding: 8px 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  font-size: var(--font-14);
  z-index: 2;
}

.blog-date span {
  display: block;
  font-size: var(--font-22);
}

.blog-content {
  padding: 10px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  color: var(--clr-blue);
  font-size: var(--font-14);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.blog-content h3 {
  font-size: var(--font-24);
  margin-bottom: 15px;
  color: var(--clr-black);
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover h3 {
  color: var(--clr-red);
}

.blog-content p {
  font-size: var(--font-16);
  color: var(--clr-gray);
  margin-bottom: 25px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Featured Blog Style */
.blog-card-featured {
  display: flex;
  background-color: var(--clr-bg-grey);
  border-radius: 20px;
  overflow: hidden;
  align-items: center;
}

.featured-img {
  flex: 1.2;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--clr-red);
  color: var(--clr-white);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  z-index: 5;
  box-shadow: 0 10px 20px rgba(225, 30, 41, 0.3);
  pointer-events: none;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card-featured:hover .featured-img img {
  transform: scale(1.05);
}

.featured-content {
  flex: 1;
  padding: 60px;
}

.featured-content .blog-date {
  position: static;
  display: inline-block;
  margin-bottom: 25px;
  padding: 10px 18px;
}

.featured-content h3 {
  font-size: var(--font-42);
  margin-bottom: 20px;
}

.featured-content p {
  font-size: var(--font-18);
  margin-bottom: 35px;
}

/* ==========================================================================
   Modern Editorial Blog Detail Styling
   ========================================================================== */

.blog-header-section {
  padding: 60px 0;
  background-color: var(--clr-bg-blue);
  text-align: center;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--clr-gray);
}

.breadcrumb-nav a {
  color: var(--clr-blue);
  font-weight: 500;
}
.blog-header-content > div {
  display: inline-block;
  background-color: var(--clr-red);
  color: var(--clr-white);
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.blog-header-content > h1 {
  font-size: var(--font-50);
  color: var(--clr-black);
  max-width: 900px;
  margin: 0 auto;
  line-height: 150%;
  font-family: var(--header-font);
  font-weight: 700;
}

.blog-body-section {
  padding: 80px 0;
  background-color: var(--clr-white);
  position: relative;
}

.blog-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.blog-primary-col {
  width: 100%;
}

.featured-media-wrapper {
  margin-bottom: 50px;
}

.main-featured-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.img-caption {
  margin-top: 15px;
  font-size: 14px;
  font-style: italic;
  color: var(--clr-gray);
  text-align: center;
}

.blog-article-content > p:first-of-type::first-letter {
  float: left;
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  color: var(--clr-red);
  margin-right: 15px;
  margin-top: 5px;
  font-family: var(--header-font);
}

.blog-article-content p {
  font-size: var(--font-18);
  line-height: 150%;
  color: var(--clr-gray);
  margin-bottom: 20px;
}
.blog-article-content h2 {
  font-size: var(--font-42);
  color: var(--clr-black);
  margin-bottom: 20px;
  font-weight: 700;
}
.blog-article-content h3 {
  font-size: var(--font-38);
  color: var(--clr-black);
  margin-bottom: 20px;
  font-weight: 700;
}

.content-highlight-box {
  background-color: var(--clr-bg-blue);
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
  border-left: 5px solid var(--clr-blue);
}

.innovation-list {
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 15px;
}

.innovation-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-blue);
}

.innovation-list li span {
  font-size: 16px;
  color: var(--clr-red);
}

.modern-quote {
  margin: 60px 0 0;
  padding: 50px;
  background-color: var(--clr-bg-grey);
  border-radius: 20px;
  text-align: center;
}

.modern-quote p {
  font-family: var(--header-font);
  font-size: 28px;
  font-style: italic;
  color: var(--clr-black) !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
}

.quote-footer {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-red);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.article-footer-meta {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.post-tags {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.post-tags span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--clr-black);
}

.post-tags a {
  padding: 5px 15px;
  background-color: var(--clr-bg-grey);
  border-radius: 4px;
  font-size: 14px;
  color: var(--clr-gray);
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background-color: var(--clr-blue);
  color: var(--clr-white);
}

/* Sidebar Styling */
.blog-sidebar-col {
  height: max-content;
  position: sticky;
  top: 180px;
}

.sidebar-widget {
  background-color: var(--clr-white);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
}
.social-widget {
  margin-bottom: 0;
}
.widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clr-bg-blue);
  position: relative;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--clr-red);
}

.recent-post-list {
  display: grid;
  gap: 20px;
}

.mini-post {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mini-post-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.mini-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-post-content h5 {
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-post-content span {
  font-size: 12px;
  color: var(--clr-gray);
}

.sidebar-social-links {
  display: flex;
  gap: 15px;
}

.sidebar-social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-bg-blue);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.sidebar-social-links a:hover {
  background-color: var(--clr-red);
}

.sidebar-social-links a img {
  width: 18px;
}

.sidebar-social-links a:hover img {
  filter: invert(1) brightness(100);
}
.blog-article-content .content-highlight-box h4 {
  margin-top: 0;
}

/* ==========================================================================
   Rich Blog Content Elements
   ========================================================================== */

.specs-list,
.step-process-list {
  padding: 0;
  margin: 20px 0;
}

.specs-list li {
  list-style: none;
  font-size: 16px;
  color: var(--clr-gray);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.specs-list li::before {
  content: "â€¢";
  position: absolute;
  left: 0;
  color: var(--clr-red);
}

.step-process-list {
  counter-reset: steps-count;
}

.step-process-list li {
  list-style: none;
  counter-increment: steps-count;
  margin-bottom: 15px;
  font-size: 17px;
}

.step-process-list li::before {
  content: counter(steps-count) ". ";
  font-weight: 700;
  color: var(--clr-blue);
}

.toc-wrapper .innovation-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toc-wrapper .innovation-list li {
  padding: 0;
  margin: 0;
}

.toc-wrapper .innovation-list li a {
  color: var(--clr-blue);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.toc-wrapper .innovation-list li a:hover {
  color: var(--clr-red);
  padding-left: 5px;
}

.blog-article-content h4,
.blog-article-content h5,
.blog-article-content h6 {
  color: var(--clr-black);
  margin: 30px 0 15px;
  font-weight: 700;
}

.blog-article-content h4 {
  font-size: 24px;
}
.blog-article-content h5 {
  font-size: 20px;
}
.blog-article-content h6 {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--clr-gray);
}

.blog-article-content a {
  color: var(--clr-red);
  text-decoration: underline;
  font-weight: 500;
}

/* ==========================================================================
   Service Detail Page - Semantic Grid Design (Scoped by Tags)
   ========================================================================== */

.service-detail-section {
  padding: 60px 0;
  background-color: var(--clr-white);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  margin: 0 auto;
}

/* Header (Compact Dashboard) */
.service-detail header {
  grid-column: 1 / -1;
  border-bottom: 2px solid var(--clr-bg-grey);
  padding: 0 0 30px;
  margin-bottom: 30px;
}

.service-detail header nav {
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--clr-gray);
  font-weight: 600;
  text-transform: uppercase;
}

.service-detail header h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--clr-black);
}

.service-detail header p {
  font-size: 17px;
  color: var(--clr-gray);
  margin-bottom: 0;
}

/* Quick Metrics Bar */
.service-detail > ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.service-detail > ul li {
  background-color: var(--clr-bg-grey);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-detail > ul li strong {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--clr-gray);
  letter-spacing: 0.5px;
}

.service-detail > ul li span {
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-blue);
}

/* Main Content Area (Compact Dashboard) */
.service-detail article img,
.service-detail aside img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin: 20px 0;
  object-fit: cover;
}

.service-detail article img {
  max-height: 300px;
}

.service-detail article h2,
.service-detail aside h2 {
  font-size: var(--font-28);
  color: var(--clr-black);
  margin: 30px 0 15px;
  border-left: 5px solid var(--clr-red);
  padding-left: 15px;
}

.service-detail article ul {
  list-style: none;
  padding: 0;
  padding-left: 20px;
}

.service-detail article ul li {
  padding: 10px 0;
  font-size: var(--font-16);
  color: var(--clr-gray);
  border-bottom: 1px solid var(--clr-bg-grey);
  list-style-type: disc;
}

.service-detail article ul li strong {
  color: var(--clr-black);
}

/* Sidebar Dashboard */
.service-detail aside {
  align-self: start;
  position: sticky;
  top: 160px;
  padding: 0 0 0 40px;
  border-left: 2px solid var(--clr-bg-grey);
}

.service-detail aside h2:first-of-type {
  margin-top: 0;
}

.service-detail aside table {
  width: 100%;
  margin-bottom: 25px;
}
.service-detail aside .btn-common {
  width: 100%;
  justify-content: center;
}
.service-detail aside table th,
.service-detail aside table td {
  padding: 12px 0;
  font-size: var(--font-14);
}

.service-detail aside table th {
  color: var(--clr-gray);
  font-weight: 600;
  text-align: left;
}

.service-detail aside table td {
  color: var(--clr-black);
  font-weight: 800;
  text-align: right;
}

.service-detail aside ol {
  list-style: none;
  padding: 0;
  counter-reset: proc-counter;
}

.service-detail aside ol li {
  counter-increment: proc-counter;
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
  font-size: var(--font-14);
  color: var(--clr-gray);
}

.service-detail aside ol li::before {
  content: counter(proc-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background-color: var(--clr-blue);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}

.service-detail aside ol li strong {
  color: var(--clr-black);
  display: block;
  font-size: var(--font-16);
}

.service-detail article h3 {
  font-size: var(--font-24);
  color: var(--clr-blue);
  margin: 40px 0 15px;
}

.service-detail article h4 {
  font-size: var(--font-22);
  color: var(--clr-black);
  margin: 30px 0 12px;
}

.service-detail article h5 {
  font-size: var(--font-22);
  color: var(--clr-red);
  margin: 25px 0 10px;
}

.service-detail article h6 {
  font-size: var(--font-18);
  color: var(--clr-gray);
  margin: 20px 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-detail article ol {
  list-style: none;
  padding: 0;
  counter-reset: custom-ol;
  margin: 30px 0;
}

.service-detail article ol li {
  counter-increment: custom-ol;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: var(--font-16);
  color: var(--clr-gray);
  line-height: 1.6;
}

.service-detail article ol li::before {
  content: counter(custom-ol, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--header-font);
  font-weight: 800;
  color: var(--clr-red);
  font-size: var(--font-14);
}

.service-detail article a {
  color: var(--clr-red);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-detail article a:hover {
  border-bottom-color: var(--clr-red);
  padding-bottom: 2px;
}
/* Technical Specification Table */
.service-detail article table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--clr-bg-grey);
}

.service-detail article table thead {
  background-color: var(--clr-blue);
  color: var(--clr-white);
}

.service-detail article table th {
  padding: 10px;
  text-align: left;
  font-size: var(--font-14);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-detail article table td {
  padding: 10px;
  font-size: var(--font-14);
  color: var(--clr-gray);
  border-bottom: 1px solid var(--clr-bg-grey);
}

.service-detail article table tr:nth-child(even) {
  background-color: #fcfcfc;
}

.service-detail article table tr:last-child td {
  border-bottom: none;
}

/* Responsive Table Utility */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 25px;
  border-radius: 12px;
}

.table-responsive table {
  min-width: 600px;
  margin: 0 !important;
}

/* Contact Page Design */
.contact-main-section {
  padding: 100px 0;
  background-color: var(--clr-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
}
.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-form label {
  font-size: var(--font-14);
  font-weight: 700;
  color: var(--clr-black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--clr-bg-grey);
  border-radius: 8px;
  font-size: var(--font-16);
  transition: all 0.3s ease;
  background-color: #fcfcfc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--clr-red);
  outline: none;
  background-color: var(--clr-white);
  box-shadow: 0 5px 15px rgba(234, 32, 39, 0.05);
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-info-card {
  background-color: var(--clr-bg-grey);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.info-card-header h3 {
  font-size: var(--font-24);
  margin-bottom: 30px;
  display: flex;
  gap: 8px;
}

.contact-detail-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-icon {
  width: 45px;
  height: 45px;
  background-color: var(--clr-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-icon img {
  width: 20px;
}

.detail-text strong {
  display: block;
  font-size: var(--font-14);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-red);
  margin-bottom: 5px;
}

.detail-text p {
  font-size: var(--font-16);
  color: var(--clr-black);
  margin: 0;
  line-height: 1.5;
}

.detail-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-text a:hover {
  color: var(--clr-red);
}

.contact-map-box {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--clr-bg-grey);
}

/* Contact Map & Social Section */
.contact-social-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-social-header h3 {
  font-size: var(--font-30);
  margin-bottom: 25px;
}

.contact-social-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-social-links li {
  padding: 0;
  margin: 0;
}

.contact-social-links a {
  width: 55px;
  height: 55px;
  background-color: var(--clr-bg-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-social-links a:hover {
  background-color: var(--clr-red);
  transform: translateY(-5px);
}

.contact-social-links a:hover img {
  filter: brightness(0) invert(1);
}

.contact-social-links img {
  width: 22px;
  transition: all 0.3s ease;
}

.full-width-map {
  width: 100%;
  height: 500px;
  filter: grayscale(0.2);
  transition: filter 0.5s ease;
}

.full-width-map:hover {
  filter: grayscale(0);
}

.full-width-map iframe {
  display: block;
}

/* Contact Social Card (Sidebar) */
.contact-social-card {
  background-color: var(--clr-bg-grey);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.contact-social-card h3 {
  font-size: var(--font-22);
  margin-bottom: 20px;
}

/* Premium Social Engagement Block */
.contact-info-card.social-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-bg-grey);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-info-card.social-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(234, 32, 39, 0.1);
}

.contact-info-card.social-card h3 {
  font-size: var(--font-22);
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.contact-info-card.social-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--clr-red);
  border-radius: 2px;
}

.contact-social-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-social-links li {
  padding: 0;
  margin: 0;
}

.contact-social-links a {
  width: 50px;
  height: 50px;
  background-color: var(--clr-bg-grey);
  color: var(--clr-black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-22);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
}

.contact-social-links a img {
  width: 18px;
  filter: brightness(0);
}

.contact-social-links a:hover {
  background-color: var(--clr-red);
  color: var(--clr-white);
  border-color: var(--clr-red);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(234, 32, 39, 0.15);
}

.contact-social-links a:hover img {
  filter: brightness(0) invert(1);
}

/* Decorative Background element for card */
.contact-info-card.social-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 80px;
  height: 80px;
  background-color: var(--clr-bg-grey);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}
