/* About Us Page - Professional Corporate Design */
* {
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

/* Corporate Color Palette */
:root {
  --corporate-blue: #055bb1;
  --corporate-orange: #fa8e36 !important;
  --corporate-white: #ffffff;
  --corporate-gray: #6b7280;
  --corporate-light-gray: #f8fafc;
  --corporate-border: #e5e7eb;
  --corporate-dark: #1f2937;
}

/* Updated hero section with tech pattern and no button */
.hero-section {
  background:linear-gradient(135deg, #015cb1 0%, #1e4caf 100%);
  color: white;
  padding: 140px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.geometric-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.tech-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="tech" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,102,0,0.1)"/><path d="M0,20 L40,20 M20,0 L20,40" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23tech)"/></svg>'); */
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brand-accent {
  color: var(--corporate-orange);
  font-weight: 700;
}

.brand-blue{
  color:#015cb1;
}

.hero-tagline {
  font-size: 1.6rem;
  line-height: 1.4;
  opacity: 0.95;
  max-width: 750px;
  margin: 0 auto 32px;
  font-weight: 600;
  color: var(--corporate-orange);
}

.hero-intro {
  max-width: 900px;
  margin: 0 auto;
}

.hero-intro p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Updated Company Overview section with two-column layout and tech background */
.company-overview-section {
  padding: 100px 0;
  background-color: var(--corporate-white);
  position: relative;
  overflow: hidden;
}

.tech-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="techGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,51,102,0.03)" stroke-width="1"/><circle cx="25" cy="25" r="1" fill="rgba(255,102,0,0.05)"/></pattern></defs><rect width="200" height="200" fill="url(%23techGrid)"/></svg>');
  opacity: 0.6;
}

.company-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.company-content-split .company-visual {
  order: 1; /* Image first */
}

.company-content-split .company-text {
  order: 2; /* Text second */
}

.company-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.company-text {
  padding-right: 20px;
}

.company-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--corporate-gray);
  font-weight: 400;
}

.company-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
  transition: transform 0.3s ease;
}

.company-image:hover {
  transform: scale(1.02);
}

/* Mission section with split layout and professional image */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--corporate-light-gray) 0%, #e2e8f0 100%);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mission-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--corporate-dark);
  margin-bottom: 32px;
}

.mission-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--corporate-gray);
}

.mission-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
  transition: transform 0.3s ease;
}

.mission-image:hover {
  transform: scale(1.02);
}

/* Vision section with reversed split layout and professional image */
.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-content .vision-visual {
  order: 1; /* Image first */
}

.vision-content .vision-text {
  order: 2; /* Text second */
}

.vision-section {
  padding: 100px 0;
  background-color: var(--corporate-white);
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vision-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--corporate-dark);
  margin-bottom: 32px;
}

.vision-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--corporate-gray);
}

.vision-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.15);
  transition: transform 0.3s ease;
}

.vision-image:hover {
  transform: scale(1.02);
}

/* Products section with carousel navigation */
.products-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--corporate-light-gray) 0%, #e2e8f0 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--corporate-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--corporate-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--corporate-white);
  border: 2px solid var(--corporate-border);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background: var(--corporate-orange);
  color: white;
  border-color: var(--corporate-orange);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.products-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
  display: none;
}

.product-card {
  background: var(--corporate-white);
  padding: 50px 40px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid var(--corporate-border);
  min-width: 350px;
  flex-shrink: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--corporate-blue), var(--corporate-orange));
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--corporate-orange);
}

.product-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--corporate-blue), #01468b);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
}

.product-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--corporate-dark);
  margin-bottom: 20px;
}

.product-card p {
  color: var(--corporate-gray);
  line-height: 1.7;
  font-size: 1.05rem;
  flex-grow: 1;
  /* margin-bottom: 30px; */
}

.explore-btn {
  background: linear-gradient(135deg, var(--corporate-orange), #e55a00);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  min-width: 140px;
}

.explore-btn:hover {
  background: linear-gradient(135deg, #e55a00, var(--corporate-orange));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

/* Benefits section with 4-column grid */
.benefits-section {
  padding: 120px 0;
  background-color: var(--corporate-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--corporate-white);
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 2px solid var(--corporate-border);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--corporate-orange);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--corporate-blue), #004080);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
}

.benefit-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--corporate-dark);
  margin-bottom: 20px;
}

.benefit-card p {
  color: var(--corporate-gray);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Impact section with animated metrics */
.impact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--corporate-light-gray) 0%, #e2e8f0 100%);
}

.section-description {
  font-size: 1.3rem;
  color: var(--corporate-gray);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.metric-item {
  text-align: center;
  padding: 50px 30px;
  background: var(--corporate-white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--corporate-border);
  transition: all 0.4s ease;
}

.metric-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--corporate-orange);
}

.metric-number {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--corporate-blue);
  margin-bottom: 8px;
  display: inline-block;
}

.metric-suffix {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--corporate-orange);
  display: inline-block;
}

.metric-label {
  font-size: 1.2rem;
  color: var(--corporate-gray);
  font-weight: 600;
  margin-top: 10px;
}

/* Security section with animated background and shield effect */
.security-section {
  padding: 120px 0;
  background-color: var(--corporate-white);
  position: relative;
  overflow: hidden;
}

.security-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.02), rgba(255, 102, 0, 0.02));
}

.security-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="security" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,51,102,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23security)"/></svg>');
  animation: securityFloat 20s ease-in-out infinite;
}

@keyframes securityFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.security-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.security-card {
  background: var(--corporate-white);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
  border: 2px solid var(--corporate-border);
  transition: all 0.4s ease;
}

.security-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--corporate-orange);
}

.security-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  position: relative;
}

.shield-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.3));
  animation: shieldPulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes shieldPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.security-text p {
  color: var(--corporate-gray);
  line-height: 1.8;
  font-size: 1.2rem;
  margin: 0;
}

.compliance-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 25px;
  background: var(--corporate-white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--corporate-border);
  min-width: 120px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--corporate-orange);
}

.badge i {
  font-size: 2.5rem;
  color: var(--corporate-blue);
}

.badge span {
  font-weight: 700;
  color: var(--corporate-dark);
  font-size: 1.1rem;
}

/* Navigation styles */
nav.fixed-header {
  position: fixed !important;
  top: 0;
  z-index: 1000;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.nav-links a.active {
  color: var(--corporate-orange);
  font-weight: 600;
}

.mobile-menu a.active {
  color: var(--corporate-orange);
  font-weight: 600;
}

/* Enhanced responsive design for mobile devices */
@media (max-width: 1024px) {
  .company-content-split,
  .mission-content,
  .vision-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .company-text {
    padding-right: 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .carousel-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .hero-intro p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .mission-text h2,
  .vision-text h2 {
    font-size: 2.2rem;
  }

  .company-image,
  .mission-image,
  .vision-image {
    max-width: 400px;
  }

  .products-carousel {
    gap: 24px;
  }

  .product-card {
    min-width: 300px;
    padding: 40px 30px 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .security-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .compliance-badges {
    gap: 20px;
  }

  .carousel-container {
    padding: 0 20px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 120px 0 100px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .mission-section,
  .vision-section,
  .products-section,
  .benefits-section,
  .impact-section,
  .security-section {
    padding: 80px 0;
  }

  .company-overview-section {
    padding: 60px 0;
  }

  .company-image,
  .mission-image,
  .vision-image {
    max-width: 300px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .metric-number {
    font-size: 2.8rem;
  }

  .compliance-badges {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .products-carousel {
    padding: 10px 0 30px;
  }

  .product-card {
    min-width: 260px;
  }

  .carousel-nav {
    display: none;
  }
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: #f9fbfd;
  position: relative;
}

.products-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #003366;
  text-align: center;
}

.products-section .section-subtitle {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 40px;
  color: #555;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}

.products-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 50px 0;
  scrollbar-width: none;
}
.products-carousel::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  cursor: pointer;
  animation: fadeInUp 0.8s forwards;
}

.product-card:nth-child(1) { animation-delay: 0.2s; }
.product-card:nth-child(2) { animation-delay: 0.4s; }
.product-card:nth-child(3) { animation-delay: 0.6s; }
.product-card:nth-child(4) { animation-delay: 0.8s; }
.product-card:nth-child(5) { animation-delay: 1s; }

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-logo {
  height: 60px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: #003366;
}

.product-card p {
  font-size: 15px;
  color: #666;
  min-height: 80px;
  text-align: justify;
}

.explore-btn {
  margin-top: 15px;
  background: #015cb1;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #ff6600;
  transform: scale(1.05);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #015cb1;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 5;
}

.carousel-nav:hover {
  background: #ff9d00;
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.product-logo {
  display: block;
  width: 140px;       /* good visible size */
  height: auto;       /* keeps original proportions */
  margin: 0 auto 20px auto;
  object-fit: contain;
  background: none;   /* remove white/oval background */
  box-shadow: none;   /* remove any unwanted shadow */
  border-radius: 0;   /* no forced shape */
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect - clean and professional */
.product-card:hover .product-logo {
  transform: scale(1.15);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}
/* Content Coffer */
.product-card:nth-child(1):hover .product-logo {
  filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.6));
}

/* Regs Watch */
.product-card:nth-child(2):hover .product-logo {
  filter: drop-shadow(0 0 12px rgba(0, 153, 255, 0.6));
}

/* Vita Gist */
.product-card:nth-child(3):hover .product-logo {
  filter: drop-shadow(0 0 12px rgba(0, 200, 150, 0.6));
}

/* Lauditor */
.product-card:nth-child(4):hover .product-logo {
  filter: drop-shadow(0 0 12px rgba(200, 50, 50, 0.6));
}

/* DG Counsel */
.product-card:nth-child(5):hover .product-logo {
  filter: drop-shadow(0 0 12px rgba(100, 50, 200, 0.6));
}

.company-text,
.mission-text,
.vision-text {
  text-align: justify;
}

.company-text p,
.mission-text p,
.vision-text p {
  text-align: justify;
}


@media (max-width: 1024px) {
  .company-content-split,
  .mission-content,
  .vision-content {
    grid-template-columns: 1fr;
  }

  .company-content-split .company-visual,
  .company-content-split .company-text,
  .mission-content .mission-text,
  .mission-content .mission-visual,
  .vision-content .vision-visual,
  .vision-content .vision-text {
    order: unset; /* reset stacking for mobile */
  }
}
