/*
 * FASPRO UNIFIED CUSTOM CSS - CONSOLIDATED & OPTIMIZED
 * All conflicts resolved - Use this single file after bootstrap.css
 * CHANGES: Unified font family, removed duplicate code, improved mobile experience
 */

/* ==========================================
   1. COLOR PALETTE & ROOT VARIABLES
   ========================================== */
:root {
  /* Consolidated color variables */
  --primary-blue: #005b96;
  --dark-blue: #03396c;
  --light-blue: #6497b1;
  --accent-blue: #0288d1;
  --white: #ffffff;
  --light-gray: #f5f5f6;
  --dark-gray: #2c3e50;
  --border-gray: #e0e0e0;
  --text-gray: #555;

  /* Typography scale using consistent font */
  --font-primary: "Exo 2", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 42px;
  --font-size-4xl: 52px;

  /* Spacing scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Transition defaults */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   2. GLOBAL TYPOGRAPHY & BASE STYLES
   ========================================== */
/* Unified to single font family - Exo 2 */
body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.8;
  letter-spacing: 0.3px;
  color: var(--text-gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  letter-spacing: -0.5px;
  font-weight: 600;
  margin-top: 0;
}

p {
  margin-bottom: var(--space-lg);
  color: #4a4a4a;
}

a {
  color: var(--primary-blue);
  transition: color var(--transition-base);
  text-decoration: none;
}

a:hover {
  color: var(--dark-blue);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Removed overly broad transition that was causing performance issues */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ==========================================
   3. TOP BAR - CONTACT STRIP (IMPROVED MOBILE)
   ========================================== */
/* .top-bar { */
/*   background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%); */
/*   color: var(--white); */
/*   padding: 10px 0; */
/*   font-size: var(--font-size-sm); */
/*   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
/* } */

/* .top-bar .container { */
/*   max-width: 1200px; */
/*   margin: 0 auto; */
/*   padding: 0 20px; */
/*   display: flex; */
/*   justify-content: space-between; */
/*   align-items: center; */
/* } */

/* .top-bar-left { */
/*   display: flex; */
/*   gap: 30px; */
/*   align-items: center; */
/* } */

/* .contact-item { */
/*   display: flex; */
/*   align-items: center; */
/*   gap: var(--space-sm); */
/*   color: var(--white); */
/*   text-decoration: none; */
/*   transition: all var(--transition-base); */
/* } */

/* .contact-item i { */
/*   font-size: var(--font-size-sm); */
/*   opacity: 0.9; */
/* } */

/* .contact-item:hover { */
/*   opacity: 0.8; */
/*   transform: translateY(-1px); */
/*   color: white; */
/* } */

/* .top-bar-right { */
/*   display: flex; */
/*   gap: 15px; */
/*   align-items: center; */
/* } */

/* .quote-btn { */
/*   background: var(--accent-blue); */
/*   color: var(--white); */
/*   padding: 6px 18px; */
/*   border-radius: 4px; */
/*   text-decoration: none; */
/*   font-weight: 600; */
/*   font-size: 13px; */
/*   letter-spacing: 0.5px; */
/*   transition: all var(--transition-base); */
/*   border: 2px solid transparent; */
/* } */

/* .quote-btn:hover { */
/*   background: var(--white); */
/*   color: var(--accent-blue); */
/*   border-color: var(--white); */
/*   transform: translateY(-2px); */
/*   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
/* } */

/* .quote-btn i { */
/*   margin-left: 6px; */
/* } */


/* ==========================================
   4. MAIN HEADER & NAVIGATION
   ========================================== */
.main-header,
#header.header2 .header-area {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-base);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
}

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

.logo-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(0, 91, 150, 0.2);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .company-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-blue);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-text .tagline {
  font-size: 11px;
  color: var(--light-blue);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Navigation Menu */
.main-nav,
#nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > li,
#nav ul li {
  position: relative;
}

.main-nav > li > a,
#header.header2 #nav a,
.post.post3 h3 a,
.team h3 {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition-base);
  position: relative;
}

.main-nav > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-blue);
  transition: width var(--transition-base);
}

.main-nav > li > a:hover,
.main-nav > li > a.active,
#nav ul li > a:hover,
#nav ul li.actived > a {
  color: var(--primary-blue) !important;
}

.main-nav > li > a:hover::after,
.main-nav > li > a.active::after {
  width: 100%;
}

.main-nav > li > a i {
  font-size: 10px;
  transition: transform var(--transition-base);
}

.main-nav > li:hover > a i {
  transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown,
#nav .drop-down {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  margin-top: 15px;
  border-top: 3px solid var(--accent-blue);
}

.main-nav > li:hover .dropdown,
#nav ul li:hover .drop-down {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li,
#nav .drop-down li {
  list-style: none;
}

.dropdown a,
#nav .drop-down a {
  display: block;
  padding: 12px 24px;
  color: var(--dark-gray);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.dropdown a:hover,
#nav .drop-down a:hover {
  background: var(--light-gray);
  color: var(--primary-blue) !important;
  border-left-color: var(--accent-blue);
  padding-left: 30px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: var(--dark-blue);
  border-radius: 3px;
  transition: all var(--transition-base);
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   5. HERO SLIDER SECTION
   ========================================== */
.mt-mainslider {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  line-height: 34px;
}

.mt-mainslider .slide {
  height: 85vh;
  min-height: 600px;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(3, 57, 108, 0.3);
  pointer-events: none;
}

.mt-mainslider .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  max-width: 800px;
  padding: 60px 20px;
  text-align: center;
  transform: translate(-50%, -50%);
}

/* Unified font for hero heading */
.mt-mainslider .heading {
  font-family: var(--font-primary);
  font-size: var(--font-size-4xl);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mt-mainslider p {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
  color: #fff;
}

.mt-mainslider .post-btn,
.post-btn {
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all var(--transition-slow);
  box-shadow: 0 2px 8px rgba(0, 91, 150, 0.15);
  display: inline-block;
  text-decoration: none;
}

.mt-mainslider .post-btn {
  margin-bottom: 10px;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
}

.mt-mainslider .post-btn:hover,
.post-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 91, 150, 0.25);
}

.mt-mainslider .post-btn:hover {
  background: #fff;
  color: var(--primary-blue);
}

.post-btn {
  color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
  background-color: transparent;
}

.post-btn:hover {
  color: var(--white);
  background-color: var(--dark-blue);
}

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

.post-btn.white:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.mt-mainslider .post-btn .icon-right-arrow,
.mt-mainslider .post-btn .fa {
  margin-left: 8px;
  font-size: 16px;
}

/* Slider Pagination - Progress Bar Style */
.mt-mainslider .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
}

.mt-mainslider .slick-dots li {
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
}

.mt-mainslider .slick-dots li button {
  width: 40px;
  height: 4px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  font-size: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.mt-mainslider .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.6);
}

.mt-mainslider .slick-dots li.slick-active button {
  width: 60px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.mt-mainslider .slick-dots li.slick-active button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--accent-blue);
  animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.mt-mainslider .slick-cloned {
  display: none !important;
}

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

/* CTA button overrides */
a.btn-primary {
  background-color: transparent;
  border-color: transparent;
}

a.btn-primary:hover {
  background-color: transparent;
  border-color: transparent;
}

a.btn-secondary:hover {
  background-color: transparent;
  border-color: transparent;
  color: white;
}

/* ==========================================
   6. ABOUT SECTION
   ========================================== */
.aboutus-sec {
  padding: 80px 0;
}

.main-heading {
  margin-bottom: 40px;
}

.main-heading .heading {
  font-size: var(--font-size-3xl);
  line-height: 1.3;
  color: var(--dark-blue);
  font-weight: 300;
}

.main-heading .clr,
.main-heading .clr2 {
  color: var(--primary-blue);
  font-weight: 700;
}

.aboutus-sec p {
  font-size: var(--font-size-base);
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

/* About Section Content Blocks */
.about-block {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.about-block:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 91, 150, 0.12);
}

.about-subtitle {
  font-size: var(--font-size-lg);
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-subtitle i {
  color: var(--accent-blue);
  font-size: 22px;
}

.about-block p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-list li i {
  color: var(--accent-blue);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.about-list li strong {
  color: var(--dark-blue);
}

/* About Section Image Slider */
.about-slider {
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.about-slider .slide {
  height: 800px !important;
  min-height: 600px;
  overflow: hidden;
  flex: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #f5f5f6;
}

.about-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.about-slider .slide:hover img {
  transform: scale(1.05);
}

/* Make both columns equal height */
.aboutus-sec .row {
  display: flex;
  flex-wrap: wrap;
}

.aboutus-sec .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.aboutus-sec .col-sm-6:last-child {
  display: flex;
}

/* ==========================================
   7. SERVICES SECTION
   ========================================== */
.what-sec {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.what-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue), var(--light-blue));
}

.what-sec .main-heading {
  margin-bottom: 60px;
  position: relative;
}

.what-sec .main-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--accent-blue);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.wedo-slider {
  overflow: hidden;
  position: relative;
  padding: 0 50px;
}

.wedo-slider .slide {
  outline: none;
}

.wedo-slider .slick-slide {
  padding: 0 20px;
  height: auto;
  transition: opacity var(--transition-base);
  opacity: 1 !important;
}

.wedo-slider .slick-list {
  margin: 0 -20px;
  padding: 30px 0 60px;
}

.wedo-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.wedo-slider .slick-slide > div {
  height: 100%;
}

.wedo-slider .post {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex !important;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
}

.wedo-slider .post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.wedo-slider .post:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 91, 150, 0.2);
  border-color: var(--accent-blue);
}

.wedo-slider .post:hover::before {
  transform: scaleX(1);
}

.wedo-slider .img-holder {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.wedo-slider .img-holder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 91, 150, 0) 0%, rgba(0, 91, 150, 0.1) 50%, rgba(0, 91, 150, 0.3) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wedo-slider .post:hover .img-holder::before {
  opacity: 1;
}

.wedo-slider .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1);
}

.wedo-slider .post:hover .img-holder img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.wedo-slider .txt-holder {
  padding: 35px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wedo-slider h3 {
  font-size: var(--font-size-lg);
  line-height: 1.4;
  margin-bottom: 16px;
/*   color: var(--dark-blue); */
/*   font-weight: 700; */
/*   letter-spacing: 0.5px; */
/*   position: relative; */
/*   padding-bottom: 12px; */
/* } */

/* .wedo-slider h3::after { */
/*   content: ""; */
/*   position: absolute; */
/*   bottom: 0; */
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-blue);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.wedo-slider .post:hover h3::after {
  width: 60px;
}

.wedo-slider h3 a {
  color: var(--dark-blue);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wedo-slider h3 a::after {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
  color: var(--accent-blue);
  font-weight: bold;
}

.wedo-slider .post:hover h3 a {
  color: var(--primary-blue);
}

.wedo-slider .post:hover h3 a::after {
  opacity: 1;
  transform: translateX(0);
}

.wedo-slider p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  flex-grow: 1;
}

/* Services Slider Arrows */
.services-slider .slick-arrow {
  position: absolute;
  top: -80px;
  transform: translateY(-50%);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  z-index: 10;
  width: auto;
  height: auto;
  font-size: 0;
  text-align: center;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.services-slider .slick-arrow:after {
  content: "NEXT";
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--dark-blue);
  font-family: var(--font-primary);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.services-slider .slick-prev:after {
  content: "PREV";
}

.services-slider .slick-arrow:before {
  content: "";
  position: relative;
  width: 60px;
  height: 1.5px;
  background: rgba(0, 91, 150, 0.6);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.services-slider .slick-next:before {
  background: linear-gradient(
    to right,
    rgba(0, 91, 150, 0.6) 0%,
    rgba(0, 91, 150, 0.6) calc(100% - 8px),
    transparent calc(100% - 8px)
  );
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    calc(100% - 8px) 0,
    100% 50%,
    calc(100% - 8px) 100%,
    calc(100% - 8px) 100%,
    0 100%
  );
}

.services-slider .slick-prev:before {
  background: linear-gradient(
    to left,
    rgba(0, 91, 150, 0.6) 0%,
    rgba(0, 91, 150, 0.6) calc(100% - 8px),
    transparent calc(100% - 8px)
  );
  clip-path: polygon(
    100% 0,
    calc(0% + 8px) 0,
    calc(0% + 8px) 0,
    0% 50%,
    calc(0% + 8px) 100%,
    calc(0% + 8px) 100%,
    100% 100%
  );
}

.services-slider .slick-arrow:hover:before {
  background: rgba(0, 91, 150, 1);
  width: 70px;
}

.services-slider .slick-next:hover:before {
  background: linear-gradient(
    to right,
    rgba(0, 91, 150, 1) 0%,
    rgba(0, 91, 150, 1) calc(100% - 8px),
    transparent calc(100% - 8px)
  );
}

.services-slider .slick-prev:hover:before {
  background: linear-gradient(
    to left,
    rgba(0, 91, 150, 1) 0%,
    rgba(0, 91, 150, 1) calc(100% - 8px),
    transparent calc(100% - 8px)
  );
}

.services-slider .slick-arrow:hover:after {
  color: var(--primary-blue);
  letter-spacing: 2px;
}

.services-slider .slick-prev {
  right: 80px;
  left: auto;
}

.services-slider .slick-next {
  right: 20px;
}

.wedo-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  z-index: 10;
  position: absolute;
  bottom: 40px;
}

.wedo-slider .slick-dots li {
  margin: 0;
  padding: 0;
}

.wedo-slider .slick-dots li button {
  width: 100px;
  height: 3px;
  padding: 0;
  border: none;
  background: rgba(0, 91, 200, 0.9);
  border-radius: 1px;
  font-size: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.wedo-slider .slick-dots li button:hover {
  background: var(--light-blue);
}

.wedo-slider.slick-dots li.slick-active button {
  width: 60px;
  background: rgba(25, 25, 155, 0.8);
}

.wedo-slider.slick-dots li.slick-active button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--dark-blue);
  animation: progressBar 7s linear forwards;
}

/* Services Section Alternative */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #005b96, #0288d1, #6497b1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: var(--font-size-3xl);
  color: #03396c;
  font-weight: 300;
}

.section-heading .highlight {
  color: #005b96;
  font-weight: 700;
}

/* Slider Wrapper */
.services-slider {
  margin: 0 auto;
  max-width: 100%;
}

/* Service Card */
.service-card {
  margin: 15px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-base);
  background-size: cover;
  background-position: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card:nth-child(1) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("images/service-vertical-access.webp");
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("images/service-facade-maintenance.webp");
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(3) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("images/service-steel-fabrication.webp");
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(4) {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("images/service-material-hoisting.webp");
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(5) {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("images/service-equipment-rental.webp");
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(6) {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("images/service-training.webp");
  background-size: cover;
  background-position: center;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: transform 0.6s ease;
  z-index: 0;
}

.service-card:hover::before {
  transform: scale(1.1);
}

/* Service Overlay */
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3, 57, 108, 0.6) 0%, rgba(0, 91, 150, 0.4) 50%, rgba(2, 136, 209, 0.7) 100%);
  z-index: 1;
  transition: background var(--transition-base);
}

.service-card:hover .service-overlay {
  background: linear-gradient(180deg, rgba(3, 57, 108, 0.8) 0%, rgba(0, 91, 150, 0.7) 50%, rgba(2, 136, 209, 0.9) 100%);
}

.service-overlay .img-responsive,
.service-overlay img.img-responsive {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
}

/* Service Content */
.service-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.service-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  margin: 0;
}

.service-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: white;
  opacity: 0;
  transition: opacity var(--transition-base);
  margin: 20px 0;
}

.service-card:hover .service-description {
  opacity: 1;
}

.service-link {
  color: white;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover .service-link {
  opacity: 1;
}

a.service-link:hover {
  color: white;
}

/* Slick Arrows */
.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  z-index: 10;
}

.slick-prev:before,
.slick-next:before {
  color: #005b96;
  font-size: 20px;
}

.slick-prev {
  left: -25px;
}

.slick-next {
  right: -25px;
}

/* Slick Dots */
.services-slider .slick-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.slick-dots li button:before {
  font-size: 12px;
  color: #005b96;
}

.slick-dots li.slick-active button:before {
  color: #0288d1;
}

/* ==========================================
   8. PROCESS & INFO BOXES
   ========================================== */
.info-box,
.post {
  padding: 40px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-slow);
  height: 100%;
}

.info-box:hover,
.post:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.info-box h3 {
  font-size: var(--font-size-xl);
  color: var(--dark-blue);
  margin-bottom: 16px;
  font-weight: 600;
}

.info-box h3 .num {
  color: var(--light-blue);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-right: 12px;
}

.info-box p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================
   9. PROJECTS / PORTFOLIO SECTION
   ========================================== */
.bg-full {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#isotop-holder {
  overflow: hidden;
}

.item {
  overflow: hidden;
  position: relative;
}

.item.style3 {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  background: #fff;
}

.item.style3:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.item.style3 .bg-main {
  position: relative;
  overflow: hidden;
}

.item.style3 img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.item.style3:hover img {
  transform: scale(1.1);
}

.item.style3 .over {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 91, 150, 0.92) 0%, rgba(2, 136, 209, 0.88) 100%);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.item.style3:hover .over {
  opacity: 1;
}

.item.style3 h4 {
  font-size: var(--font-size-xl);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.item.style3:hover h4 {
  transform: translateY(0);
}

.item.style3 p {
  color: #fff;
  opacity: 0.95;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}

.item.style3:hover p {
  transform: translateY(0);
}

.item.style3 .zoom {
  background: var(--primary-blue);
  font-size: 41px;
  line-height: 90px;
  width: 90px;
  height: 90px;
  box-shadow: -1px 3px 10px 0px rgba(50, 48, 49, 0.5);
  right: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ==========================================
   10. STATS / COUNTER SECTION
   ========================================== */
.counter-sec {
  padding: 60px 0;
}

.counter-sec .bg-grey {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.counter-sec .bg-grey:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.counter-sec .title {
  font-size: var(--font-size-base);
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.counter-sec .count,
.count {
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-grey3 {
  background-image: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23005b96' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 767px) {
    .counter-sec .row {
        display: flex;
        flex-wrap: wrap;
    }

    .counter-sec .mar-b-xs {
        display: flex; /* Makes the column a flex container */
    }

    .counter-sec .bg-grey {
        width: 100%;    /* Ensures the grey box fills the column width */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centers content vertically */
    }
}

/* ==========================================
   11. CONTACT FORM
   ========================================== */
.contact-form .form-control {
  background-color: var(--white);
  color: var(--dark-blue);
  padding: 16px 20px;
  font-size: var(--font-size-base);
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 91, 150, 0.1);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: #999;
  opacity: 1;
}

.contact-form .form-control:-ms-input-placeholder {
  color: #999;
}

.contact-form .form-control::-ms-input-placeholder {
  color: #999;
}

/* ==========================================
   12. FOOTER SECTION
   ========================================== */
.bg-dark,
#footer.footer4,
.footer-holder.bg-dark {
  background-color: var(--dark-blue);
}

.footer-area {
  padding: 60px 0 40px;
}

.f-logo {
  margin-bottom: 30px;
}

.badge-link {
  color: #a6e1fe;
  transition: color var(--transition-base);
}

.badge-link:hover {
  color: #f4f7ff;
  opacity: 0.8;
  transform: translateY(-1px);
}

.trust-badges p {
  font-size: var(--font-size-lg);
  color: var(--white);
}

.social-network,
#footer.footer4 .social-network {
  display: flex;
  gap: 15px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-network a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: all var(--transition-base);
  font-size: 18px;
}

.social-network a:hover {
  background: var(--accent-blue);
  transform: translateY(-3px);
}

.footer-holder p {
  font-size: var(--font-size-base);
  color: #f4f7ff;
}

/* ==========================================
   13. PARTNERS & CLIENTS SECTION
   ========================================== */
.partners-clients-sec {
  padding: 80px 0;
  background: #f8f9fa;
}

.partners-row,
.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

/* Partner Badge */
.partner-badge {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border: 2px solid transparent;
}

.partner-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 91, 150, 0.18);
  border-color: var(--accent-blue);
}

.partner-badge .logo-container {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f9fa;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  overflow: hidden; /* ensures nothing spills out */
}

.partner-badge .logo-container img {
  /* max-width: 90%; */
  /* max-height: 90%; */
  /* width: auto; */
  /* height: auto; */
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  transition: all var(--transition-base);
}


.partner-badge:hover .logo-container img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-badge h4 {
  color: var(--primary-blue);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: auto;
  line-height: 1.3;
}

.partner-badge p {
  color: var(--text-gray);
  font-size: var(--font-size-xs);
  margin: 0;
  line-height: 1.4;
}

/* Client Logo Badge */
.client-logo {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  height: 160px;
  min-height: 160px;
  max-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.client-logo:hover {
  border-color: #0288d1;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(2, 136, 209, 0.15);
}

.client-logo img {
  max-width: 200px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: all var(--transition-base);
}

.client-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.client-logo span {
  color: var(--dark-blue);
  font-weight: 600;
  font-size: var(--font-size-base);
  display: block;
}


/* Ensure equal height columns */
.partners-row > [class*="col-"],
.clients-row > [class*="col-"] {
  display: flex;
  margin-bottom: 20px;
}

/* Mobile alignment fixes for partners section */
@media (max-width: 991px) {
  .partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
  }

  .partners-row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .partners-row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .partners-row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .partners-row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .partner-badge {
    min-height: 140px;
    padding: 12px 8px;
      width: 255.5px
  }

  .partner-badge .logo-container {
    /* height: 55px; */
    height: 70px;
    margin-bottom: 8px;
    padding: 5px;
  }

  .partner-badge h4 {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .partner-badge p {
    font-size: 10px;
  }
}


/* ==========================================
   14. MOBILE RESPONSIVE STYLES
   ========================================== */

/* Improved mobile experience - consolidated and enhanced */

/* Tablet and below (max-width: 992px) */
@media (max-width: 992px) {
  /* Top Bar - Improved stacking */
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0 15px;
  }

  .top-bar-left {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  /* Hide duplicate contact items on tablet */
  .top-bar-left .contact-item:nth-child(n + 4) {
    display: none;
  }

  .top-bar-right {
    width: 100%;
    justify-content: center;
  }

  /* Header */
  .header-container {
    min-height: 70px;
    padding: 0 15px;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .logo-text .company-name {
    font-size: 22px;
  }

  .logo-text .tagline {
    font-size: 10px;
  }

  /* Mobile Navigation */
  .main-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
    gap: 0;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav > li {
    width: 100%;
    border-bottom: 1px solid var(--border-gray);
  }

  .main-nav > li > a {
    padding: 15px 0;
    font-size: 16px;
  }

  .main-nav > li > a::after {
    display: none;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0 0 0 20px;
    display: none;
    border-top: none;
  }

  .main-nav > li.open .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 12px 0;
    border-left: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

/* Mobile Navigation */
  .main-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-nav.active {
    display: flex;
    transform: translateX(0);
  }

  .main-nav > li {
    width: 100%;
    border-bottom: 1px solid var(--border-gray);
    opacity: 0;
    animation: slideInFromLeft 0.3s ease forwards;
  }

  .main-nav.active > li:nth-child(1) { animation-delay: 0.05s; }
  .main-nav.active > li:nth-child(2) { animation-delay: 0.1s; }
  .main-nav.active > li:nth-child(3) { animation-delay: 0.15s; }
  .main-nav.active > li:nth-child(4) { animation-delay: 0.2s; }
  .main-nav.active > li:nth-child(5) { animation-delay: 0.25s; }

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

  .main-nav > li > a {
    padding: 15px 0;
    font-size: 16px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav > li > a::after {
    display: none;
  }

  /* Dropdown chevron indicator */
  .main-nav > li.has-dropdown > a i {
    transition: transform 0.3s ease;
    font-size: 12px;
    opacity: 0.6;
  }

  .main-nav > li.has-dropdown.open > a i {
    transform: rotate(180deg);
    opacity: 1;
  }

  /* Dropdown menu styling */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    padding: 0;
    display: none;
    border-top: none;
    background: #f8f9fa;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-nav > li.open .dropdown {
    display: block;
    max-height: 500px;
    animation: dropdownSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes dropdownSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dropdown li {
    opacity: 0;
    animation: fadeInUp 0.3s ease forwards;
  }

  .main-nav > li.open .dropdown li:nth-child(1) { animation-delay: 0.05s; }
  .main-nav > li.open .dropdown li:nth-child(2) { animation-delay: 0.1s; }
  .main-nav > li.open .dropdown li:nth-child(3) { animation-delay: 0.15s; }
  .main-nav > li.open .dropdown li:nth-child(4) { animation-delay: 0.2s; }
  .main-nav > li.open .dropdown li:nth-child(5) { animation-delay: 0.25s; }
  .main-nav > li.open .dropdown li:nth-child(6) { animation-delay: 0.3s; }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dropdown a {
    padding: 12px 20px;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 5px 10px;
  }

  .dropdown a:hover {
    background: white;
    border-left-color: var(--accent-blue);
    transform: translateX(5px);
  }

  /* Hero Slider */
  .mt-mainslider .slide {
    height: 70vh;
    min-height: 500px;
  }

  .mt-mainslider .caption {
    max-width: 90%;
    padding: 40px 20px;
  }

  .mt-mainslider .heading {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .mt-mainslider p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .mt-mainslider .post-btn {
    padding: 14px 32px;
    font-size: 14px;
  }

  /* About Section */
  .aboutus-sec {
    padding: 60px 0;
  }

  .aboutus-sec .row {
    display: block;
  }

  .aboutus-sec .row > [class*="col-"] {
    display: block;
  }

  .about-slider {
    min-height: 500px;
    margin-top: 40px;
  }

  .about-slider .slide {
    min-height: 500px;
    height: 500px !important;
  }

  /* Services Section */
  .what-sec,
  .services-section {
    padding: 60px 0;
  }

  .main-heading .heading {
    font-size: 32px;
  }

  .wedo-slider {
    padding: 0 15px;
  }

  .wedo-slider .slick-arrow,
  .services-slider .slick-arrow {
    display: none !important;
  }

  .wedo-slider .slick-dots {
    position: static;
    margin-top: 30px;
  }

  /* Service Cards */
  .service-card {
    margin: 10px;
    height: 350px;
  }

  .service-title {
    font-size: 20px;
  }

  .service-description {
    font-size: 14px;
    opacity: 1;
  }

  .service-link {
    opacity: 1;
  }

  /* Process Section */
  .info-box {
    padding: 30px;
    margin-bottom: 20px;
  }

  .info-box h3 {
    font-size: 20px;
  }

  .info-box h3 .num {
    font-size: 28px;
  }

  /* Stats Section */
  .counter-sec {
    padding: 40px 0;
  }

  .counter-sec .count {
    font-size: 42px;
  }

  .counter-sec .title {
    font-size: 14px;
  }

  /* Footer */
  .footer-area {
    padding: 40px 0 30px;
  }

  .trust-badges p {
    font-size: 16px;
  }

  /* Partners Section */
  .partner-badge {
    min-height: 200px;
    padding: 20px 15px;
  }

  .partner-badge .logo-container {
    height: 85px;
  }

  .client-logo {
    min-height: 120px;
    height: 120px;
    max-height: 120px;
    padding: 20px 15px;
  }

  .client-logo img {
    max-height: 70px;
  }
}

/* Mobile Phones (max-width: 768px) */
@media (max-width: 768px) {
  /* Top Bar - Further simplified */
  .top-bar {
    padding: 8px 0;
    font-size: 12px;
  }

  /* Show only essential contact info on mobile */
  .top-bar-left {
    gap: 12px;
  }

  .top-bar-left .contact-item {
    font-size: 12px;
  }

  .top-bar-left .contact-item span {
    display: none;
  }

  .quote-btn {
    padding: 5px 12px;
    font-size: 11px;
  }

  /* Header */
  .header-container {
    min-height: 60px;
    padding: 0 15px;
  }

  .logo {
    gap: 10px;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .logo-text .company-name {
    font-size: 18px;
  }

  .logo-text .tagline {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .main-nav {
    top: 60px;
    max-height: calc(100vh - 60px);
  }

  /* Hero Slider */
  .mt-mainslider .slide {
    height: 60vh;
    min-height: 450px;
  }

  .mt-mainslider .caption {
    padding: 30px 15px;
  }

  .mt-mainslider .heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .mt-mainslider p {
    font-size: 15px;
    line-height: 1.5;
  }

  .mt-mainslider .post-btn {
    padding: 12px 28px;
    font-size: 13px;
  }

  .mt-mainslider .slick-dots {
    bottom: 20px;
  }

  .mt-mainslider .slick-dots li button {
    width: 30px;
  }

  /* Sections */
  .aboutus-sec,
  .what-sec,
  .services-section {
    padding: 50px 0;
  }

  .main-heading {
    margin-bottom: 30px;
  }

  .main-heading .heading {
    font-size: 26px;
  }

  .container {
    padding: 0 20px;
  }

  /* About blocks */
  .about-block {
    padding: 20px;
  }

  .about-subtitle {
    font-size: 18px;
  }

  .about-list li {
    font-size: 14px;
  }

  .about-slider {
    min-height: 400px;
  }

  .about-slider .slide {
    min-height: 400px;
    height: 400px !important;
  }

  /* Service Cards */
  .service-card {
    height: 320px;
    margin: 8px;
  }

  .service-content {
    padding: 30px 25px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-description {
    font-size: 14px;
    margin: 15px 0;
  }

  /* Process Info Boxes */
  .info-box {
    padding: 25px;
  }

  .info-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .info-box h3 .num {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
  }

  .info-box p {
    font-size: 14px;
  }

  /* Stats */
  .counter-sec .count {
    font-size: 36px;
  }

  .counter-sec .title {
    font-size: 13px;
  }

  .counter-sec .bg-grey {
    margin-bottom: 15px;
  }

  /* Footer */
  .trust-badges p {
    font-size: 14px;
  }

  .badges {
    flex-direction: column;
    gap: 10px;
  }

  .social-network {
    gap: 12px;
  }

  .social-network a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-holder p {
    font-size: 14px;
  }

  /* Partners Section */
  .partners-clients-sec {
    padding: 60px 0;
  }

  .partner-badge {
    min-height: 180px;
    padding: 18px 12px;
    width:255.5px
  }

  .partner-badge .logo-container {
    height: 75px;
    margin-bottom: 12px;
  }

  .partner-badge h4 {
    font-size: 14px;
  }

  .partner-badge p {
    font-size: 11px;
  }

  .client-logo {
    min-height: 110px;
    height: 110px;
    max-height: 110px;
    padding: 18px 12px;
  }

  .client-logo img {
    max-height: 60px;
  }

  .client-logo span {
    font-size: 14px;
  }
}

/* Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
  /* Ultra-compact top bar for small screens */
  .top-bar {
    padding: 6px 0;
  }

  .top-bar-left {
    gap: 8px;
  }

  .top-bar-left .contact-item i {
    font-size: 16px;
  }

  .top-bar-right {
    margin-top: 5px;
  }

  .quote-btn {
    padding: 4px 10px;
    font-size: 10px;
  }

  /* Header */
  .header-container {
    min-height: 55px;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
    border-radius: 6px;
  }

  .logo-text .company-name {
    font-size: 16px;
  }

  .logo-text .tagline {
    display: none;
  }

  /* Hero Slider */
  .mt-mainslider .slide {
    height: 55vh;
    min-height: 400px;
  }

  .mt-mainslider .heading {
    font-size: 24px;
  }

  .mt-mainslider p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .mt-mainslider .post-btn {
    padding: 10px 24px;
    font-size: 12px;
    width: 100%;
    text-align: center;
  }

  /* Headings */
  .main-heading .heading {
    font-size: 22px;
  }

  /* About slider */
  .about-slider {
    min-height: 350px;
  }

  .about-slider .slide {
    min-height: 350px;
    height: 350px !important;
  }

  /* Service Cards */
  .service-card {
    height: 280px;
  }

  .service-content {
    padding: 25px 20px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-description {
    font-size: 13px;
  }

  /* Process */
  .info-box {
    padding: 20px;
  }

  /* Stats */
  .counter-sec .count {
    font-size: 32px;
  }

  /* Partners Section */
  .partner-badge {
    min-height: 160px;
    padding: 15px 10px;
    width: 185px;
  }

  .partner-badge .logo-container {
    height: 65px;
    margin-bottom: 10px;
  }

  .partner-badge h4 {
    font-size: 13px;
  }

  .client-logo {
    min-height: 100px;
    height: 100px;
    max-height: 100px;
    padding: 15px 10px;
  }

  .client-logo img {
    max-height: 50px;
  }

  .client-logo span {
    font-size: 13px;
  }
}

/* ==========================================
   15. UTILITY CLASSES
   ========================================== */
/* Added utility classes for consistency */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: var(--space-sm);
}
.mt-2 {
  margin-top: var(--space-md);
}
.mt-3 {
  margin-top: var(--space-lg);
}
.mt-4 {
  margin-top: var(--space-xl);
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: var(--space-sm);
}
.mb-2 {
  margin-bottom: var(--space-md);
}
.mb-3 {
  margin-bottom: var(--space-lg);
}
.mb-4 {
  margin-bottom: var(--space-xl);
}

.py-1 {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}
.py-2 {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}
.py-3 {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.py-4 {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.px-1 {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}
.px-2 {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
.px-3 {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}
.px-4 {
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.d-flex {
  display: flex;
}
.d-block {
  display: block;
}
.d-none {
  display: none;
}
.d-inline-block {
  display: inline-block;
}

.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}

.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}

/* Visibility utilities */
@media (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .d-sm-none {
    display: none !important;
  }
}

/* ==========================================
   16. PRINT STYLES
   ========================================== */
@media print {
  .top-bar,
  .main-header,
  .mobile-menu-btn,
  .social-network,
  .slick-dots,
  .slick-arrow {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}
/* ==========================================
   FORM VALIDATION STYLES
   Add this to your style.css file
   ========================================== */

/* Form Control States */
.form-control {
    position: relative;
    transition: all 0.3s ease;
}

.form-control.is-valid {
    border-color: #28a745;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
}

.form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

/* Validation Feedback */
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 8px;
    font-size: 14px;
    color: #dc3545;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 8px;
    font-size: 14px;
    color: #28a745;
    font-weight: 500;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Feedback Alert */
.form-feedback {
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    animation: fadeInSlideDown 0.4s ease;
    position: relative;
}

@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-feedback.fade-in {
    animation: fadeInSlideDown 0.4s ease;
}

.form-feedback .alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.form-feedback .alert-content i {
    font-size: 20px;
    flex-shrink: 0;
}

.form-feedback .alert-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.form-feedback .alert-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

/* Success Alert */
.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-success .alert-content i {
    color: #28a745;
}

/* Error Alert */
.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-danger .alert-content i {
    color: #dc3545;
}

/* Character Counter */
.char-counter {
    font-size: 13px;
    color: #999;
    text-align: right;
    margin-top: 5px;
    font-weight: 500;
}

.char-counter.text-danger {
    color: #dc3545;
}

/* Loading Button State */
button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

button .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

/* Select Dropdown Enhancement */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

select.form-control.is-valid,
select.form-control.is-invalid {
    background-position: right 40px center, right 12px center;
}

/* Required Field Indicator */
.form-control[required] + label::after,
label[for] .required-indicator {
    content: '*';
    color: #dc3545;
    margin-left: 4px;
    font-weight: 600;
}

/* Screen Reader Only (for accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Visible for Keyboard Navigation */
.form-control:focus-visible {
    outline: 3px solid rgba(0, 91, 150, 0.5);
    outline-offset: 2px;
}

button:focus-visible {
    outline: 3px solid rgba(0, 91, 150, 0.5);
    outline-offset: 2px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .form-feedback {
        padding: 14px 16px;
        font-size: 14px;
    }

    .form-feedback .alert-content i {
        font-size: 18px;
    }

    .invalid-feedback,
    .valid-feedback {
        font-size: 13px;
    }

    .char-counter {
        font-size: 12px;
    }
}

/* Improved Placeholder Styling */
.form-control::placeholder {
    color: #999;
    opacity: 1;
    font-style: italic;
}

.form-control:-ms-input-placeholder {
    color: #999;
}

.form-control::-ms-input-placeholder {
    color: #999;
}

/* Textarea Specific */
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

textarea.form-control.is-valid,
textarea.form-control.is-invalid {
    background-position: right 12px top 12px;
}

/* Form Submit Button Enhancement */
.contact-form button[type="submit"] {
    position: relative;
    overflow: hidden;
}

.contact-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form button[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

/* Smooth Transitions */
.form-control,
.form-feedback,
.invalid-feedback,
.valid-feedback {
    transition: all 0.3s ease;
}

/* Print Styles */
@media print {
    .form-feedback,
    .invalid-feedback,
    .valid-feedback {
        display: none;
    }
}

/* ==========================================
   PAGE BANNER / HEADER VISIBILITY FIX
   Add this section to your style.css
   ========================================== */

/* Page Banner - Used in projects.html, contact.html, certifications.html, etc. */
.page-header {
    position: relative;
    padding: 120px 0 80px;  /* Reduced from 200px 0 120px */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay for better text visibility */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 57, 108, 0.85), rgba(0, 91, 150, 0.75));
    z-index: 1;
}

/* Ensure content appears above overlay */
.page-header .container {
    position: relative;
    z-index: 2;
}

/* Banner heading styles */
.page-header .heading {
    font-size: 48px;  /* Reduced from 56px */
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-header {
        padding: 100px 0 60px;  /* Reduced */
    }

    .page-header .heading {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 50px;  /* Reduced */
    }

    .page-header .heading {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;  /* Reduced */
    }

    .page-header .heading {
        font-size: 26px;
    }
}


/* ==========================================
   SERVICE PAGE SIDEBAR - PROFESSIONAL STYLING
   Add this to your style.css file
   ========================================== */

/* Widget Container */
.widget {
    background: var(--white);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-gray);
    transition: all var(--transition-base);
}

.widget:hover {
    box-shadow: 0 8px 24px rgba(0, 91, 150, 0.12);
}

/* Widget Header */
.widget h3 {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 20px 25px;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

/* Categories List */
.widget-categories .categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-categories .categories-list li {
    border-bottom: 1px solid var(--border-gray);
    transition: all var(--transition-base);
}

.widget-categories .categories-list li:last-child {
    border-bottom: none;
}

.widget-categories .categories-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Hover slide effect */
.widget-categories .categories-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-blue);
    transform: scaleY(0);
    transition: transform var(--transition-base);
    transform-origin: bottom;
}

.widget-categories .categories-list li a:hover::before,
.widget-categories .categories-list li.active a::before {
    transform: scaleY(1);
    transform-origin: top;
}

.widget-categories .categories-list li a:hover,
.widget-categories .categories-list li.active a {
    background: linear-gradient(90deg, rgba(0, 91, 150, 0.08) 0%, rgba(0, 91, 150, 0) 100%);
    color: var(--primary-blue);
    padding-left: 30px;
}

/* Icon on the right */
.widget-categories .categories-list li a .fa,
.widget-categories .categories-list li a i {
    font-size: 14px;
    color: var(--light-blue);
    transition: all var(--transition-base);
    opacity: 0.6;
}

.widget-categories .categories-list li a:hover .fa,
.widget-categories .categories-list li a:hover i,
.widget-categories .categories-list li.active a .fa,
.widget-categories .categories-list li.active a i {
    color: var(--accent-blue);
    opacity: 1;
    transform: translateX(5px);
}

/* Active state enhancement */
.widget-categories .categories-list li.active {
    background: linear-gradient(90deg, rgba(0, 91, 150, 0.05) 0%, transparent 100%);
}

.widget-categories .categories-list li.active a {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Text label */
.widget-categories .categories-list li a .txt {
    flex: 1;
    position: relative;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .widget {
        margin-bottom: 40px;
    }

    .widget h3 {
        font-size: 16px;
        padding: 18px 20px;
    }

    .widget-categories .categories-list li a {
        padding: 16px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .widget {
        border-radius: 8px;
    }

    .widget h3 {
        font-size: 15px;
        padding: 15px 18px;
    }

    .widget-categories .categories-list li a {
        padding: 14px 18px;
    }
}

/* Optional: Add icon before text */
.widget-categories .categories-list li a .txt::before {
    content: '▸';
    margin-right: 10px;
    color: var(--accent-blue);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
    display: inline-block;
}

.widget-categories .categories-list li a:hover .txt::before,
.widget-categories .categories-list li.active a .txt::before {
    opacity: 1;
    transform: translateX(0);
}



/* Top Bar Container */
.top-bar {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Section - Contact Items */
.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-1px);
}

.contact-item i {
    font-size: 14px;
    opacity: 0.9;
    flex-shrink: 0;
}

.contact-item span {
    white-space: nowrap;
}

/* Right Section - Get a Quote Button */
.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.quote-btn {
    background: var(--accent-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.quote-btn:hover {
    background: var(--white);
    color: var(--accent-blue);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.quote-btn i {
    margin-left: 4px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.quote-btn:hover i {
    transform: translateX(3px);
}

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

/* Large Desktop (1200px and above) - All visible */
@media (min-width: 1200px) {
    .contact-item span {
        display: inline;
    }
}

/* Desktop (992px - 1199px) - All visible but tighter spacing */
@media (max-width: 1199px) {
    .top-bar-left {
        gap: 18px;
    }

    .contact-item {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* Tablet (768px - 991px) - Show only 2 contact items with text */
@media (max-width: 991px) {
    .top-bar {
        padding: 10px 0;
    }

    .top-bar .container {
        padding: 0 15px;
    }

    .top-bar-left {
        gap: 15px;
    }

    /* Hide the third contact item (email) on tablet */
    /* .contact-item:nth-child(3) span { */
    /*     display: inline; */
    /* } */

    .contact-item {
        font-size: 13px;
        padding: 5px 8px;
    }

    .quote-btn {
        padding: 7px 16px;
        font-size: 12px;
    }
}

/* Mobile Large (576px - 767px) - Show first phone with text, others icon only */
@media (max-width: 767px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-bar .container {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .top-bar-left {
        gap: 10px;
        flex: 1;
    }

    /* Show text for first contact item only */
    .contact-item:first-child span {
        display: inline;
        font-size: 12px;
    }

    /* Hide text for other contact items */
    .contact-item:not(:first-child) span {
        display: none;
    }

    .contact-item {
        padding: 4px 8px;
        min-width: auto;
    }

    .contact-item i {
        font-size: 16px;
    }

    .quote-btn {
        padding: 6px 14px;

        font-size: 11px;
    }

    .quote-btn i {
        font-size: 10px;
    }
}

/* Mobile Small (480px - 575px) - Icons only for all contacts */
@media (max-width: 575px) {
    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }

    .top-bar .container {
        padding: 0 12px;
    }

    .top-bar-left {
        gap: 6px;
    }

    /* Hide ALL text, show only icons */
    .contact-item span {
        display: none !important;
    }

    .contact-item {
        padding: 4px;
        min-width: 36px;
        justify-content: center;
    }

    .contact-item i {
        font-size: 16px;
        margin: 0;
    }

    .quote-btn {
        padding: 5px 10px;
        font-size: 10px;
    }

    .quote-btn span {
        /* display: none; */
        display: inline;
    }

    .quote-btn i {
        margin: 0;
        font-size: 12px;
    }
}

/* Extra Small Mobile (below 400px) - Ultra compact */
@media (max-width: 399px) {
    .top-bar {
        padding: 5px 0;
    }

    .top-bar .container {
        padding: 0 10px;
        gap: 5px;
    }

    .top-bar-left {
        gap: 4px;
    }

    .contact-item {
        padding: 3px;
        min-width: 32px;
    }

    .contact-item i {
        font-size: 14px;
    }

    .quote-btn {
        padding: 4px 8px;
        min-width: 32px;
    }

    .quote-btn i {
        font-size: 14px;
    }
}

/* ==========================================
   PROFESSIONAL ENHANCEMENTS
   ========================================== */

/* Add subtle animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-bar {
    animation: slideInDown 0.5s ease-out;
}

/* Pulse effect on hover for better UX */
.contact-item:active,
.quote-btn:active {
    transform: scale(0.98);
}

/* Better focus states for accessibility */
.contact-item:focus,
.quote-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Tooltip effect for mobile (optional) */
@media (max-width: 575px) {
    .contact-item {
        position: relative;
    }

    .contact-item::after {
        content: attr(aria-label);
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 11px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }

    .contact-item:active::after {
        opacity: 1;
    }
}

/* Print styles */
@media print {
    .top-bar {
        background: white !important;
        color: black !important;
        border-bottom: 2px solid #005b96;
    }

    .contact-item,
    .quote-btn {
        color: black !important;
    }

    .quote-btn {
        display: none;
    }
}

/* ==========================================
   WHATSAPP STYLE SCROLL CARDS
   ========================================== */
.quick-actions-section {
    padding: 40px 0;
    background: #f0f2f5; /* WhatsApp-like light grey background */
    border-bottom: 1px solid var(--border-gray);
    overflow: hidden;
}

.qa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.qa-header .heading {
    font-size: 20px;
    margin: 0;
    color: var(--dark-blue);
    font-weight: 700;
}

.swipe-hint {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
    animation: slideRight 1.5s infinite;
}

@keyframes slideRight {
    0% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(5px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.5; }
}

/* Scroll Container */
.wa-scroll-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px 25px 5px; /* Bottom padding for shadow */

    /* Smooth Scrolling Physics */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.wa-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Individual Card */
.wa-card {
    min-width: 200px;
    max-width: 200px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
}

.wa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: rgba(0, 91, 150, 0.1);
}

/* Icon Area */
.wa-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Card Content */
.wa-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 5px 0;
}

.wa-card-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
    height: 34px; /* Fixed height for alignment */
    overflow: hidden;
}

/* Action Buttons */
.wa-action-btn {
    width: 100%;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.wa-action-btn:hover {
    filter: brightness(0.95);
    text-decoration: none;
    color: white;
}

/* Color Schemes */
.whatsapp-bg { background: linear-gradient(135deg, #25D366, #128C7E); }
.blue-bg { background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue)); }
.red-bg { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.dark-bg { background: linear-gradient(135deg, #34495e, #2c3e50); }
.accent-bg { background: linear-gradient(135deg, var(--accent-blue), var(--light-blue)); }

.btn-whatsapp { background-color: #dcf8c6; color: #075e54; }
.btn-whatsapp:hover { background-color: #25D366; color: white; }

.btn-blue { background-color: #e3f2fd; color: var(--primary-blue); }
.btn-blue:hover { background-color: var(--primary-blue); color: white; }

.btn-red { background-color: #fadbd8; color: #c0392b; }
.btn-red:hover { background-color: #e74c3c; color: white; }

.btn-dark { background-color: #eaeded; color: #2c3e50; }
.btn-dark:hover { background-color: #2c3e50; color: white; }

.btn-accent { background-color: #e1f5fe; color: var(--accent-blue); }
.btn-accent:hover { background-color: var(--accent-blue); color: white; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .quick-actions-section {
        padding: 30px 0;
    }

    .wa-card {
        min-width: 160px; /* Slightly smaller on mobile */
        max-width: 160px;
        padding: 15px 10px;
    }

    .wa-card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .wa-card-content h4 {
        font-size: 14px;
    }

    .wa-card-content p {
        font-size: 11px;
    }

    .wa-action-btn {
        font-size: 12px;
        padding: 6px 0;
    }
}

/* ==========================================
   FLOATING QUICK ACTIONS WIDGET
   ========================================== */

/* 1. The Trigger Button */
.qa-widget-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Adjust if it overlaps with other chat widgets */
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 91, 150, 0.4);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.qa-widget-trigger:hover {
    transform: scale(1.1);
    background: var(--dark-blue);
}

.qa-icon-holder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon-holder i {
    font-size: 24px;
    color: white;
    position: absolute;
    transition: all 0.3s ease;
}

/* Toggle Icons logic */
.qa-widget-trigger .close-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.qa-widget-trigger.active .open-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.qa-widget-trigger.active .close-icon {
    opacity: 1;
    transform: rotate(0);
}

.qa-widget-trigger.active {
    background: #e74c3c; /* Red color when open */
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
}

/* Notification Pulse */
.qa-notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background-color: #e74c3c;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 10;
}

.qa-notification-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #e74c3c;
    animation: notificationPulse 1.5s infinite;
}

@keyframes notificationPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Tooltip on hover */
.qa-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.qa-widget-trigger:hover .qa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 2. The Sliding Panel */
.qa-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 360px; /* Fixed width for card consistency */
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9998;
    padding: 20px 0 10px 0;

    /* Hiding Animation States */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.qa-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.qa-panel-header {
    padding: 0 20px 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.qa-panel-header h4 {
    margin: 0;
    font-size: 16px;
    color: var(--dark-blue);
    font-weight: 700;
}

/* 3. Horizontal Scroll Styling (Reused/Optimized) */
.wa-scroll-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 20px 20px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.wa-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.wa-card {
    min-width: 140px; /* Smaller for widget */
    max-width: 140px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.wa-card:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.wa-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}

.wa-card-content h5 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--dark-blue);
}

.wa-card-content p {
    font-size: 10px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 10px;
    height: 26px;
    overflow: hidden;
}

.wa-action-btn {
    width: 100%;
    padding: 6px 0;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .qa-widget-trigger {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .qa-panel {
        right: 20px;
        bottom: 80px;
        width: calc(100% - 40px); /* Full width minus margins */
        max-width: 340px;
    }
}


/* ==========================================
   SIMPLIFIED QUICK ACTIONS - VERTICAL
   ========================================== */

/* Trigger Button - Same as before */
.qa-widget-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 91, 150, 0.4);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.qa-widget-trigger:hover {
    transform: scale(1.1);
}

.qa-widget-trigger.active {
    background: #e74c3c;
}

/* Icon Toggle Logic */
.qa-icon-holder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon-holder i {
    font-size: 24px;
    color: white;
    position: absolute;
    transition: all 0.3s ease;
}

.qa-widget-trigger .close-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.qa-widget-trigger.active .open-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.qa-widget-trigger.active .close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Notification Pulse */
.qa-notification-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background-color: #e74c3c;
    border: 2px solid white;
    border-radius: 50%;
    animation: notificationPulse 2s infinite;
}

@keyframes notificationPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* The Panel - Vertical Stack */
.qa-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.3s ease,
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 0.3s;
}

.qa-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}

/* Panel Header */
.qa-panel-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.qa-panel-header h4 {
    margin: 0;
    font-size: 18px;
    color: var(--dark-blue);
    font-weight: 700;
}

/* Vertical Actions Container */
.qa-actions-vertical {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Action Item - Horizontal Card */
.qa-action-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.qa-action-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: currentColor;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.qa-action-item:hover {
    background: white;
    border-color: currentColor;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qa-action-item:hover::before {
    transform: scaleY(1);
}

/* WhatsApp Specific */
.qa-action-item.whatsapp {
    color: #25D366;
}

.qa-action-item.whatsapp:hover {
    background: #dcf8c6;
}

/* Contact Specific */
.qa-action-item.contact {
    color: var(--primary-blue);
}

.qa-action-item.contact:hover {
    background: #e3f2fd;
}

/* Icon Circle */
.qa-action-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.qa-action-item.whatsapp .qa-action-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.qa-action-item.contact .qa-action-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.qa-action-item:hover .qa-action-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Text Content */
.qa-action-content {
    flex: 1;
}

.qa-action-content h5 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-blue);
}

.qa-action-content p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

/* Arrow Indicator */
.qa-action-arrow {
    font-size: 16px;
    color: currentColor;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.qa-action-item:hover .qa-action-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .qa-widget-trigger {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .qa-icon-holder i {
        font-size: 22px;
    }

    .qa-panel {
        right: 20px;
        bottom: 85px;
        width: calc(100vw - 40px);
        max-width: 340px;
    }

    .qa-panel-header h4 {
        font-size: 16px;
    }

    .qa-action-item {
        padding: 14px;
    }

    .qa-action-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .qa-action-content h5 {
        font-size: 14px;
    }

    .qa-action-content p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .qa-widget-trigger {
        width: 50px;
        height: 50px;
    }

    .qa-panel {
        width: calc(100vw - 30px);
    }

    .qa-actions-vertical {
        padding: 12px;
    }

    .qa-action-item {
        padding: 12px;
        gap: 12px;
    }
}

/* Contact Email confirmation */
.form-feedback { padding: 15px; margin-bottom: 20px; border-radius: 4px; }
.alert-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
