:root {
  --blue: #4f7cff;
  --light-blue: #eef3ff;
  --text-dark: #1a1a1a;
  --text-muted: #666;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #fff;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background-color: #212227;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 50px;
  font-weight: bold;

}
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
   gap: 30px;  
  top: 0;
  width: 80%;
  z-index: 1000; /* keeps it above page content */

}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #dbd9d9;
  font-size: 14px;
  letter-spacing: 1px;
  position: center;
  
}

.nav a:hover {
  color: #5370f3;
}

.btn-outline {
  padding: 10px 18px;
  background: #1e5bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("./images/hero-image.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
  color:#292828
}

.tagline {
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  opacity: 0.9;
}
.tagline h1{
  color: #000;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #0d0e0f;
}
/*HERO1*/
.hero1 {
  height: 100vh;
  background: url("./images/contact.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/*HERO2*/
.hero2 {
  height: 90vh;
  background: url(".") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #817f7f;
}
.overlay1 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content1 {
  position: relative;
  max-width: 800px;
  padding: 20px;
}

.tagline1 {
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  opacity: 0.9;
}
.tagline1 h1{
  color: #000;
}
.hero-content1 h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #0d0e0f;
}

.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: #1e5bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }

  .nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}
.about-section {
  padding: 100px 60px;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* Images */
.about-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

/* Center Content */
.about-content {
  text-align: center;
  padding: 0 20px;
}

.about-content .icon {
  font-size: 22px;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #111;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Button */
.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  background: #0b3fb8;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 32px;
  }
}
.product-hero {
  position: relative;
  height: 80vh;
  background: url("pump-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.product-content {
  position: relative;
  max-width: 600px;
  padding-left: 80px;
  color: #fff;
}
.product-content .icon {
  font-size: 28px;
  margin-bottom: 20px;
}
.product-content h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #0d0e0f;
}
.product-content h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000;
}

.product-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
  color: #000;
}

/* Reuse primary button */
.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  background: #0b3fb8;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-hero {
    height: auto;
    padding: 80px 0;
  }

  .product-content {
    padding: 0 30px;
  }

  .product-content h2 {
    font-size: 32px;
  }
}

/* Section */
.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  text-align: center;
}

.services-section h2 {

  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color:black;
}

.subtitle {
  font-size: 15px;
  color: var(--blue);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.service-card {
  border: 2px solid var(--blue);
  border-radius: 14px;
  padding: 28px 24px 32px;
  text-align: left;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(79, 124, 255, 0.15);
}

/* Icon */
.icon-box {
  width: 42px;
  height: 42px;
  background: var(--light-blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 18px;
}

/* Text */
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  text-decoration: #1e5bff;
  color: #1a1a1a;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 600px) {
  .services-section h2 {
    font-size: 26px;
  }
}

.btn {
  display: inline-block;
  background: #0b4cff;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #083bd1;
}

.hero-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}
.hero-image1 img {
  width: 80%;
  border-radius: 18px;
  object-fit: cover;
}
.hero-content h1 {
  color: #0b4cff;

}

/* TESTIMONIAL SECTION */
.testimonial {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px 80px;
  text-align: center;
}

.testimonial h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.testimonial-image img {
  width: 50%;
  border-radius: 18px;
  object-fit:contain;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}
.faq-section {
  max-width: 850px;
  margin: 60px auto 90px;
  padding: 0 18px;
}

.faq-section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #0b3fb8;
}

.faq-list {
  margin-top: 10px;
}

.faq-item {
  border-bottom: 1px solid #e2e1e1;
  padding: 16px 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 15px;
  font-weight: 500;
}
.faq-item summary span{
  color: #6a70c0;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .icon {
  font-size: 20px;
}

.faq-item[open] .icon {
  transform: rotate(45deg);   /* makes + become × */
}

.faq-item p {
  margin-top: 12px;
  color: #555;
  line-height: 1.6;
  font-size: 14px;
  max-width: 700px;
}

/* subtle hover */
.faq-item summary:hover {
  color: #0b4cff;
}
/* CTA PANEL */
.cta-panel {
  display: flex;
  justify-content: center;
  padding: 60px 20px 20px;
}

.cta-content {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(90deg, #0d2c7a, #4aa2ff);
  padding: 36px;
  border-radius: 18px;
  color: #fff;
}

.cta-text h3 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 700;
}

.cta-text p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 20px;
}

.cta-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cta-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 20px;
  border: none;
  outline: none;
}

.cta-form button {
  background: #062c8c;
  border: none;
  padding: 9px 18px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  transition: opacity .2s ease;
}

.cta-form button:hover {
  opacity: .8;
}
                                                 
/*footer*/
.footer {
  background:#0d1625;
  padding:50px 8%;
  color:#cfd7e0;
}

.footer-top {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:40px;
}

.footer-col h5 {
  color:#fff;
  margin-bottom:12px;
}

.footer-col a {
  display:block;
  margin:6px 0;
  color:#cfd7e0;
  text-decoration:none;
}

.footer-col a:hover { color:#5ca9ff; }

.footer-logo { width:150px; margin-bottom:10px; }

.tagline { margin:10px 0 15px; }

.footer-socials a {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#1b2536;
  margin-right:8px;
}

.flag {
  font-size:10px;
  padding:2px 6px;
  border-radius:6px;
  background:rgba(255,255,255,.15);
}

.footer-bottom {
  margin-top:25px;
  text-align:center;
  font-size:14px;
  opacity:.8;
}

.page-hero {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #6a82c9;
}

.page-hero h1 {
  margin-bottom: .5rem;
}

.products-grid {
  width: min(1200px, 94%);
  margin: 2rem auto 4rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: #0f172a;
  padding: 1rem;
  transition: .2s ease;
}

.card:hover {
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.card h3 {
  font-size: 14px;
  margin: .8rem 0 .2rem;
}

.card .count {
  font-size: 11px;
  color: #6b7280;}

  .product {
  padding: 40px 8%;
}
/*PRODUCT_GRID1*/
.products-grid1 {
  width: min(1200px, 94%);
  margin: 2rem auto 4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.card1 {
  background: #fff;

  border-radius: 12px;
  text-decoration: none;
  color: #0f172a;
  padding: 1rem;
  transition: .2s ease;
}

.card1:hover {
 
  transform: translateY(-2px);
}

.card1 img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.card1h3 {
  font-size: 14px;
  margin: .8rem 0 .2rem;
}

.card1 .count {
  font-size: 11px;
  color: #6b7280;}

  .product {
  padding: 40px 8%;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

.product-image img {
  width: 100%;
  max-width: 360px;
}

.product-content h1 {
  margin: 0 0 10px;
  font-size: 26px;
}
.product-content p {
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
}
.aside-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 4rem;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
  }

  .aside-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: white;
  }

  .aside-card ul {
    list-style: none;
    padding: 0;
  }

  .aside-card li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .aside-card strong {
    color: #a0d0ff;
  }

  .aside-highlight {
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.3);
  }

  .aside-visuals {
    display: grid;
    gap: 1rem;
  }

  .aside-visuals figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
  }

  .aside-visuals img {
    width: 80%;
    height: auto;

  }


.subtitle {
  color: #777;
  margin-bottom: 15px;
}

.price {
  font-size: 22px;
  margin: 15px 0;
}

.qty-row {
  display: inline-flex;
  align-items: center;
  margin: 10px 0 15px;
}

.qty-row input {
  width: 45px;
  text-align: center;
}

.qty-row button {
  width: 26px;
  height: 26px;
}

.btn {
  background: #1e2b72;
  color: white;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
}

.btn.small {
  padding: 6px 10px;
}

.add-cart {
  margin-bottom: 10px;
}

.sku {
  font-size: 13px;
  color: #666;
}

.safe-checkout img {
  height: 30px;
  margin-right: 6px;
}

.section {
  padding: 25px 8%;
}
.section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #000;
}
.section p {
  color: #444;
  line-height: 1.6;
}

.related {
  padding: 30px 8% 60px;
  color: #000;
}

.related-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.card img {
  width: 100%;
}

.card h4 {
  font-size: 14px;
  margin: 12px 0;
}

@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}
/* WRAPPER */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 50px 9%;
}

/* LEFT SIDE */
.contact-left h2 {
  color: #000000;
  margin-bottom: 10px;
}

.contact-left h3 {
  margin-top: 15px;
  color: #5683cf;
}

.contact-left p {
  margin: 5px 0;
  font-size: 15px;
  color: #000;
}

/* RIGHT BOX */
.contact-right {
  background: #4e94eb;
  color: white;
  padding: 25px 30px;
  border-radius: 5%;
}

.contact-right h2 {
  margin-top: 0;
}

.contact-right label {
  font-size: 14px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 8px 10px;
  border: none;
  margin-bottom: 15px;
}

.send-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: #fc2a2a;
  color: white;
  cursor: pointer;
  font-size: 15px;
}

/* MAP */
.map iframe {
  margin-top: 20px;
  display: block;
  width: 100%;
  border: none;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .contact-wrapper{
    grid-template-columns: 1fr;
  }
}
/* Header container */
.site-header {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background: #ffffff;  /* change if needed */
  position: sticky;     /* stays at top on scroll */
  top: 0;
  z-index: 1000;
}

/* Logo styling */
.logo img {
  height: 100px;        /* adjust size */
  width: auto;
  display: block;
}

/* Optional hover */
.logo a:hover {
  opacity: 0.9;
}
/* Navigation menu */
.brands-section {
  text-align: center;
  padding: 50px 8%;
  background: #fff;
}

.brands-section h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.brands-section .intro {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.brands-section .sub {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.brand-logos img {
  height: 55px;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: .2s ease;
}

.brand-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.hero-about {
  background: url("images/factory-hero.jpg") center/cover no-repeat;
  height: 340px;
  position: relative;
}

.hero-about .overlay {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 8%;
  background: rgba(0,0,0,.35);
}

.hero-about h1 {
  color: #fff;
  font-size: 34px;
  max-width: 550px;
}
.section.about-two {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 60px 8%;
}

.section.about-two img {
  width: 100%;
  border-radius: 4px;
}

.section.about-two h2 {
  color: #0b4da2;
}
.quote-banner {
  background: url("./images/about/Pumps\ \(13\).jpg") center/cover;
  height: 260px;
  position: relative;
}

.quote-banner .overlay {
  height: 100%;
  background: rgba(0,0,0,.35);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quote-banner p {
  color: #fff;
  font-size: 22px;
  max-width: 650px;
}
.profile {
  padding: 60px 8%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
 

}
.profile h2{
  color: #0b4cff;
}
.profile p{
  color: #535151;
}
.profile img {
  width: 80%;
  border-radius: 10px;
}
.profile .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.profile .ul{
  margin-top: 15px;
  color: #000;
}
.profile ul li {
  margin-bottom: 8px;
  color: #414346;
}
.profile ul li::marker {
  color: #0b4cff;
}
.profile ul li:hover {
  color: #0b4cff;
}
.profile .container { padding: 40px 8%; }
.container { padding: 40px 8%; }

/* Title section */
.product-hero h1 {
  font-size: 32px;
  color:#0b4cff
}
.content1{
  color: #000;
}

.product-hero .lead {
  margin-top: 8px;
  font-weight: 600;
  color: #000000;
}
.product-hero p {
  margin-top: 8px;
  
  
  color: #000000;
}

/* Main layout */
.product-body {
  padding: 35px 8%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
}

/* Buttons */
.action-buttons {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.btn {
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn.primary { background:#0b4da2; color:#fff; }
.btn.secondary { background:#e8e8e8; color:#222; }
.btn.quote { background:#19b14a; color:#fff; width:100%; }

/* Quote form box */
.quote-box {
  border: 1px solid #ddd;
  padding: 18px;
}

.quote-box input,
.quote-box textarea {
  width:100%;
  margin-bottom:10px;
  padding:9px;
}
.footer-logo {
  height: 55px;
  margin-bottom: 12px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
}
.about-hero {
  background:#f5f9ff;
  padding:80px 0 60px;
  text-align:center;
}

.hero-inner { max-width:850px; margin:auto; }

.hero-badge {
  display:inline-block;
  background:#e8f0ff;
  color:#1e63ff;
  padding:8px 16px;
  border-radius:999px;
  font-size:14px;
  margin-bottom:18px;
}

.about-hero h1 {
  font-size:38px;
  font-weight:800;
  line-height:1.2;
  color: #2d5be4;
}

.highlight { color:#1e63ff; }

.hero-text {
  margin-top:18px;
  color:#000000;
  line-height:1.7;
  font-size:16px;
}

/* STATS BAR */
.stats-bar {
  background:#1559ff;
  color:#fff;
  padding:45px 0;
}

.stats-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:25px;
  text-align:center;
}

.stat h2 {
  font-size:34px;
  margin-bottom:6px;
}

.stat p {
  font-size:14px;
  opacity:.9;
}
.applications-section {
      padding: 4rem 2rem;
      background: #ffffff;
    }

    .applications-title {
      text-align: center;
      font-size: 2.25rem;
      font-weight: 700;
      margin-bottom: 3rem;
      color: #0f172a;
    }

    .applications-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 1600px;
      margin: 0 auto;
    }

    /* Mobile horizontal scroll fallback */
    @media (max-width: 900px) {
      .applications-grid {
        grid-template-columns: repeat(6, 260px); /* force horizontal scroll */
        overflow-x: auto;
        gap: 1.25rem;
        padding: 0 1rem 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }
      
      .applications-grid::-webkit-scrollbar {
        height: 8px;
      }
      
      .applications-grid::-webkit-scrollbar-thumb {
        background: #94a3b8;
        border-radius: 4px;
      }
    }

    .app-card {
      position: relative;
      height: 320px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .app-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
    }

    .app-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .app-card:hover img {
      transform: scale(1.08);
    }

    .app-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2.5rem 1.5rem 1.25rem;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.0) 100%);
      color: white;
      text-align: center;
      font-size: 1.25rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Optional: Add subtle overlay gradient on hover */
    .app-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 82, 204, 0.35), transparent 60%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .app-card:hover::after {
      opacity: 1;
    }