/* =========================
   🔹 Google Fonts
   ========================= */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap");

/* =========================
   🔹 Reset / Base
   ========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

input,
textarea,
select {
  font: inherit;
  border: 1px solid #ccc;
  outline: none;
  padding: 0.5rem;
}

/* =========================
   🔹 Theme Variables
   ========================= */
:root {
  /* Brand Colors */
  --bs-primary: #00b5e2;
  --bs-secondary: #e91e63;

  /* Text & Background */
  --text-color: #212529;
  --white-color: #ffffff;
  --background-color: #ffffff;
  --section-alt-bg: #f9fafb;
  --light-gray: #eee;

  /* Fonts */
  --heading-font: "Poppins", sans-serif;
  --body-font: "Roboto", sans-serif;

  /* custom brand used in vmv-values-list bullet */
  --vac-brand: #00b5e2;
}

/* =========================
   🔹 Typography
   ========================= */
body {
  font-family: var(--body-font);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--background-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--body-font);
}
p:last-child {
  margin-bottom: 0;
}

/* =========================
   🔹 Buttons & Animations
   ========================= */
/* Button */
.button {
  border: none;
  color: #fff;
  background-image: linear-gradient(
    135deg,
    #1f8e8a 0%,
    #3d99be 31%,
    #56317a 100%
  );
  border-radius: 20px;
  background-size: 100% auto;
  font-family: inherit;
  font-size: 17px;
  padding: 0.6em 1.5em;
  white-space: nowrap;
}

.button:hover {
  background-position: right center;
  background-image: linear-gradient(30deg, var(--bs-secondary), #ad0953);
  color: white;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: pulse512 1.5s infinite;
}

/* pulse animation */
@keyframes pulse512 {
  0% {
    box-shadow: 0 0 0 0 #05bada66;
  }
  70% {
    box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
  }
  100% {
    box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
  }
}

/* From Uiverse.io by gharsh11032000 */
.animated-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 30px;
  border: 4px solid;
  border-color: transparent;
  font-size: 18px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: var(--bs-primary);
  box-shadow: 0 0 0 2px var(--bs-primary);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: var(--bs-secondary);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}
.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: var(--bs-primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  color: var(--bs-secondary);
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #f7f7f7;
  border-radius: 12px;
  letter-spacing: 1px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}
.animated-button:hover .arr-2 {
  left: 16px;
}
.animated-button:hover .text {
  transform: translateX(12px);
  color: #fff;
}
.animated-button:hover svg {
  fill: var(--bs-secondary);
}
.animated-button:active {
  transform: scale(0.95);
  box-shadow: 0 0 0 4px rgb(47, 113, 255);
}
.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
.btn-container {
  display: flex;
  justify-content: end;
  margin-bottom: 0;
  border-top: 1px solid #847f7f6a;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
}
.btn-container a {
  padding: 5px 15px;
}

/* =========================
   🔹 Top Header
   ========================= */
.top-bar {
  background-color: #090b20;
  font-size: 0.8rem;
  color: var(--white-color);
}

.top-bar i {
  color: var(--white-color);
}
.top-bar i:hover {
  color: var(--bs-secondary);
}

.top-bar a {
  color: var(--white-color);
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.top-bar a:hover {
  color: var(--bs-primary);
  transform: scale(1.2);
}

.internal-link {
  color: var(--bs-secondary);
  border-bottom: 1px solid var(--bs-secondary);
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   🔹 Navbar / Megamenu
   ========================= */
/* Nav links */

.navbar .nav-link {
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-color);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-color);
} /* Underline effect */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  background-color: var(--bs-primary);
  transition: width 0.3s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--bs-primary);
}

/* Mega Menu base */
.navbar .megamenu {
  position: static;
}

.navbar .megamenu .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  border-radius: 0;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 0;
}

.megamenu .dropdown-menu .container {
  max-width: 1200px;
}

.megamenu h6 {
  font-size: 0.8rem;
  color: var(--bs-primary);
  text-transform: uppercase;
}

.megamenu .dropdown-item {
  font-size: 15px;
  padding: 0.4rem 0;
  border-bottom: 1px solid #00b5e285;
}

.megamenu .dropdown-item:last-child {
  border-bottom: 0;
}

.megamenu .dropdown-item:hover {
  background: none;
  color: var(--bs-primary);
}

/* MOBILE & TABLET */
@media (max-width: 991.98px) {
  /* Make collapsed navbar scrollable */
  .navbar .navbar-collapse {
    max-height: 70vh;
    overflow-y: auto;
  }

  /* Mega menu behaves like normal content inside collapse */
  .navbar .megamenu .dropdown-menu {
    position: static; /* no absolute -> no overlapping */
    width: 100%;
    max-height: none; /* or a value if you prefer scroll */
    overflow-y: visible;
    box-shadow: none;
    margin-top: 0;
  }

  /* Stack columns so they don’t overflow on tablets */
  .megamenu .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .megamenu .dropdown-menu .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* DESKTOP: open mega menu on hover */

/* =========================
   🔹 Carousel / Slider
   ========================= */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* unified overlay */
  z-index: 1;
}
.slider-section .carousel-item img {
  height: 83vh;
  object-fit: cover;
}

.carousel-caption.caption-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 950px;
  z-index: 2; /* text above overlay */
}

.carousel h2 {
  font-size: 2.5rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: var(--light-gray);
}
.carousel h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
  width: 320px;
  height: 5px;
  background-color: var(--bs-primary);
}

.carousel p {
  color: var(--light-gray);
  font-size: 1.2rem;
  padding-top: 10px;
}

/* Transparent caption box */
.caption-box {
  display: inline-block;
  background: rgba(0, 0, 0, 0.25);
  padding: 20px 30px;
  border-radius: 12px;
}
.caption-box h2 {
  font-size: 2.5rem;
  line-height: 1.5;
  color: var(--light-gray);
  margin-bottom: 15px;
  position: relative;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.caption-box h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background-color: var(--bs-primary);
  border-radius: 2px;
}
.caption-box p {
  color: var(--light-gray);
  font-size: 1.2rem;
  margin: 0;
}

/* Mobile friendly adjustments */
@media (max-width: 768px) {
  .carousel-caption.caption-center {
    width: 95%;
  }
  .carousel-caption.caption-center h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .carousel-caption.caption-center p,
  .caption-box p {
    font-size: 0.95rem;
    display: block;
  }
  .overlay {
    background: rgba(0, 0, 0, 0.6);
  }
  .slider-section .carousel-item img {
    height: 60vh;
    object-fit: cover;
  }
  .caption-box {
    padding: 12px 18px;
  }
  .caption-box h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

/* =========================
   🔹 About / Hero / VMV
   ========================= */
.about-hero {
  position: relative;
  min-height: 75vh;
  background: url("../img/about-us-bg.webp") center center / cover no-repeat;
  background-attachment: fixed;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 23, 0.834);
  z-index: 1;
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-size: 2.5rem;
}
.about-hero h2 {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  /* Styles for mobile only */
  .about-hero h1 {
    font-size: 1.8rem;
  }
}
.about-hero p {
  max-width: 800px;
  color: #aab0cf;
  line-height: 1.5;
  font-size: 1rem;
}
.about-us p {
  text-align: justify;
}

.speech-hero {
  background-image: url("../img/speech-prompter-bg.webp");
}

/* VMV section */
#vision-mission-values {
  background: var(--section-alt-bg);
  color: #090b20;
}
.vmv-card {
  border: 1px solid rgba(9, 11, 32, 0.06);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  transition: all 0.35s ease;
  box-shadow: 0 4px 14px rgba(9, 11, 32, 0.05);
  position: relative;
}
.vmv-card p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 30px;
  text-align: justify;
}
.vmv-icon {
  color: var(--bs-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 11, 32, 0.05);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}
.vmv-card:hover .vmv-icon {
  background: var(--bs-primary);
  color: #fff;
  transform: scale(1.1);
}
.vmv-card:hover,
.vmv-card:focus {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(9, 11, 32, 0.12);
}

/* Values list */
.vmv-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vmv-values-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-color);
}
.vmv-values-list li::before {
  content: "•";
  color: var(--vac-brand);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Responsive padding for VMV */
@media (max-width: 767.98px) {
  .vmv-card {
    padding: 1.5rem;
  }
}

/* =========================
   🔹 Achievements / Counters
   ========================= */
#achievements {
  background: #f9fafc;
  color: var(--text-color);
}
#achievements .counter-box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 6px 18px rgba(9, 11, 32, 0.05);
  transition: all 0.3s ease;
}
#achievements .counter-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(9, 11, 32, 0.08);
}
#achievements .counter {
  font-size: 2.5rem;
  color: var(--bs-secondary);
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}
#achievements .counter-box:hover .counter {
  color: var(--bs-primary);
}

/* =========================
   🔹 Product / Gallery helpers
   ========================= */
/* Base (mobile): horizontal thumbnails */
.thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  order: 2;
}
.flex-fill {
  order: 1;
}
.thumb-btn {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.12s;
}

.thumb-btn img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.thumb-btn.active,
.thumb-btn:hover {
  border-color: #0d6efd;
  box-shadow: 0 6px 14px rgba(13, 110, 253, 0.12);
  transform: translateY(-2px);
}

/* Desktop: vertical thumbnail list */
@media (min-width: 768px) {
  .gallery-wrapper {
    align-items: flex-start;
  }

  .thumbs {
    flex-direction: column;
    min-width: 190px;
    gap: 0.75rem;
    order: 1;
  }
  .flex-fill {
    order: 2;
  }

  .thumb-btn img {
    width: 100px;
    height: 90px;
  }
}

/* Main image */
#mainImage {
  max-width: 100%;
  border-radius: 10px;
  transition: opacity 0.18s ease;
}

/* Screen-reader helper */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Project gallery item */
.project-item {
  overflow: hidden;

  transition: transform 0.3s ease;
}
.project-item:hover {
  transform: scale(1.05);
}

/* =========================
   🔹 Product & Cards
   ========================= */
.product-card {
  border: 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.product-section {
  background: url("../img/product-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.product-section .card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--bs-primary);
  text-transform: uppercase;
}
.product-section p {
  text-align: left;
}

.card-body-bg {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  border-radius: 0 0 0.5rem 0.5rem;
}

.product-card1 {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.product-card1:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}
.badge-category {
  background: rgba(13, 110, 253, 0.08);
  color: var(--accent);
  font-weight: 600;
}
.img-placeholder {
  aspect-ratio: 4/3;
  background: #f6f7fb;
  display: block;
  border-radius: 0.375rem;
  overflow: hidden;
}
.category-item.active {
  background: linear-gradient(90deg, #e8f0ff, white);
  border-left: 3px solid var(--accent);
}
.vis-hidden {
  display: none !important;
}
/* Industries */
.industries-section .card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}
.industries-section .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--bs-secondary);
  transition: width 0.3s ease;
}
.industries-section .card:hover::after {
  width: 100%;
}
.industries-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.industries-section .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.industries-section .icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.industries-section h5 {
  font-size: 18px;
  color: var(--bs-primary);
}

/* =========================
   🔹 Clients / Logo scroll
   ========================= */
.logo-scroll-wrapper {
  overflow: hidden;
  padding: 1rem 0;
}
.logo-scroll {
  display: flex;
  animation: scroll-left 40s linear infinite;
  width: calc(12 * 150px * 2);
}
.logo-scroll:hover {
  animation-play-state: paused;
}
.logo-scroll img {
  width: 150px;
  height: 80px;
  object-fit: contain;
  margin-right: 1rem;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-150px * 12));
  }
}

/* =========================
   🔹 Testimonial
   ========================= */
.testimonial-section {
  background: url("../img/client/clients-testimonials-background.png") center
    center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* overlay for testimonial is a slight tint above the background */
.testimonial-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.025);
  z-index: 1;
}

.testimonial-section .container {
  position: relative;
  z-index: 2;
}
.testimonial-box {
  max-width: 700px;
}

.testimonial-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #fff;
  margin: 0 auto;
  display: block;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: 0.3s;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translateY(-50%);
  padding: 4px;
  z-index: 3;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #0d6efd;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 12px;
  height: 12px;
}
.custom-prev {
  left: 10%;
}
.custom-next {
  right: 10%;
}

.testimonial-box p {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

@media (max-width: 767px) {
  .testimonial-box {
    max-width: 100%;
  }
  .custom-prev {
    left: 1%;
  }
  .custom-next {
    right: 1%;
  }
  .testimonial-img {
    width: 100px;
    height: 100px;
    border: 4px solid #fff;
    margin: 0 auto;
    display: block;
  }
}

/* =========================
   🔹 Blog / Cards
   ========================= */
.blog-card {
  transition: all 0.4s ease;
  transform: translateY(0);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.blog-card img {
  transition: transform 0.5s ease;
}
.blog-card:hover img {
  transform: scale(1.1);
}

.blog-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.4;
  line-height: 1.2;
}
.blog-content a {
  color: var(--bs-secondary);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   🔹 Underline / Headings variants
   ========================= */
.stylish-heading {
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.stylish-heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--bs-primary), var(--bs-secondary));
  margin: 8px auto 0;
  border-radius: 2px;
}
.stylish-heading.small-underline::after {
  width: 100px;
  height: 2px;
}
.stylish-heading.large-underline::after {
  width: 200px;
  height: 4px;
}

/* small utility */
.no-radius {
  border-radius: 0 !important;
}

/* =========================
   🔹 Footer
   ========================= */
.footer {
  background-color: #090b20;
  color: #cfd2e6;
  font-family: "Poppins", sans-serif;
  animation: fadeIn 0.8s ease-in-out;
}
.footer-heading {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-text {
  font-size: 0.875rem;
  color: #aab0cf;
  line-height: 1.6;
}
.footer-links li {
  list-style: none;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #aab0cf3d;
}
.footer-links li:last-child {
  border-bottom: none;
}
.footer-links a {
  color: #cfd2e6;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.875rem;
}
.footer-links a:hover {
  color: #0d6efd;
}

.footer-contact li {
  list-style: none;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
  color: #cfd2e6;
}
.footer-contact a {
  color: #cfd2e6;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #0d6efd;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
}
.footer-bottom-text {
  color: #aab0cf;
}

.social-icons a {
  color: #cfd2e6;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: #0d6efd;
  transform: scale(1.1);
}

.map iframe {
  filter: brightness(0.9);
  border-radius: 8px;
}

/* fadeIn used by footer */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   🔹 Utilities / Small text classes
   ========================= */
.about-us .about-overlap {
  width: 45%;
  bottom: -30px;
  right: 40px;
}
.about-us .about-bg {
  width: 100%;
  top: -20px;
  right: 20px;
}
.about-us .about-main {
  width: 80%;
}

.txt-primary {
  color: var(--bs-primary);
  font-size: 40px;
}
.txt-secondary {
  color: var(--bs-secondary);
}

/* title */
.section-title h2 {
  font-size: 2rem;
  color: var(--white-color);
  text-transform: capitalize;
}
.title-underline {
  width: 80px;
  height: 3px;
  background-color: var(--bs-secondary);
  border-radius: 2px;
}

/* =========================
   🔹 Misc small fixes
   ========================= */
/* Make sure testimonial and carousel overlays use z-index layering consistently */
.carousel-caption.caption-center {
  z-index: 2;
}

/* small correction: testimonial-box font fallback is body-font */
.testimonial-box p {
  font-family: var(--body-font);
}

/* =========================
   🔹Feature Section
   ========================= */
/* =========================
   🔹 Feature Section Styling
   ========================= */

.feature-section {
  --accent: #00b5e2;
}

/* Image styling */
.feature-media img {
  width: 80%;
  height: auto;
  object-fit: cover;
  border-radius: 0.75rem;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.feature-media img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* Text column */
.feature-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #0b1730;
  position: relative;
  margin-bottom: 1rem;
}

.feature-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #e91e63);
  border-radius: 2px;
  margin-top: 10px;
}

.feature-content p.lead {
  font-size: 1rem;
  color: #1f2937;
  line-height: 1.6;
}

.feature-content p.text-muted {
  font-size: 0.95rem;
  color: #6b7280 !important;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .feature-row {
    text-align: center;
  }
  .feature-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767.98px) {
  .feature-media img {
    width: 100%;
  }
}

/* Second Small Feature Section */
.feature-card {
  background: #fff;
  border-radius: 12px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--bs-secondary);
  transform: scale(1.07);
}

.feature-card:hover .feature-img {
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .feature-icon {
    width: 65px;
    height: 65px;
  }
  .feature-img {
    width: 40px;
    height: 40px;
  }
}
.feature-card h3 {
  font-size: 1.02rem;
  font-weight: 500;
}
.feature-card p {
  text-align: justify;
}

/* About Digital Podium Content */

#about-digital-podium p {
  font-size: 0.9rem;
  line-height: 1.7;

  margin-bottom: 1rem;
}
#about-digital-podium h2 {
  font-size: 1.75rem;
  color: #0d6efd;
}
@media (max-width: 768px) {
  #about-digital-podium h2 {
    font-size: 1.5rem;
  }
}
/* VIDEO */

.video-card {
  background: #fff;
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#videos h2 {
  font-size: 1.8rem;
}

#videos p {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  #videos h2 {
    font-size: 1.5rem;
  }
}
/* TABLE */
table tr td:first-child {
  font-weight: 500;
  color: var(--text-color);
  width: 30%;
  white-space: nowrap;
}
/* FAQ */
/* FAQ Section Styling */
.faq-section {
  max-width: 1000px;
  margin: 0px auto;
  padding: 20px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.faq-header {
  background: #f8f9fa;
  padding: 5px 20px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.faq-header:hover {
  background: #e9ecef;
}

.faq-icon {
  font-size: 30px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-body {
  padding: 15px 20px;
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Change icon when open */
.faq-header.collapsed .faq-icon::before {
  content: "+";
  color: var(--bs-primary);
}

.faq-header:not(.collapsed) .faq-icon::before {
  content: "-";
  color: var(--bs-secondary);
}
/* Also Like Products */
.related-products {
  background: linear-gradient(135deg, #f8f9fb 0%, #e9eef5 100%);
}
.related-products h5 {
  font-size: 1.02rem;
  font-weight: 500;
}
.hover-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.card-img-top {
  object-fit: contain;
  border-radius: 8px 8px 0 0;
}
.benefit-card {
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid rgba(22, 120, 211, 0.05);
  box-shadow: var(--card-elev);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
  background-clip: padding-box;
}
.benefit-card:hover,
.benefit-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(22, 120, 211, 0.12);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(22, 120, 211, 0.12);
  flex-shrink: 0;
}
.icon-circle svg {
  display: block;
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-size: 1rem;
  color: #0b2140;
}
.benefit-card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.9rem;
}

@media (max-width: 575.98px) {
  .icon-circle {
    width: 56px;
    height: 56px;
  }
}
.prompter-benefits img {
  width: 50px;
  height: 50px;
}
/* CONTACT US PAGE STYLE */
.contact-hero {
  position: relative;
  height: 360px; /* your image height */
  background: url("../img/contact-banner.webp") center/cover no-repeat;
}

/* dark overlay */
.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* heading + text on top */
.contact-hero .hero-text {
  position: relative;
  z-index: 2; /* puts text ABOVE overlay */
}

.contact-hero h1 {
  font-size: 42px;
}

@media (max-width: 768px) {
  .contact-hero {
    height: 260px;
  }

  .contact-hero h1 {
    font-size: 30px;
  }
}
.info-card {
  background: #f5f5f5;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: #1678d3;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.enquiry-section input,
.enquiry-section textarea {
  border-radius: 10px;
}

.enquiry-section .form-control:focus {
  box-shadow: none;
  border-color: #1678d3;
}

.btn-primary {
  background-color: #1678d3;
  border: none;
}

.btn-primary:hover {
  background-color: #0f60a8;
}

/* Resources Section */
.guide-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  text-align: center;
}

.guide-link {
  color: #1678d3;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
}

.guide-link:hover {
  text-decoration: underline;
}

/* Optional – icon alignment */
.guide-link i {
  margin-right: 5px;
  font-size: 1.2rem;
}
/* ALL PRODUCTS */

/* Card elevation and hover */
.product-card1 {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.product-card1:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

/* Category badge */
.badge-category {
  background: rgba(13, 110, 253, 0.08);
  color: var(--accent);
  font-weight: 600;
}

/* Image placeholder and product images */
.img-placeholder {
  aspect-ratio: 4/3;
  background: #f6f7fb;
  display: block;
  border-radius: 0.375rem;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
}

/* Category active visual */
.category-item.active {
  background: linear-gradient(90deg, #e8f0ff, white);
  border-left: 3px solid var(--accent);
}

/* Hide helper */
.vis-hidden {
  display: none !important;
}

/* Sticky sidebar offset (replaces inline top: 1rem) */
.sticky-offset {
  top: 1rem;
}

/* Small helper for search input max width (keeps header tidy) */
.search-input {
  max-width: 520px;
}
.product-item a {
  color: var(--bs-secondary);
  font-weight: 500;
}
.product-item a:hover {
  color: var(--bs-primary);
  text-decoration: underlineslider-section;
}
/* PRIVACY POLICY */
.privacy-policy h1 {
  font-size: 2rem;
}

.privacy-policy h2 {
  font-size: 1.35rem;
  font-weight: 600;
}

.privacy-policy h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

.privacy-policy p,
.privacy-policy li {
  line-height: 1.7;
  color: #444;
  list-style-type: disc;
}

/* Price Page Section */
/* Digital Podium Price Intro */
.podium-price-intro {
  background-color: #f5f7fb; /* clean, corporate, not flashy */
}

.podium-price-intro h1 {
  font-size: 2.2rem;
}

.podium-price-intro p {
  line-height: 1.7;
  color: #444;
}

/* Digital Podium Price Section */
.podium-price-section {
  background-color: #ffffff;
}

/* Card */
/* Base Card */
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 30px;
  height: 100%;
  border: 1px solid #eaeaea;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}

/* Hover Effect */
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--bs-primary);
}

/* Highlight Card (Economic) */
.price-card.highlight {
  border-left: 6px solid var(--bs-secondary);
}

.price-card.highlight:hover {
  border-left-color: var(--bs-primary);
}

/* Model Title */
.price-card .model {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Price */
.price-card .price {
  font-weight: 600;
  margin: 15px 0 25px;
}

/* Features */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}
.price-card:hover .btn {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

/* GeM Section */

/* GeM Products Section */
.gem-products {
  background-color: #ffffff;
}

/* Card */
.gem-card {
  padding: 10px;
  transition: all 0.35s ease;
}

.gem-card img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  transition: all 0.35s ease;
}

/* Hover Effect */
.gem-card:hover img {
  transform: scale(1.05);
}

/* Title Link */
.gem-link {
  text-decoration: none;
  color: #0d6efd;
  font-weight: 600;
}

.gem-link:hover {
  text-decoration: underline;
}

.bg-section {
  background-color: var(--bs-primary);
}
.bg-section h2 {
  color: var(--light-gray);
}
/* 404 Section */

.error-section {
  min-height: 80vh;
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

.error-visual {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.error-visual span {
  font-size: 96px;
  font-weight: 700;
  color: #dc3545;
  letter-spacing: 2px;
}
.error-visual {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.explore-links {
  font-size: 14px;
}

.explore-item {
  color: #0d6efd;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.explore-item i {
  font-size: 14px;
  margin-right: 4px;
}

.explore-item:hover {
  color: #084298;
  text-decoration: underline;
}

.dot-separator {
  margin: 0 8px;
  color: #adb5bd;
}
