/* ===== CSS Variables & Reset ===== */
:root {
  --primary: #0a1628;
  --primary-light: #132040;
  --accent: #00b4d8;
  --accent-dark: #0096b7;
  --accent-light: #90e0ef;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --bg-light: #f4f8fb;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

@font-face {
  font-family: "FormaDJRMicro-Regular";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("https://in-media.apjonlinecdn.com/static/version1778619266/frontend/HPOLS/stellar/en_US/fonts/FormaDJR/FormaDJRMicro-Regular.woff2")
      format("woff2"),
    url("https://in-media.apjonlinecdn.com/static/version1778619266/frontend/HPOLS/stellar/en_US/fonts/FormaDJR/FormaDJRMicro-Regular.woff")
      format("woff");
}

@font-face {
  font-family: "FormaDJRMicro-Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url("https://in-media.apjonlinecdn.com/static/version1778619266/frontend/HPOLS/stellar/en_US/fonts/FormaDJR/FormaDJRMicro-Bold.woff2")
      format("woff2"),
    url("https://in-media.apjonlinecdn.com/static/version1778619266/frontend/HPOLS/stellar/en_US/fonts/FormaDJR/FormaDJRMicro-Bold.woff")
      format("woff");
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "FormaDJRMicro-Regular", "Inter", trebuchet, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.logo-text {
  font-family: "FormaDJRMicro-Regular", "Inter", trebuchet, sans-serif;
}

.btn,
button,
input,
select,
textarea {
  font-family: "FormaDJRMicro-Regular", "Inter", trebuchet, sans-serif;
}

.btn-primary,
.btn-outline,
.btn-sm {
  font-weight: 700;
  font-family: "FormaDJRMicro-Bold", "Inter", trebuchet, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}

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

.section-padding {
  padding: 80px 0;
}
.bg-light {
  background: var(--bg-light);
}
.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 2rem;
}

/* ===== Typography ===== */
.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-desc {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
}

.btn-full {
  width: 100%;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.top-bar a {
  color: var(--accent-light);
}

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

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

/* ===== Header ===== */
.main-header {
  background: var(--white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  display: block;
  width: 160px;
  height: 48px;
  object-fit: contain;
}

.logo-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-weight: 800;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  flex-direction: column;
}

.logo-text small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
}

.main-nav ul {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 8px 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 180, 216, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #081224 0%, #102746 48%, #0a1628 100%);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}

.hero-slide {
  flex: 0 0 100%;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 70px 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(144, 224, 239, 0.12);
  color: var(--accent-light);
  font-size: 0.8rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 1.08rem;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
}

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

.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-actions .btn-outline:hover {
  border-color: var(--accent);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 6%;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(0, 180, 216, 0.28),
    rgba(255, 255, 255, 0.04)
  );
  filter: blur(0.5px);
}

.hero-bg-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: cover;
  object-position: center;
  transform: translateY(0) scale(1.01);
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.25));
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--accent);
}

.hero-prev {
  left: 22px;
}
.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots .dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ===== Features Strip ===== */
.features-strip {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.features-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-item i {
  font-size: 2rem;
  color: var(--accent);
}

.feature-item h4 {
  font-size: 1rem;
  color: var(--primary);
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.feature-item p a {
  color: var(--accent);
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.about-list i {
  color: var(--accent);
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.about-img-placeholder i {
  font-size: 4rem;
  margin-bottom: 12px;
}

.about-img-placeholder span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== Product Cards ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-img {
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img i {
  font-size: 1.8rem;
  color: var(--accent);
}

.product-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== Why Us Section ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 4px;
}

.why-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.why-feature p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.why-us-img-placeholder {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-img-placeholder i {
  font-size: 5rem;
  color: var(--accent-light);
  opacity: 0.5;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--accent-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* ===== Industries Section ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.industry-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.industry-actions {
  display: flex;
  gap: 10px;
}

/* ===== Brands Section ===== */
.brands-marquee {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}

.vibrant-slider-shell {
  position: relative;
  margin-top: 28px;
}

.vibrant-slider-viewport {
  overflow: hidden;
  border-radius: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.vibrant-product-slider {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  scroll-behavior: smooth;
}

.vibrant-product-slider .ttm-box-col-wrapper {
  flex: 0 0 calc(100% / var(--items-per-view, 5));
  max-width: calc(100% / var(--items-per-view, 5));
  padding: 12px;
  scroll-snap-align: start;
}

.vibrant-slider-card {
  display: block;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.vibrant-slider-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.vibrant-card-img-box {
  aspect-ratio: 1 / 1;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(0, 180, 216, 0.08), transparent 55%),
    #ffffff;
}

.vibrant-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vibrant-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px 18px;
}

.vibrant-card-title {
  color: var(--primary);
  font-size: 0.98rem;
  line-height: 1.3;
}

.vibrant-card-arrow-wrapper {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
}

.vibrant-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.vibrant-slider-btn:hover {
  background: var(--accent);
}

.vibrant-prev {
  left: -14px;
}

.vibrant-next {
  right: -14px;
}

.vibrant-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.vibrant-slider-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 180, 216, 0.22);
  cursor: pointer;
}

.vibrant-slider-dots .dot.active {
  background: var(--accent);
  transform: scale(1.15);
}

.brand-item {
  flex-shrink: 0;
}

.brand-placeholder {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 32px;
  font-weight: 600;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.brand-placeholder:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== Quote Section ===== */
.quote-section {
  background: var(--primary);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quote-info h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}

.quote-info p {
  color: var(--accent-light);
  margin-bottom: 20px;
}

.quote-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-info li {
  color: var(--white);
  font-size: 0.95rem;
}

.quote-info li i {
  color: var(--accent);
  margin-right: 10px;
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
}

.quote-form h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.quote-form > p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: trebuchet;
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

/* ===== GEM Section ===== */
.gem-section {
  padding: 40px 0;
  background: var(--bg-light);
}

.gem-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--accent);
}

.gem-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.gem-badge i {
  font-size: 2.5rem;
  color: var(--accent);
}

.gem-badge h4 {
  font-size: 1.1rem;
  color: var(--primary);
}

.gem-badge p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== Footer ===== */
.main-footer {
  background: var(--primary);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

.footer-logo .logo-text {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--accent-light);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

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

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ===== Floating Buttons ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.phone-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.phone-float:hover {
  transform: scale(1.1);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-grid,
  .why-us-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-section {
    min-height: 500px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 48px 28px 68px;
    text-align: center;
    gap: 24px;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-bg-image {
    max-width: 100%;
    object-fit: contain;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .vibrant-product-slider {
    --items-per-view: 3;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
  }

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

  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }

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

  .hero-section {
    min-height: 460px;
  }

  .hero-bg-image {
    object-position: center center;
  }

  .hero-prev,
  .hero-next {
    width: 40px;
    height: 40px;
  }

  .features-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .vibrant-slider-btn {
    width: 40px;
    height: 40px;
  }

  .vibrant-product-slider {
    --items-per-view: 1;
    width: 100%;
  }

  .vibrant-product-slider .ttm-box-col-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    padding: 10px;
  }

  .vibrant-prev {
    left: -8px;
  }

  .vibrant-next {
    right: -8px;
  }

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

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .top-bar-content {
    justify-content: center;
    flex-wrap: wrap;
  }

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

@media (max-width: 480px) {
  .hero-section {
    min-height: 420px;
  }

  .vibrant-product-slider {
    --items-per-view: 1;
    width: 100%;
  }

  .vibrant-product-slider .ttm-box-col-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }

  .hero-slide {
    padding: 36px 18px 60px;
  }

  .hero-copy p {
    font-size: 0.95rem;
  }

  .hero-visual {
    min-height: 210px;
  }

  .hero-prev,
  .hero-next {
    width: 38px;
    height: 38px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Page Banner ===== */
.page-banner {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 80px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.page-banner p {
  color: var(--accent-light);
  font-size: 1.1rem;
}

/* ===== Contact Info ===== */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 4px;
  width: 30px;
}

.contact-info-item h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-info-item a {
  color: var(--accent);
}

/* ===== Map Section ===== */
.map-section {
  width: 100%;
  line-height: 0;
}

.map-section iframe {
  width: 100%;
}

/* ===== Blog Section ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-img i {
  font-size: 3.5rem;
  color: var(--accent-light);
  opacity: 0.6;
}

.blog-content {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  background: rgba(0, 180, 216, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link:hover {
  gap: 10px;
}

/* ===== Blog Section on Homepage ===== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* brands loop code start */
.mp-wall-container {
  position: relative;
  width: 100%;
  padding: 30px 0;
  /* Soft Edge Fade Trick */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.mp-track {
  display: flex;
  width: 100%;
  gap: 20px;
}

.mp-logo-set {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  width: max-content;
  min-width: 100%;
}

/* Animation Timings (Slower because of so many logos) */
.scroll-left .mp-logo-set {
  animation: megaScrollLeft 100s linear infinite;
}

.scroll-right .mp-logo-set {
  animation: megaScrollRight 100s linear infinite;
}

.mp-track:hover .mp-logo-set {
  animation-play-state: paused;
}

@keyframes megaScrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}

@keyframes megaScrollRight {
  from {
    transform: translateX(calc(-100% - 20px));
  }
  to {
    transform: translateX(0);
  }
}

/* Individual Logo Cards */
.mp-logo-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px; /* Perfect size for a dense 3-row grid */
  height: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mp-logo-card:hover {
  transform: scale(1.08); /* Pop out effect */
  box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
  border-color: #0056b3;
  z-index: 10;
}

.mp-logo-card img {
  max-width: 120px;
  max-height: 70px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;

  /* Sleek Grayscale Look by Default */
  /* filter: grayscale(100%) opacity(50%); */
  transition: all 0.4s ease;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .mp-title {
    font-size: 34px;
  }
  .mp-glass-float {
    bottom: -15px;
    left: 15px;
  }
  .mp-logo-card {
    width: 130px;
    height: 80px;
  }
  .mp-logo-card img {
    max-width: 100px;
    max-height: 50px;
  }
}

/* brands loop code end */
/* products css start */
/* .clearfix::after {
  display: block;
  clear: both;
  content: "";
} */
.ttm-row {
  padding: 70px 0;
}
.ttm-row.zero-padding-section,
.ttm-row.zero-padding-section,
.ttm-row.map-section {
  padding: 0px 0 0px 0px;
  background: #374ca005;
}
.ttm-row.topzero-padding-section {
  padding: 0 0 90px;
}
.ttm-row.bottomzero-padding-section {
  padding: 90px 0 0px;
}
.ttm-row.history-section {
  padding-bottom: 60px;
}
.ttm-row.first-row-title-section {
  padding-top: 120px;
  padding-bottom: 190px;
  margin-top: 50px;
}
.ttm-row.team-section {
  padding-top: 160px;
}
.ttm-row.services-section {
  padding-bottom: 165px;
  padding-top: 180px;
}
.ttm-row.second-row-title-section {
  padding-top: 180px;
}
.ttm-row.our-partner-section {
  padding-bottom: 20px;
  padding-top: 120px;
}
.ttm-row.fid-section {
  padding-top: 315px;
}
.ttm-row.only-testimonial-section,
.ttm-row.grid-section {
  padding-bottom: 60px;
}
.ttm-row.third-row-title-section {
  padding-top: 320px;
}
.ttm-row.price-text-section {
  padding-bottom: 155px;
}
.ttm-row.our-client-section {
  padding-top: 30px;
  padding-bottom: 20px;
}
.ttm-row.aboutus-section-style3 {
  padding-bottom: 230px;
}
.ttm-row.services-slide-section {
  padding-bottom: 320px;
}
.ttm-row.contact-box-section {
  padding-top: 120px;
}
.ttm-row.project-single-section {
  padding-bottom: 70px;
}
.ttm-row.client-section {
  padding: 15px 0 10px;
}
.ttm-row.fid_2-section {
  padding: 47px 0;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
.ttm-boxes-spacing-10px.owl-carousel .owl-item {
  padding-right: 0px;
  padding-left: 0px;
  margin-top: 10px;
}
/* products css end */
