@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

body {
  font-family: "Lato", sans-serif;
}

.navbar {
  background: #ffffff;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.37);
}

.navbar-logo {
  margin-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.navbar-logo img {
  display: block;
  height: 80px;
  width: auto;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-list li {
  position: relative;
  list-style: none;
}
.nav-list a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  transition: background 0.2s;
}

.active {
  font-weight: 800;
}

.navbar-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 1.5rem;
}
.navbar-social a svg {
  fill: #222;
  transition: fill 0.2s, transform 0.2s;
}
.navbar-social a:hover svg {
  fill: #0f66b8;
  transform: scale(1.1);
}
@media (max-width: 900px) {
  .navbar-social {
    display: none;
  }
  .mobile-menu .navbar-social {
    display: flex;
    justify-content: start;
    gap: 0.2em;
    margin-top: 1em;
  }
}

.nav-list a::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: rgba(0, 0, 0, 0.8);
  transition: width 0.3s ease-in-out;
}

.nav-list a:not(.dropdown-menu li a):hover::after {
  width: 40%;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background: aliceblue;
  border: 1px solid black;
  border-radius: 10px;
  min-width: 180px;
  top: 100%;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0;
  margin: 0;
}
.dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  box-sizing: border-box;
  border-radius: 0;
}

/* Add border-radius only to first and last items */
.dropdown-menu li:first-child a:hover {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.dropdown-menu li:last-child a:hover {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.dropdown-menu li a:hover {
  background: #d0dbfffc;
  color: black;
  /* Remove border-radius here for full width hover */
  border-radius: 0;
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
  margin-left: auto;
  margin-right: 1rem;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 28px;
  background: #000000;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile menu styles */
.mobile-menu {
  position: absolute;
  top: 0;
  right: -100vw;
  width: 76vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.12);
  z-index: 2000;
  transition: right 0.3s;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  right: 0;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.close-mobile-menu {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #000000;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  cursor: pointer;
  z-index: 2010;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0 0;
}
.mobile-menu ul li {
  margin-bottom: 1.2rem;
  position: relative;
}
.mobile-menu ul a {
  color: #222;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu ul a:hover,
.mobile-menu ul a.active {
  background: #e3f0ff;
  color: #007bff;
}

/* Dropdown styles */
.mobile-menu .dropdown > a {
  cursor: pointer;
  position: relative;
}
.mobile-menu .dropdown-menu {
  display: none;
  flex-direction: column;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  margin-top: 0.5rem;
  padding: 0.5rem 0.5rem;
  position: relative;
  left: 0;
}
.mobile-menu .dropdown-menu.open {
  display: flex;
}
.mobile-menu .dropdown-menu li a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  color: #222;
  border-radius: 6px;
}
.mobile-menu .dropdown-menu li a:hover {
  background: #dbeafe;
  color: #007bff;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .nav-list {
    display: none;
  }
}

/* Keep navbar logo fixed on mobile when menu is open */
@media (max-width: 900px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 2000;
    justify-content: flex-start;
  }
  .navbar-logo {
    position: relative;
    z-index: 2000;
    /* margin-left: 0.1rem; */
    margin-right: 0;
  }
  .mobile-menu {
    padding-top: 100px; /* Add space for logo */
  }
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px); /* 80px = navbar height */
  overflow: hidden;
  margin-top: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.carousel-content {
  background: none;
  color: #fff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  text-align: start;
  max-width: 700px;
  box-shadow: 8px, 8px, 10px, rgba(0, 0, 0, 0.2);
  margin-left: -35rem;
}

.carousel-content h1 {
  margin: 0 0 1rem 0;
  font-size: 4rem;
  box-shadow: 8px, 8px, 10px, rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.carousel-content p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.carousel-content h1,
.carousel-content p {
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8), 0 0 2px #000;
}

.carousel-btn {
  background: linear-gradient(135deg, #1c065d, #681502);
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
  cursor: pointer;
}

.carousel-btn:hover {
  background: linear-gradient(135deg, #681502, #1c065d);
  transition: 0.2s;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  user-select: none;
}

.carousel-control.prev {
  left: 5px;
}
.carousel-control.next {
  right: 5px;
}

@media (max-width: 900px) {
  .hero-carousel {
    height: 60vh;
    padding-top: 50px;
  }
  .carousel-content {
    margin-top: 2.8rem;
    padding: 1rem;
    font-size: 1rem;
    margin-left: 1rem;
    text-align: center;
  }
  .carousel-content h1 {
    font-size: 2.6rem;
    line-height: 1;
  }

  .carousel-content p {
    font-size: 1.1rem;
    padding: 0 2rem;
  }

  .carousel-btn {
    background: linear-gradient(135deg, #1c065d, #681502);
    margin: 0 auto;
  }

  .carousel-control {
    background: none;
  }

  .carousel-control.prev {
    left: 5px;
  }
  .carousel-control.next {
    right: 5px;
  }
}

.about-us {
  padding: 50px 0;
  background: #f8f9fa;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-image img {
  width: 500px;
  height: 370px;
  object-fit: cover;
  /* clip-path: polygon(
    20% 0%,
    80% 5%,
    100% 40%,
    80% 100%,
    20% 90%,
    0% 60%,
    10% 20%
  ); */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 18px;
}

.about-content {
  max-width: 500px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.about-btn {
  display: inline-block;
  background: linear-gradient(135deg, #681502, #1c065d);
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.about-btn:hover {
  background: linear-gradient(135deg, #681502, #1c065d);
  transform: translateY(-2px);
  transition: 0.2s;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  .about-image img {
    width: 320px;
    height: 280px;
  }
}

.why-choose-us {
  background: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #222;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: #f8f9fa;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 2rem 1.5rem;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
  color: #007bff;
}

.why-card p {
  font-size: 1.3rem;
  color: #444;
}

.why-card:nth-child(1) {
  background: linear-gradient(135deg, #bcc1d2 0%, #d3d9cf 100%);
}
.why-card:nth-child(2) {
  background: linear-gradient(135deg, #ffe0e0 0%, #ffc7c7 100%);
}
.why-card:nth-child(3) {
  background: linear-gradient(135deg, #e0ffe7 0%, #c7ffd2 100%);
}
.why-card:nth-child(4) {
  background: linear-gradient(135deg, #fffbe0 0%, #fff7c7 100%);
}

@media (max-width: 900px) {
  .why-cards {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }
  .why-card {
    width: 90%;
    max-width: 350px;
  }
}

.products-section {
  background: none !important;
  padding: 60px 0 40px 0;
  text-align: center;
}

.products-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #000000;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

.product-card {
  background: none;
  border-radius: 18px;
  box-shadow: 0 4px 10px #b6b6b6;
  border: 1px solid #b6b6b6 !important;
  padding: 1.5rem 1rem 2rem 1rem;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}

@media (max-width: 1100px) {
  .products-grid {
    gap: 1.2rem;
  }
  .product-card {
    background: none;
    width: 160px;
  }
}

@media (max-width: 900px) {
  .products-section {
    max-width: 800px;
    padding-left: 1.8rem;
  }

  .products-grid {
    gap: 1.2rem;
    margin: 0 auto;
  }
  .product-card {
    background: none;
    width: 90vw;
    max-width: 300px;
    margin: 0 auto;
  }
}

.product-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: #000000;
}

.product-card p {
  font-size: 1.3rem;
  color: #444;
  margin-bottom: 1.2rem;
}

.product-btn {
  background: linear-gradient(135deg, #050547, #3a0303);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.product-card:hover {
  transform: scale(1.07);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.product-btn:hover {
  transform: translateY(-3px);
  transition: 0.2s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-card:nth-child(1),
.product-card:nth-child(2),
.product-card:nth-child(3),
.product-card:nth-child(4),
.product-card:nth-child(5),
.product-card:nth-child(6),
.product-card:nth-child(7),
.product-card:nth-child(8) {
  background: none !important;
}

.partners-section {
  background: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}

.partners-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #222;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partners-logos img {
  height: 150px;
  width: auto;
  filter: grayscale(0.2);
  transition: filter 0.2s, transform 0.2s;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.partners-logos img:hover {
  filter: none;
  transform: scale(1.07);
}

@media (max-width: 700px) {
  .partners-logos {
    gap: 1.2rem;
  }
  .partners-logos img {
    height: 80px;
    padding: 0.3rem 0.5rem;
  }
}

/* solution section */
.solutions-section {
  background: #ffffff;
  padding: 60px 0 40px 0;
  text-align: center;
}

.solutions-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #222;
}

.solutions-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  position: relative;
  width: 330px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  background: #eee;
  transition: transform 0.2s, box-shadow 0.2s;
}

.solution-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.solution-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: filter 0.3s;
}

.solution-card:hover .solution-img {
  filter: brightness(0.5) blur(2px);
}

.solution-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 1.5rem;
  transition: opacity 0.3s;
  text-align: center;
}

.solution-card:hover .solution-overlay {
  opacity: 1;
}

.solution-overlay h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.solution-overlay p {
  font-size: 1rem;
}

/* Always show overlays in Solutions section on tablet and mobile */
@media (max-width: 1100px) {
  .solution-card .solution-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    background: rgba(26, 34, 54, 0.82);
    color: #fff;
    transition: none;
  }
  .solution-card .solution-overlay h3,
  .solution-card .solution-overlay p {
    color: #fff;
  }
}

@media (max-width: 900px) {
  .solutions-cards {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
  .solution-card {
    width: 60vw;
    max-width: 300px;
    height: 180px;
  }
}

.site-footer {
  background: #0a2527;
  color: #ffffff;
  padding: 0 0 0.5rem 0;
  font-size: 1rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem 1.5rem;
  gap: 2.5rem;
}
.footer-brand {
  flex: 1 1 220px;
  min-width: 200px;
}
.footer-brand img {
  display: block;
  margin-bottom: 0.7rem;
}
.footer-brand p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 180px;
  min-width: 180px;
}
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  color: #ffffff;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}
.footer-links a,
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.1rem;
  width: 100px;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-social .social-icons {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.footer-social svg {
  fill: #ffffff;
  transition: fill 0.2s, transform 0.2s;
}
.footer-social a:hover svg {
  transform: scale(1.3);
}
.footer-contact-btn,
.footer-contact .footer-contact-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.footer-contact-btn:hover {
  background: #0056b3;
}
.footer-bottom {
  border-top: 1px solid #23283a;
  text-align: center;
  padding: 1rem 0 0 0;
  color: #ffffff;
  font-size: 0.95rem;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem;
  }

  .footer-brand img {
    align-items: center;
    margin-left: 4rem;
  }

  .footer-brand p {
    font-size: 1.3rem;
  }

  .footer-links h4 {
    margin-top: -4rem;
    font-size: 1.6rem;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    margin-top: -4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact {
    margin-top: -2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact h4 {
    font-size: 1.6rem;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-social {
    min-width: 0;
  }

  .footer-bottom {
    margin-top: -3rem;
    font-size: 0.9rem;
    padding: 1.2rem 0;
  }
}

.scroll-to-top {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1500;
  background: #07101a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.who-are-we {
  background: #f8f9fa;
  padding: 60px 0 40px 0;
}
.who-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.who-text {
  flex: 2 1 400px;
  min-width: 300px;
}
.who-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: black;
}
.who-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}
.who-image {
  flex: 1 1 350px;
  min-width: 280px;
  max-width: 480px;
  align-self: flex-start;
}
.who-image img {
  width: 100%;
  height: 315px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
@media (max-width: 900px) {
  .who-container {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
    margin: 0 2rem;
  }

  .who-image img {
    height: 220px;
  }
}

.mission-vision-section {
  background: #f8f9fa;
  padding: 60px 0 40px 0;
}
.mission-vision-container {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.mission-card,
.vision-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 2.5rem 2rem;
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mission-card h2,
.vision-card h2 {
  color: black;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.mission-card p,
.vision-card p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .mission-vision-container {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-top: -4rem;
    padding: 0 2rem;
  }
}

.stats-section {
  background: #039aff07;
  padding: 60px 0 40px 0;
  text-align: center;
}
.stats-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.stat-card {
  border-radius: 18px;
  padding: 2.5rem 2rem;
  min-width: 180px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: 3rem;
  color: #093a6e;
  font-weight: 800;
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}
.stat-label {
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
}
@media (max-width: 900px) {
  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .stat-card {
    width: 90vw;
    max-width: 350px;
  }
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: black;
}

.testimonial-section {
  background: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}

.testimonial-content p {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-client {
  font-size: 1.1rem;
  color: #007bff;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-name {
  font-weight: 700;
}

.client-company {
  font-weight: 400;
  color: #333;
  font-size: 1.2rem;
}
.testimonial-content {
  background: linear-gradient(135deg, #e3f0ff, #b6e0fe);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 2.5rem 2rem;
  margin: 0 auto;
  max-width: 350px;
  min-width: 260px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .testimonials-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin: 0 2rem;
  }
  .testimonial-content {
    max-width: 95vw;
    min-width: 0;
  }
}

.contact-section {
  background: #f8f9fa;
  padding: 60px 0 40px 0;
  text-align: center;
}
.contact-section h2 {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 2.5rem;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 2rem 1.5rem;
  text-align: left;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
}
.contact-info li {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.05rem;
}
.contact-info a {
  color: #007bff;
  text-decoration: none;
}
.contact-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}
.contact-social a svg {
  width: 28px;
  height: 28px;
  fill: #b0b8c9;
  transition: fill 0.2s, transform 0.2s;
}
.contact-social a:hover svg {
  fill: #007bff;
  transform: scale(1.1);
}
.contact-form {
  flex: 2 1 340px;
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  border: 1px solid #cfd8dc;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}
.contact-form button {
  background: linear-gradient(135deg, #8e0909, #080447);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: linear-gradient(135deg, #080447, #8e0909);
}
.contact-map {
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 350px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  background: #fff;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-info,
  .contact-form,
  .contact-map {
    width: 95vw;
    max-width: 500px;
  }
}

.success {
  max-width: 500px;
  margin: 20px auto;
  padding: 15px;
  background-color: #d4edda;
  color: #155724;
  border-left: 5px solid #28a745;
  border-radius: 4px;
}

.error {
  max-width: 500px;
  margin: 20px auto;
  padding: 15px;
  background-color: #f8d7da;
  color: #721c24;
  border-left: 5px solid #dc3545;
  border-radius: 4px;
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* Products Grid */
.products-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Product Card */

.container2 {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 20px;
}

.products-grid2 {
  gap: 3rem;
}

.product-card2 {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.product-card2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.card-image2 {
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image2 img {
  width: 100%;
  height: 100%;
  margin: 2rem 0 1rem 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card2:hover .card-image img {
  transform: scale(1.05);
}

.product-card2 h3 {
  font-size: 1.4rem;
  color: #000000;
  margin: 20px 20px 10px;
  font-weight: 600;
}

.product-card2 p {
  color: #000000;
  line-height: 1.6;
  margin: 0 20px 20px;
  font-size: 0.95rem;
}

.product-btn2 {
  display: inline-block;
  background: linear-gradient(135deg, #03043e 0%, #2c0b03 100%);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 18px;
  margin: 0 20px 25px;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-btn2:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-grid2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .card-image2 {
    height: 180px;
  }

  .product-card2 {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .products-section2 {
    padding: 50px 0;
  }

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

  .product-card2 h3 {
    font-size: 1.2rem;
  }

  .product-card2 p {
    font-size: 0.9rem;
  }

  .product-btn2 {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.cctv-carousel {
  padding: 80px 0;
  background: none;
  color: black;
}

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

.cctv-carousel h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cctv-carousel p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #000000db;
}

/* Swiper Custom Styles */
.mySwiper {
  width: 100%;
  height: 500px;
  padding: 20px 0;
}

.swiper-slide {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.slide-content {
  max-width: 400px;
}

.swiper-slide img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.swiper-slide h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
}

.swiper-slide p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000db;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #000000 !important;
  background: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: bold;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #000000 !important;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin-top: 2rem;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cctv-carousel {
    padding: 50px 0;
    margin-top: 5rem;
  }

  .cctv-carousel h2 {
    font-size: 2rem;
  }

  .mySwiper {
    height: 400px;
  }

  .swiper-slide {
    padding: 20px;
  }

  .swiper-slide img {
    height: 150px;
  }

  .swiper-slide h3 {
    font-size: 1.3rem;
  }
}

/* Award Section */
.awards-section {
  background: #f8f9fa;
  padding: 60px 0 40px 0;
  text-align: center;
  padding: 60px 2rem 40px 2rem;
}
.awards-section h2 {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.award-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.award-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: filter 0.3s;
}
.award-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}
.award-card:hover img {
  filter: brightness(0.7) blur(1px);
}
.award-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #007bffd9;
  color: #fff;
  padding: 1rem 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
}
.award-card:hover .award-info {
  opacity: 1;
}
.award-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Always show h3 in Awards section (even if overlay effect is used) */
.award-card .award-info h3 {
  opacity: 1 !important;
  visibility: visible !important;
  color: #1a2236;
  transition: none;
  text-align: center;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* If you use overlay for award-card, make sure it's always visible on mobile/tablet */
@media (max-width: 1100px) {
  .award-card .award-info {
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.92);
    color: #1a2236;
    transition: none;
    text-align: center;
  }
  .award-card .award-info h3 {
    color: #1a2236;
  }
}

@media (max-width: 900px) {
  .awards-grid {
    gap: 1.2rem;
    justify-items: center;
  }

  .award-card {
    max-width: 340px; /* Prevent full width */
    width: 100%;
  }

  .award-card img {
    height: 140px;
  }

  .award-info {
    display: flex;
  }
}

.hamburger.hide {
  display: none !important;
}

.electrical-fence-carousel {
  padding: 80px 0;
  background: none;
  color: black;
}

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

.electrical-fence-carousel h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.electrical-fence-carousel p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #000000db;
}

/* Swiper Custom Styles */
.mySwiper {
  width: 100%;
  height: 500px;
  padding: 20px 0;
}

.swiper-slide {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.slide-content {
  max-width: 400px;
}

.swiper-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.swiper-slide h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
}

.swiper-slide p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000db;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #000000 !important;
  background: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: bold;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #000000 !important;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin-top: 2rem;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cctv-carousel {
    padding: 50px 0;
  }

  .cctv-carousel h2 {
    font-size: 2rem;
  }

  .mySwiper {
    height: 400px;
  }

  .swiper-slide {
    padding: 20px;
  }

  .swiper-slide img {
    height: 150px;
  }

  .swiper-slide h3 {
    font-size: 1.3rem;
  }
}
