/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

:root {
  --theme-color: #1a4fa3;
  --hero-subtext-color: rgba(255, 255, 255, 0.9);
  --hero-typed-color: #6cd0ff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--theme-color);
}

/* Container */
.container {
  width: 90%;
  margin: auto;
}

/* Navbar background */
.custom-navbar {
  background: #f8f9fb;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* Navbar toggler alignment */
.navbar-toggler {
  margin-left: auto;
}

/* Logo */
.navbar-brand img {
  height: 60px;
}

/* Menu links */
.nav-link {
  color: #222;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

/* Hover + Active */
.nav-link:hover,
.nav-link.active {
  color: #1a4fa3;
}

/* Underline effect */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #1a4fa3;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Contact Button */
.contact-btn {
  background: #198754;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
}

.contact-btn:hover {
  background: #26b170;
  color: #fff;
}

.admin-login-btn {
  border: 1px solid #1a4fa3;
  color: #1a4fa3;
  padding: 8px 18px;
  border-radius: 6px;
  background: #fff;
}

.admin-login-btn:hover {
  background: #1a4fa3;
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .right-section {
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Tablet / Small Laptop Fix */
@media (max-width: 1380px) and (min-width: 992px) {

  /* Reduce menu spacing */
  .navbar-nav .nav-link {
    margin: 0 6px;
    font-size: 14px;
  }

  /* Reduce logo size */
  .navbar-brand img {
    height: 45px;
  }

  /* Hide contact info (important fix) */
  .contact-info {
    display: none !important;
  }

  /* Adjust button size */
  .contact-btn {
    padding: 6px 14px;
    font-size: 13px;
  }

  .admin-login-btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}

/* HERO SECTION */
.hero {
  padding: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero .col-lg-6 {
  width: 100%;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.slide-left {
  opacity: 0;
  transform: translateX(-100%);
}

.hero-slide.slide-right {
  opacity: 0;
  transform: translateX(100%);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-slide .hero-content {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .hero-slide {
    justify-content: center;
  }

  .hero-slide .hero-content {
    margin: auto 0;
    text-align: center;
    max-width: 560px;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 28px !important;
  }

  .hero-subtext {
    font-size: 18px !important;
  }
}

.col-lg-7 {
  flex: 0 0 auto;
  width: 50% !important;
}

.col-lg-5 {
  flex: 0 0 auto;
  width: 50% !important;
}

@media (max-width:992px) {
  .col-lg-7 {
    flex: 0 0 auto;
    width: 100% !important;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 100% !important;
  }

}

.hero-slider-nav {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-slider-nav .hero-nav {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-slider-nav .hero-nav:hover {
  background: rgba(0, 0, 0, 0.55);
}

.hero-slider-nav .hero-prev {
  margin-left: 20px;
}

.hero-slider-nav .hero-next {
  margin-right: 20px;
}

.hero-slider .slick-dots {
  display: none;
}

/* Left Content */
.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtext {
  color: var(--hero-subtext-color);
  font-size: 20px;
  opacity: 0.9;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero-subtext-base {
  color: inherit;
}

.hero-subtext-dynamic {
  color: var(--hero-typed-color);
  white-space: nowrap;
  display: inline-block;
  transition: color 0.25s ease;
}

.hero-subtext-dynamic::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.2em;
  margin-left: 6px;
  background: var(--hero-typed-color);
  animation: hero-cursor-blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes hero-cursor-blink {
  50% {
    opacity: 0;
  }
}

/* Button */
.hero-btn {
  display: inline-block;
  background: linear-gradient(to right, #2c6ed5, #1a4fa3);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.hero-btn:hover {
  background: linear-gradient(to right, #1a4fa3, #163e82);
}

/* Right Image */
.hero-image img {
  width: 100%;
  max-width: 500px;
}

.inner-hero {
  background: linear-gradient(135deg, #0d2b4f 0%, #1a4fa3 55%, #3f7ddd 100%);
  padding: 90px 0;
  color: #fff;
}

.section-badge {
  display: inline-block;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inner-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #fff;
}

.inner-hero p {
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 0;
  opacity: 0.92;
}

.gallery-section {
  padding: 70px 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(18, 63, 121, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px rgba(18, 63, 121, 0.16);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 215px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 21px 26px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.whatsapp-float i {
  font-size: 1.1rem;
}

.whatsapp-float span {
  display: inline-block;
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    gap: 8px;
  }
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.08);
}

.gallery-item-content {
  padding: 22px 20px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.gallery-item-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--theme-color);
}

.gallery-item-content p {
  color: #556078;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .gallery-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}

.gallery-hero {
  background: linear-gradient(135deg, #0d2b4f 0%, #1a4fa3 55%, #3f7ddd 100%);
  color: #fff;
  padding: 17px 0;
}

.gallery-hero h1,
.gallery-hero p {
  color: #fff;
}

.gallery-item-label {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1a4fa3;
}

.gallery-item-row {
  border: 1px solid #e4ebf5;
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: #fbfcff;
}

.gallery-item-row .admin-form-group {
  margin-bottom: 12px;
}

.gallery-item-row small {
  display: block;
  color: #54637d;
  margin-top: 8px;
  font-size: 0.9rem;
}

.admin-card form>button {
  margin-right: 12px;
  margin-top: 8px;
}

.admin-card button#gallery-add-item {
  background: #2c6ed5;
  color: #fff;
  border: none;
  cursor: pointer;
}

.admin-card button#gallery-add-item:hover {
  background: #1a4fa3;
}


.about-highlight-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #fff;
}

.highlight-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.highlight-points div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight-points strong {
  min-width: 82px;
  font-size: 16px;
}

.highlight-points span {
  font-size: 14px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 480px) {
  .hero {
    text-align: center;
    padding: 28px 0;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-image {
    margin-top: 30px;
  }
}

@media (max-width: 481px-994px) {
  .hero {
    text-align: center;
    padding: 28px 0;
    background-position-x: 670px;
  }
}

/* Career Page */
.career-hero {
  background: linear-gradient(135deg, #0d2b4f 0%, #1a4fa3 55%, #3f7ddd 100%);
  color: #fff;
  padding: 90px 0;
}

.career-hero h1 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 700;
}

.career-hero p,
.career-hero .career-meta {
  color: rgba(255, 255, 255, 0.9);
}

.career-hero .career-meta span {
  display: inline-block;
  margin-right: 20px;
  font-size: 0.95rem;
}

.career-details {
  background: #f5f7fb;
  padding: 60px 0;
}

.career-details .custom-card {
  padding: 30px;
  border-radius: 20px;
}

.career-details h3 {
  color: var(--theme-color);
  margin-bottom: 18px;
}

.career-details p {
  color: #5d6778;
  line-height: 1.8;
}

.career-details ul {
  list-style: disc inside;
  padding-left: 0;
  color: #5d6778;
}

.career-details .job-summary {
  margin-bottom: 24px;
}

.career-details .job-summary h4,
.career-details .apply-box h4 {
  margin-bottom: 16px;
}

.career-details .job-summary ul,
.career-details .apply-box p {
  color: #5d6778;
}

.career-details .job-summary li {
  margin-bottom: 10px;
}

.career-details .apply-box a {
  color: #1a4fa3;
  text-decoration: none;
}

.career-details .apply-box a:hover {
  text-decoration: underline;
}

/* FOOTER */
.footer {
  background-image: url('assets/img/footer-bg.png');
  color: #fff;
  padding: 50px 0 20px;
  background-size: cover;
  background-position-y: -37px;
}


/* Heading */
.footer-top h3 {
  display: inline-block;
  font-size: 26px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-top-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.sisters-company-full {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.sisters-company-full h3 {
  display: inline-block;
  font-size: 26px;
  margin-bottom: 20px;
  color: #fff;
}

.sisters-company-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.sisters-company-list li {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 12px;
  color: #fff;
  background: #2061d2;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
  .sisters-company-list li {
    flex: 1 1 auto;
    min-width: 140px;
  }
}

.footer-info,
.footer-quick-links,
.top-clients {
  flex: 0 0 30%;
  min-width: 240px;
}

.footer-info,
.footer-quick-links {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  text-align: center;
}

.footer-quick-links {
  padding-left: 0;
}

.footer-top-content {
  align-items: flex-start;
}

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

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

.footer-quick-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.footer-quick-links a:hover {
  color: #4da3ff;
}

.top-clients h3 {
  text-align: center;
  margin-top: 10px;
}

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: white;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.client-logo-item:hover {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .clients-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .client-logo-item {
    height: 70px;
  }
}

@media (max-width: 600px) {
  .clients-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .client-logo-item {
    height: 60px;
  }
}

/* Info */
.footer-info p {
  margin: 1px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* Icons */
.footer-info i {
  color: #4da3ff;
  font-size: 18px;
}


@media (max-width: 576px) {
  .footer-map-wrap iframe {
    min-height: 240px;
  }
}

@media (max-width: 991px) {

  .sisters-company-full {
    margin-bottom: 24px;
  }

  .sisters-company-list {
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-info,
  .top-clients {
    min-width: 100%;
  }

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

  .footer-map-wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
}

/* Divider */
.footer hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* Footer Right Sections */
.sisters-company,
.top-clients {
  background: transparent;
}

.sisters-company h4,
.top-clients h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.sisters-company ul,
.top-clients ul {
  list-style: disc inside;
  padding: 0;
}

.sisters-company li,
.top-clients li {
  margin: 8px 0;
  font-size: 15px;
  opacity: 0.9;
}

.sisters-company li::marker,
.top-clients li::marker {
  color: #4da3ff;
}

.footer-map-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.footer-map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* Make footer container full width */
.footer .container {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
}

/* Force 3 sections from 597px to 992px */
@media (min-width: 597px) and (max-width: 992px) {

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

@media (max-width: 991px) {
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* Social Icons */
.social-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons {
  width: 100%;
  display: flex;
  justify-content: center;
  /* 👈 THIS centers horizontally */
  align-items: center;
  gap: 15px;
}


.facebook {
  background: #1877f2;
}

.linkedin {
  background: #0a66c2;
}

.youtube {
  background: #ff0000;
}

.social-icons a:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

.social-icons a:hover {
  background: #4da3ff;
  transform: translateY(-3px);
}

/* Links */
.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Copyright */
.footer .copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Center Icons */
.social-icons {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .social-icons {
    position: static;
    transform: none;
  }

  .footer-links {
    margin-left: 0;
  }
}

/* Right Links */
.footer-links {
  margin-left: auto;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 650px) {

  .footer-top-content {
    flex-direction: column;
    align-items: center;
    /* ✅ center blocks */
    text-align: center;
    /* ✅ center text */
  }

  .footer-info,
  .sisters-company,
  .top-clients {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .footer-info p {
    justify-content: center;
    /* ✅ center icon + text */
  }

  .sisters-company ul,
  .top-clients ul {
    list-style: none;
    /* optional: cleaner look */
    padding: 0;
  }

  .sisters-company li,
  .top-clients li {
    text-align: center;
  }

  .footer-map-wrap {
    margin: 0 auto;
    /* ✅ center map */
  }
}

@media (min-width: 820px) and (max-width: 1182px) {
  .footer-top-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px;
  }

}

@media (min-width: 650px) and (max-width: 820px) {
  .footer-top-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    flex-wrap: nowrap;
    text-align: center;

    .footer-info h3,
    .sisters-company h3,
    .top-clients h3 {
      font-size: 20px;
    }

    .footer-info p,
    .sisters-company ul,
    .top-clients ul {
      font-size: 12px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;

    }

    .footer-map-wrap {
      width: 100%;
    }
  }
}

.footer-map-wrap {
  width: 75%;
}

.top-clients,
.sisters-company,
.footer-info {
  min-width: 0;
  /* ✅ allows content to shrink inside flex */
}

/* Desktop */
.footer-map-wrap iframe {
  height: 220px;
}

/* Tablet */
@media (max-width: 1182px) {
  .footer-map-wrap iframe {
    height: 180px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-map-wrap iframe {
    height: 150px;
  }
}


/* Section Background */
.features-section {
  background: #f5f7fb;
}

/* Card */
.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-5px);
}

/* Icon Circle */
.feature-card .icon {
  min-width: 50px;
  height: 50px;
  background: #1a4fa3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4%;
}

/* Icon */
.feature-card .icon i {
  color: #fff;
  font-size: 20px;
}

/* Text */
.feature-card h5 {
  margin: 0 0 5px;
  font-weight: 600;
  margin-top: 4%;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Default (Desktop stays same) */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-story-section,
.about-values-section,
.about-cta-section {
  background: #f5f7fb;
}

.about-panel,
.about-value-card {
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(13, 43, 79, 0.08);
}

.product-page-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(13, 43, 79, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-page-card img {
  width: 100%;
  object-fit: cover;
  max-height: 220px;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(13, 43, 79, 0.15);
}

.product-page-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.08);
}

.product-page-card-body {
  padding: 24px;
  background: #fff;
}

.product-page-card-body h5 {
  color: var(--theme-color);
  margin-bottom: 16px;
}

.product-page-card-body p {
  color: #5d6778;
  line-height: 1.75;
  margin: 0;
}

.about-value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}

.about-panel h2,
.about-value-card h5 {
  color: var(--theme-color);
  margin-bottom: 16px;
}

.about-panel p,
.about-value-card p {
  color: #5d6778;
  margin-bottom: 14px;
}

.about-purpose-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.purpose-divider {
  width: 72px;
  height: 3px;
  background: linear-gradient(to right, #1a4fa3, #2c6ed5);
  border-radius: 999px;
  margin: 10px 0 22px;
}

.about-intro-copy {
  max-width: 980px;
  margin: 0 auto 30px;
  text-align: left;
}

.about-intro-copy p {
  color: #5d6778;
  margin-bottom: 14px;
}

.about-list {
  padding-left: 20px;
  margin-bottom: 0;
  color: #374151;
}

.about-list li+li {
  margin-top: 10px;
}

.about-value-card .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #1a4fa3, #2c6ed5);
  color: #fff;
  font-size: 22px;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(13, 43, 79, 0.14);
  border-color: rgba(26, 79, 163, 0.14);
}

.about-value-card:hover .icon {
  transform: scale(1.08);
}

.about-value-card .icon {
  transition: transform 0.3s ease;
}

.about-cta-box {
  background: linear-gradient(to right, #0d2b4f, #1a4fa3);
  border-radius: 18px;
  padding: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.about-cta-box h2 {
  margin-bottom: 10px;
}

.about-cta-box p {
  margin: 0;
  opacity: 0.9;
}

/* Mobile View */
@media (max-width: 1230px) {
  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-card .icon {

    margin-top: 0;
  }

  .feature-card h5 {
    margin-top: 0;
  }

  .feature-card p {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 70px 0;
  }

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

  .about-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Section */
.products-section {
  background: #f5f7fb;
}

/* Title */
.section-title h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* Card */
.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

/* Product Content */
.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-card .product-title,
.product-card .product-description {
  padding: 15px 20px 0;
}

.product-card .product-title {
  position: static;
  width: auto;
  background: linear-gradient(to right, #1a4fa3, #0d2b4f);
  color: #fff;
  text-align: center;
  padding: 15px 20px 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.product-card .product-description {
  padding: 10px 20px 20px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-line;
}

/* Button */
.view-btn {
  display: inline-block;
  background: linear-gradient(to right, #2c6ed5, #1a4fa3);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.view-btn:hover {
  background: linear-gradient(to right, #1a4fa3, #163e82);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(13, 43, 79, 0.16);
}

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

/* Section */
.info-section {
  background: #f5f7fb;
}

/* Cards */
.custom-card {
  padding: 20px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Titles */
.card-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a4fa3;
}

/* Blog */
.blog-heading {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Buttons */
.primary-btn {
  background: #1a4fa3;
  color: #fff;
  border-radius: 6px;
  padding: 8px 18px;
  text-decoration: none;
}

.primary-btn:hover {
  background: #163e82;
  color: white;
}

/* Gallery */
.gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(13, 43, 79, 0.12);
}

.gallery-img img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.3) 45%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.gallery-img:hover img {
  transform: scale(1.07);
  filter: brightness(1.08) saturate(1.08);
}

.gallery-img:hover::after {
  transform: translateX(120%);
}

.gallery-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a4fa3;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.gallery-btn:hover {
  background: #163e82;
}

/* Career */
.career-box h5 {
  margin-bottom: 10px;
}

.career-inner {
  background: linear-gradient(to right, #1a4fa3, #0d2b4f);
  padding: 25px;
  border-radius: 12px;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Remove extra margin */
.career-inner h4 {
  margin: 0;
  color: #fff;
}

/* Button */
.apply-btn {
  background: #f5b400;
  color: #000;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.apply-btn:hover {
  background: #d18c00;
  color: #fff;
}

/* Updates */
.updates-box {
  background: linear-gradient(to right, #0d2b4f, #1a4fa3);
  padding: 20px;
  border-radius: 12px;
  color: #fff;
}

.updates-box h5 {
  color: #fff;
}


@media (max-width: 576px) {
  .career-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.updates-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.updates-box li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.updates-box i {
  font-size: 18px;
}

.updates-box p {
  margin: 0;
  font-size: 14px;
}

.updates-box span {
  font-size: 12px;
  opacity: 0.8;
}

/* Make all cards equal height */
.custom-card,
.career-box,
.updates-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Push button/content to bottom */
.custom-card .btn,
.gallery-btn {
  margin-top: auto;
}

/* For right column stacking */
.career-box,
.updates-box {
  flex: 1;
}

.gallery-hero .col-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* centers everything horizontally */
  text-align: center;
}

.clients-slider {
  margin-top: 15px;
}

.clients-slider .slick-list {
  margin: 0 -8px;
}

.clients-slider .slick-slide {
  padding: 0 8px;
  box-sizing: border-box;
}

.client-logo-item {
  /* padding: 10px 14px; */
  text-align: center;
  min-height: 90px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.client-logo-item img {
  max-height: 90px;
  max-width: 100%;
  width: auto;
  margin: auto;
  /* filter: grayscale(100%); */
  opacity: 1;
  /* transition: 0.3s; */
  text-align: center;
  padding-bottom: 10px;
}

@media (max-width: 991px) {
  .clients-slider .slick-list {
    margin: 0 -6px;
  }

  .clients-slider .slick-slide {
    padding: 0 6px;
  }

  .client-logo-item {
    min-height: 85px;
    padding: 8px 12px;
  }

  .client-logo-item img {
    max-height: 80px;
    text-align: center;
    padding-bottom: 10px;
  }
}

@media (max-width: 557px) {
  .clients-slider .slick-list {
    margin: 0 -5px;
  }

  .clients-slider .slick-slide {
    padding: 0 5px;
  }

  .client-logo-item {
    min-height: 68px;
    padding: 8px 10px;
  }

  .client-logo-item img {
    max-height: 60px;
    text-align: center;
    padding-bottom: 10px;
  }
}

.top-bar {
  background: #0d2751;
  /* match your theme */
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  padding: 6px 0;
}

.top-bar-content {
  display: flex;
}

.top-bar-track {
  display: flex;
  width: max-content;
  animation: scrollText 20s linear infinite;
}

.top-bar-track span {
  padding-right: 100px;
}

/* Animation */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.contact-form label {
  font-weight: 600;
}

.contact-form .form-control {
  border-radius: 6px;
}

.input-group-text {
  background: #f8f9fa;
  font-weight: 500;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5H5z'/></svg>") no-repeat right 12px center;

  padding-right: 40px;
  cursor: pointer;
}
.custom-select:focus {
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 13l5-5 5 5H5z'/></svg>") no-repeat right 12px center;
}
.custom-select:invalid {
  color: #999;
}

.custom-select option {
  color: #000;
}
.footer-social {
  display: flex;
  justify-content: left;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #0d1b2a; /* your theme color */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: #ffc107; /* hover color */
  color: #000;
  transform: translateY(-3px);
}
.social-icon:nth-child(1) { background:#1877f2; } /* Facebook */
.social-icon:nth-child(2) { background:#e4405f; } /* Instagram */
.social-icon:nth-child(3) { background:#0077b5; } /* LinkedIn */
.social-icon:nth-child(4) { background:#ff0000; } /* YouTube */

@media (max-width:650px) {
  .footer-social{
    justify-content: center;
  }
  
}