:root {
  --primary-blue: #0056b3;
  --dark-blue: #003b7a;
  --light-blue: #eaf4ff;
  --soft-blue: #f5faff;
  --text-dark: #172033;
  --text-muted: #5d6b82;
  --border-color: #dbe9f8;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.section-padding {
  padding: 90px 0;
}

.section-subtitle {
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.section-title span {
  color: var(--primary-blue);
}

.section-text {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 0;
}

.btn-blue {
  background: var(--primary-blue);
  color: var(--white);
  border: 1px solid var(--primary-blue);
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 86, 179, 0.25);
}

.btn-outline-blue {
  background: var(--white);
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-blue:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Header */
.top-bar {
  background: var(--dark-blue);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
}

.top-bar a {
  color: var(--white);
  opacity: 0.95;
}

.top-bar i {
  color: #b9dcff;
  margin-right: 6px;
}

.main-navbar {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 59, 122, 0.08);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-blue) !important;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.4px;
  line-height: 1.15;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-blue), #0c7ee8);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0, 86, 179, 0.25);
}

.brand-small {
  display: block;
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 10px 14px !important;
  font-size: 15px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-blue);
}

.dropdown-menu {
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 40px rgba(0, 59, 122, 0.12);
  border-radius: 14px;
  padding: 10px;
}

.dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 500;
}

.dropdown-item:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
}

/* Hero Slider */
.hero-section {
  position: relative;
}

.hero-carousel .carousel-item {
  height: 620px;
  min-height: 520px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 43, 91, 0.78), rgba(0, 86, 179, 0.34), rgba(255, 255, 255, 0.02));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 620px;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-box {
  max-width: 720px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  padding: 8px 15px;
  border-radius: 50px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

.hero-box h1 {
  font-size: 54px;
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-box p {
  font-size: 18px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  backdrop-filter: blur(8px);
}

.carousel-control-prev {
  left: 24px;
}

.carousel-control-next {
  right: 24px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Info Strip */

.info-strip {
  background: var(--white);
  /* margin-top: -36px; */
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
  padding-top: 50px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 26px;
  height: 100%;
  box-shadow: 0 18px 45px rgba(0, 59, 122, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.info-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 14px;
}

/* ==============================
   Clean Industrial About Section
============================== */

.about-section {
  background: #f5faff;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(0, 86, 179, 0.08);
  border-radius: 50%;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -130px;
  width: 330px;
  height: 330px;
  background: rgba(0, 86, 179, 0.06);
  border-radius: 50%;
}

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

.section-padding {
  padding: 90px 0;
}

.section-subtitle {
  color: #0056b3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: #172033;
  margin-bottom: 14px;
}

.section-title span {
  color: #0056b3;
}

.section-text {
  color: #5d6b82;
  font-size: 16px;
  line-height: 1.8;
}

/* Main Card */
.about-main-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #dbe9f8;
  box-shadow: 0 24px 70px rgba(0, 59, 122, 0.12);
}

/* Left Content */
.about-content-box {
  height: 100%;
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  display: inline-block;
  width: fit-content;
  background: #eaf4ff;
  color: #0056b3;
  border: 1px solid #cfe5ff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-content-box h3 {
  font-size: 34px;
  line-height: 1.28;
  font-weight: 800;
  color: #172033;
  margin-bottom: 20px;
}

.about-content-box p {
  color: #5d6b82;
  font-size: 15.5px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 14px;
}

/* Feature Grid */
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.about-feature-item {
  background: #f5faff;
  border: 1px solid #dbe9f8;
  border-radius: 14px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #172033;
  font-size: 14px;
}

.about-feature-item i {
  color: #0056b3;
  font-size: 18px;
}

/* Buttons */
.about-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-blue {
  background: #0056b3;
  color: #ffffff;
  border: 1px solid #0056b3;
  padding: 18px 28px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background: #003b7a;
  border-color: #003b7a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 86, 179, 0.22);
}

.btn-outline-blue {
  background: #ffffff;
  color: #0056b3;
  border: 1px solid #0056b3;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-blue:hover {
  background: #0056b3;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Right Visual */
.about-visual-box {
  position: relative;
  height: 100%;
  min-height: 650px;
  background: #0056b3;
}

.about-visual-box img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.about-visual-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 39, 84, 0.05),
      rgba(0, 39, 84, 0.72));
  z-index: 1;
}

/* Blue Panel */
.about-blue-panel {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    background: rgb(0 86 179 / 7%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.blue-panel-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 14px;
}

.blue-panel-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blue-panel-item h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.blue-panel-item p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 1199px) {
  .about-content-box {
    padding: 42px;
  }

  .about-content-box h3 {
    font-size: 30px;
  }

  .about-visual-box,
  .about-visual-box img {
    min-height: 680px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

  .about-content-box {
    padding: 40px;
  }

  .about-visual-box,
  .about-visual-box img {
    min-height: 480px;
  }

  .section-title {
    font-size: 32px;
  }

  .about-content-box h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 29px;
  }

  .about-main-card {
    border-radius: 22px;
  }

  .about-content-box {
    padding: 30px 24px;
  }

  .about-content-box h3 {
    font-size: 25px;
  }

  .about-content-box p {
    text-align: left;
    font-size: 15px;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-visual-box,
  .about-visual-box img {
    min-height: 430px;
  }

  .about-blue-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 18px;
  }

  .about-btn-wrap .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-text {
    font-size: 15px;
  }

  .about-content-box {
    padding: 26px 18px;
  }

  .about-content-box h3 {
    font-size: 23px;
  }

  .about-visual-box,
  .about-visual-box img {
    min-height: 390px;
  }

  .about-blue-panel {
    position: static;
    border-radius: 0;
    background: #0056b3;
  }

  .about-visual-box::before {
    display: none;
  }
}

/* Products */

/* ==============================
   Products Section - Full CSS
   Owl Carousel Version
============================== */

.products-section {
  background:
    radial-gradient(circle at top left, rgba(0, 86, 179, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 86, 179, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(0, 86, 179, 0.07);
  border-radius: 50%;
}

.products-section::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -130px;
  width: 330px;
  height: 330px;
  background: rgba(0, 86, 179, 0.06);
  border-radius: 50%;
}

.products-section .container {
  position: relative;
  z-index: 2;
}

/* Section Common */
.section-padding {
  padding: 90px 0;
}

.section-subtitle {
  color: #0056b3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: #172033;
  margin-bottom: 14px;
}

.section-title span {
  color: #0056b3;
}

.section-text {
  color: #5d6b82;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Slider Wrapper */
.simple-product-slider {
  position: relative;
}

/* Owl Stage Equal Height */
.product-owl-slider .owl-stage {
  display: flex;
}

.product-owl-slider .owl-item {
  display: flex;
}

.product-owl-slider .owl-item>.product-slide {
  width: 100%;
}

/* Product Slide */
.product-slide {
  width: 100%;
  height: 100%;
  padding: 12px 0 30px;
}

/* Product Card */
.product-card {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #dbe9f8;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 59, 122, 0.08);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: #b8dcff;
  box-shadow: 0 24px 60px rgba(0, 86, 179, 0.16);
}

/* Product Image */
.product-img {
  height: 285px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbff 45%, #eaf4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.product-img::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  background: rgba(0, 86, 179, 0.08);
  border-radius: 50%;
  right: -70px;
  top: -80px;
}

.product-img::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: rgba(0, 86, 179, 0.05);
  border-radius: 50%;
  left: -70px;
  bottom: -70px;
}

.product-img img {
  max-width: 100%;
  max-height: 230px;
  width: auto !important;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

/* Product Tag */
.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0056b3;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 13px;
  border-radius: 50px;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(0, 86, 179, 0.25);
}

/* Product Body */
.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.product-body h4 {
  color: #172033;
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.35;
}

.product-body p {
  color: #5d6b82;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Product Specs - only if used */

.product-specs {
  background: #f5faff;
  border: 1px solid #dbe9f8;
  border-radius: 16px;
  padding: 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.product-specs span {
  color: #334155;
  font-size: 13.5px;
  line-height: 1.45;
}

.product-specs i {
  color: #0056b3;
  margin-right: 6px;
}

/* Button */
.btn-outline-blue {
  background: #ffffff;
  color: #0056b3;
  border: 1px solid #0056b3;
  padding: 18px 24px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-blue:hover {
  background: #0056b3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 86, 179, 0.22);
}

.product-body .btn {
  margin-top: auto;
}

/* Owl Navigation */
.product-owl-slider .owl-nav {
  margin-top: 12px;
  text-align: center;
}

.product-owl-slider .owl-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  background: #0056b3 !important;
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 48px !important;
  margin: 0 7px;
  transition: all 0.3s ease;
  box-shadow: 0 14px 32px rgba(0, 86, 179, 0.26);
}

.product-owl-slider .owl-nav button:hover {
  background: #003b7a !important;
  transform: translateY(-2px);
}

.product-owl-slider .owl-nav button i {
  line-height: 1;
}

/* Owl Dots */
.product-owl-slider .owl-dots {
  margin-top: 10px;
  text-align: center;
}

.product-owl-slider .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 5px 5px !important;
  background: #b8dcff !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.product-owl-slider .owl-dot.active span {
  width: 28px !important;
  border-radius: 30px;
  background: #0056b3 !important;
}

/* Owl Default Fix */
.product-owl-slider.owl-carousel .owl-item img {
  display: block;
}

/* ==============================
   Responsive CSS
============================== */

@media (max-width: 1199px) {
  .section-title {
    font-size: 34px;
  }

  .product-img {
    height: 275px;
  }

  .product-img img {
    max-height: 220px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .product-img {
    height: 265px;
  }

  .product-img img {
    max-height: 215px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 29px;
  }

  .section-text {
    font-size: 15px;
  }

  .product-img {
    height: 250px;
    padding: 22px;
  }

  .product-img img {
    max-height: 205px;
  }

  .product-body {
    padding: 22px;
  }

  .product-body h4 {
    font-size: 20px;
  }

  .product-owl-slider .owl-nav button {
    width: 44px;
    height: 44px;
    font-size: 21px !important;
    line-height: 44px !important;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .product-slide {
    padding-bottom: 24px;
  }

  .product-card {
    border-radius: 22px;
  }

  .product-img {
    height: 230px;
    padding: 20px;
  }

  .product-img img {
    max-height: 185px;
  }

  .product-body {
    padding: 20px;
  }

  .product-body h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .product-tag {
    font-size: 11px;
    padding: 6px 11px;
  }
}

button.owl-dot {
  display: none;
}

/* Industries */

/* ==============================
   Enhanced Industries Section
============================== */

.industries-section {
  background:
    linear-gradient(135deg, rgba(0, 41, 89, 0.96), rgba(0, 86, 179, 0.94)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.industries-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -160px;
  right: -120px;
}

.industries-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -140px;
  left: -110px;
}

.industries-section .container {
  position: relative;
  z-index: 2;
}

.industries-section .section-subtitle {
  color: #d7ecff;
}

.industries-section .section-title {
  color: #ffffff;
}

.industries-section .section-title span {
  color: #b9dcff;
}

.industries-section .section-text {
  color: rgba(255, 255, 255, 0.82);
}

/* Industry Card */
.industry-card {
  height: 100%;
  min-height: 245px;
  padding: 28px 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent);
  opacity: 0;
  transition: all 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: #ffffff;
  color: #0056b3;
  display: grid;
  place-items: center;
  font-size: 34px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 2;
  transition: all 0.35s ease;
}

.industry-card:hover .industry-icon {
  transform: rotateY(180deg);
  background: #d7ecff;
}

.industry-card h5 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  .industries-section {
    background-attachment: scroll;
  }

  .industry-card {
    min-height: 225px;
  }
}

@media (max-width: 767px) {
  .industry-card {
    min-height: auto;
    padding: 26px 18px;
  }

  .industry-icon {
    width: 62px;
    height: 62px;
    font-size: 30px;
  }

  .industry-card h5 {
    font-size: 16px;
  }

  .industry-card p {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .industries-section .row.g-4 {
    --bs-gutter-y: 18px;
  }

  .industry-card {
    border-radius: 20px;
  }
}

/* Why Choose */
.why-section {
  background: var(--soft-blue);
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 86, 179, 0.12);
}

.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--light-blue);
  display: grid;
  place-items: center;
  color: var(--primary-blue);
  font-size: 30px;
  margin-bottom: 18px;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 15px;
}

/* CTA */
.cta-section {
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: 30px;
  padding: 55px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  right: -70px;
  bottom: -90px;
}

.cta-box h2 {
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}

.cta-box .btn {
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  background: #071d38;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 75px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer h5 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

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

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: #b9dcff;
  font-size: 18px;
  margin-top: 0px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  margin-top: 55px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-box h1 {
    font-size: 46px;
  }

  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

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

  .navbar-collapse {
    background: var(--white);
    padding: 16px 0 8px;
  }

  .hero-carousel .carousel-item,
  .hero-content {
    height: 560px;
    min-height: 500px;
  }

  .hero-box h1 {
    font-size: 39px;
  }

  .hero-box p {
    font-size: 16px;
  }

  .info-strip {
    margin-top: 0;
    padding-top: 35px;
  }

  .about-image-wrap img {
    height: 420px;
  }

  .product-slider-control.carousel-control-prev {
    left: 4px;
  }

  .product-slider-control.carousel-control-next {
    right: 4px;
  }

  .cta-box {
    padding: 42px 30px;
  }
}

@media (max-width: 767px) {
  .top-bar {
    text-align: center;
  }

  .navbar-brand {
    font-size: 20px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .hero-carousel .carousel-item,
  .hero-content {
    height: 520px;
    min-height: 520px;
  }

  .hero-box h1 {
    font-size: 32px;
  }

  .hero-box p {
    font-size: 15px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .section-title {
    font-size: 29px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .about-image-wrap img {
    height: 340px;
  }

  .about-experience {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .product-img {
    height: 220px;
  }

  .cta-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 55px 0;
  }

  .hero-carousel .carousel-item,
  .hero-content {
    height: 500px;
    min-height: 500px;
  }

  .hero-box h1 {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 12px;
  }

  .info-card,
  .why-card,
  .product-body {
    padding: 20px;
  }

  .cta-box {
    padding: 34px 22px;
    border-radius: 22px;
  }
}

/* ==============================
   Clients Section
============================== */

.clients-section {
  background:
    radial-gradient(circle at top right, rgba(0, 86, 179, 0.08), transparent 34%),
    linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: rgba(0, 86, 179, 0.06);
  border-radius: 50%;
  top: -150px;
  left: -120px;
}

.clients-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(0, 86, 179, 0.05);
  border-radius: 50%;
  bottom: -130px;
  right: -100px;
}

.clients-section .container {
  position: relative;
  z-index: 2;
}

.clients-slider-wrap {
  /* background: #ffffff;
  border: 1px solid #dbe9f8; */
  border-radius: 28px;
  padding: 34px 28px;
  /* box-shadow: 0 18px 50px rgba(0, 59, 122, 0.09); */
}

.client-owl-slider .owl-stage {
  display: flex;
  align-items: stretch;
}

.client-owl-slider .owl-item {
  display: flex;
}

.client-slide {
  width: 100%;
  height: 100%;
  padding: 8px 0 22px;
}

.client-card {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #dbe9f8;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: all 0.35s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  border-color: #b8dcff;
  box-shadow: 0 18px 38px rgba(0, 86, 179, 0.12);
}

.client-logo-box {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.client-logo-box img {
  max-width: 170px;
  max-height: 150px;
  width: auto !important;
  height: auto;
  /* object-fit: contain; */
  /* filter: grayscale(100%); */
  /* opacity: 0.75; */
  transition: all 0.35s ease;
}

.client-card:hover .client-logo-box img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

/* Owl Navigation */
.client-owl-slider .owl-nav {
  margin-top: 12px;
  text-align: center;
}

.client-owl-slider .owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: #0056b3 !important;
  color: #ffffff !important;
  font-size: 22px !important;
  line-height: 44px !important;
  margin: 0 6px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 28px rgba(0, 86, 179, 0.24);
}

.client-owl-slider .owl-nav button:hover {
  background: #003b7a !important;
  transform: translateY(-2px);
}

/* Owl Dots */
.client-owl-slider .owl-dots {
  margin-top: 6px;
  text-align: center;
}

.client-owl-slider .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  background: #b8dcff !important;
  transition: all 0.3s ease;
}

.client-owl-slider .owl-dot.active span {
  width: 28px !important;
  background: #0056b3 !important;
  border-radius: 30px;
}

/* Responsive */
@media (max-width: 991px) {
  .clients-slider-wrap {
    padding: 28px 22px;
  }

  .client-card {
    height: 125px;
  }

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

@media (max-width: 575px) {
  .clients-slider-wrap {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .client-card {
    height: 115px;
    border-radius: 18px;
  }

  .client-logo-box img {
    max-width: 125px;
    max-height: 65px;
  }
}

/* ==============================
   Added Animations Only
   Existing styles are not modified
============================== */
.pe-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: opacity, transform;
}

.pe-animate[data-pe-animation="fade-left"] {
  transform: translateX(-32px);
}

.pe-animate[data-pe-animation="fade-right"] {
  transform: translateX(32px);
}

.pe-animate[data-pe-animation="zoom-in"] {
  transform: scale(0.94);
}

.pe-animate.pe-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  margin-top: -7px;
}

.pe-hero-animate .hero-badge,
.pe-hero-animate h1,
.pe-hero-animate p,
.pe-hero-animate .hero-actions {
  animation: peHeroFadeUp 0.9s ease both;
}

.pe-hero-animate h1 {
  animation-delay: 0.15s;
}

.pe-hero-animate p {
  animation-delay: 0.3s;
}

.pe-hero-animate .hero-actions {
  animation-delay: 0.45s;
}

@keyframes peHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-card,
.about-feature-item,
.product-card,
.industry-card,
.client-card,
.cta-box {
  will-change: transform;
}

.info-card:hover .info-icon,
.about-feature-item:hover i,
.industry-card:hover i {
  animation: peSoftPulse 0.9s ease both;
}

@keyframes peSoftPulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.product-img::before,
.product-img::after,
.about-section::before,
.about-section::after,
.products-section::before,
.products-section::after {
  animation: peFloatShape 7s ease-in-out infinite alternate;
}

@keyframes peFloatShape {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(10px, -12px, 0);
  }
}

/* ==============================
   Gallery & Certification Additions
============================== */
.gallery-cert-section {
  background:
    radial-gradient(circle at top right, rgba(0, 86, 179, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  position: relative;
  overflow: hidden;
}

.gallery-cert-section .container {
  position: relative;
  z-index: 2;
}

.certificate-grid .product-card {
  height: 100%;
}

.certificate-card {
  position: relative;
}

.certificate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 1px solid rgba(0, 86, 179, 0.08);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 4;
}

.certificate-card:hover::before {
  opacity: 1;
}

.certificate-img {
  height: 330px;
  align-items: flex-start;
  padding: 22px;
}

.certificate-img a {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.certificate-img img {
  width: 100% !important;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 59, 122, 0.08);
}

.certificate-body h4 {
  margin-bottom: 10px;
}

.certificate-body .btn {
  margin-top: auto;
}

.certificate-upload-box {
  min-height: 330px;
  flex-direction: column;
  gap: 14px;
  color: #0056b3;
  font-weight: 800;
  text-align: center;
}

.certificate-upload-box i {
  position: relative;
  z-index: 2;
  font-size: 58px;
}

.certificate-upload-box span {
  position: relative;
  z-index: 2;
  font-size: 18px;
}

@media (max-width: 767px) {

  .certificate-img,
  .certificate-upload-box {
    height: 300px;
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .pe-animate,
  .pe-hero-animate .hero-badge,
  .pe-hero-animate h1,
  .pe-hero-animate p,
  .pe-hero-animate .hero-actions,
  .product-img::before,
  .product-img::after,
  .about-section::before,
  .about-section::after,
  .products-section::before,
  .products-section::after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==============================
   Header Dropdown
   Desktop Hover + Tablet/Mobile Click
   Product + Certification
============================== */

/* Desktop: 992px and above submenu opens on hover */
@media (min-width: 992px) {
  .main-navbar .nav-item.dropdown {
    position: relative;
  }

  .main-navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: all 0.25s ease;
    margin-top: 0;
  }

  .main-navbar .nav-item.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-navbar .dropdown-toggle::after {
    transition: transform 0.25s ease;
  }

  .main-navbar .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Tablet/Mobile: 991px and below submenu opens on click/tap */
@media (max-width: 991px) {
  .main-navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    position: static;
    width: 100%;
    margin-top: 6px;
    padding: 8px;
    border-radius: 12px;
    box-shadow: none;
    background: var(--light-blue);
    border: 1px solid var(--border-color);
  }

  .main-navbar .dropdown-menu.show {
    display: block;
  }

  .main-navbar .dropdown-item {
    padding: 10px 14px;
    border-radius: 8px;
  }

  .main-navbar .dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* ==============================
   Bottom To Top Arrow
============================== */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: all 0.35s ease;
  box-shadow: 0 14px 32px rgba(0, 86, 179, 0.35);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--dark-blue);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 86, 179, 0.45);
}

.back-to-top i {
  line-height: 1;
}

@media (max-width: 575px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}


/* Section 3: Certifications & Make in India */
.certifications-section {
  position: relative;
  background: linear-gradient(135deg, #f4f9ff 0%, #ffffff 48%, #eef6ff 100%);
  overflow: hidden;
}

.certifications-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -160px;
  background: rgba(0, 92, 185, 0.08);
  border-radius: 50%;
}

.certifications-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -90px;
  background: rgba(0, 55, 115, 0.08);
  border-radius: 50%;
}

.cert-wrapper {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 28px;
  padding: 55px;
  box-shadow: 0 25px 70px rgba(0, 49, 105, 0.11);
  border: 1px solid rgba(0, 89, 179, 0.08);
}

.cert-content .section-subtitle {
  display: inline-block;
  color: #005bbb;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cert-content .section-title {
  font-size: 42px;
  line-height: 1.16;
  font-weight: 800;
  color: #0b2341;
  margin-bottom: 18px;
}

.cert-content .section-title span {
  color: #005bbb;
}

.cert-content .section-text {
  color: #5d6b7a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.cert-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, #005bbb, #003f86);
  padding: 20px;
  border-radius: 18px;
  color: #ffffff;
}

.cert-highlight i {
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
}

.cert-highlight h6 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 700;
}

.cert-highlight p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.cert-display {
  position: relative;
}

.make-india-box {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #061d3a, #005bbb);
  padding: 26px;
  border-radius: 24px;
  color: #ffffff;
  margin-bottom: 24px;
  box-shadow: 0 18px 40px rgba(0, 70, 145, 0.22);
}

.make-india-img-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.make-india-img-box img {
  max-width: 100%;
  max-height: 105px;
  object-fit: contain;
}

.make-india-box h4 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.make-india-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.92;
}

.isi-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.isi-item {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 91, 187, 0.12);
  border-radius: 20px;
  padding: 22px 16px;
  text-align: center;
  transition: all 0.35s ease;
  overflow: hidden;
}

.isi-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #005bbb, #0aa4ff);
}

.isi-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0, 74, 150, 0.14);
}

.isi-img {
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #f3f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.isi-img img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.isi-info h5 {
  color: #0b2341;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
}

.isi-info p {
  color: #6c7886;
  font-size: 13px;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .cert-wrapper {
    padding: 40px 28px;
  }

  .cert-content .section-title {
    font-size: 34px;
  }

  .make-india-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .make-india-img-box {
    max-width: 180px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .cert-wrapper {
    padding: 32px 18px;
    border-radius: 22px;
  }

  .cert-content .section-title {
    font-size: 28px;
  }

  .isi-list {
    grid-template-columns: 1fr;
  }

  .make-india-box {
    padding: 22px;
  }

  .make-india-box h4 {
    font-size: 24px;
  }
}

/* whatsapp-button-showing */

.whatsapp-widget {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.whatsapp-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    background: #25D366;
    color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: whatsappPulse 1.8s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    background: #1ebe5d;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-popup {
    position: absolute;
    left: 0;
    bottom: 82px;
    width: 300px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-popup-header {
    background: linear-gradient(135deg, #075E54, #25D366);
    color: #fff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.whatsapp-popup-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.whatsapp-popup-header p {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

.whatsapp-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.whatsapp-popup-body {
    padding: 18px;
    background: #f5f7f9;
}

.whatsapp-message {
    background: #fff;
    color: #222;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    position: relative;
}

.whatsapp-message::before {
    content: "";
    position: absolute;
    left: 14px;
    bottom: -7px;
    border-width: 8px 8px 0 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.whatsapp-chat-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 12px 15px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-chat-link:hover {
    background: #1ebe5d;
    color: #fff;
}

@media (max-width: 575px) {
    .whatsapp-widget {
        left: 15px;
        bottom: 15px;
    }

    .whatsapp-popup {
        width: 280px;
        left: 0;
    }

    .whatsapp-btn {
        width: 56px;
        height: 56px;
        font-size: 30px;
    }
}