@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #333333;
  background-color: #F5F6F5;
  line-height: 1.6;
}
main {
  min-height: calc(100vh - 200px);
}
h1, h2, h3 {
  font-weight: 600;
  color: #003087;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
a:focus {
  outline: 2px solid #0059FF;
  outline-offset: 2px;
}
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin: 2rem 0;
  color: #003087;
  position: relative;
  padding-bottom: 0.5rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #FF6200;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #003087;
  color: #FFFFFF;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.logo-box {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: transform 0.2s ease;
}
.logo-box:hover {
  transform: scale(1.02);
}
.logo-image {
  height: 50px;
  margin-right: 1rem;
}
.company-name {
  font-size: 1.4rem;
  font-weight: 600;
}
.company-name .english {
  color: #003087;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem;
}
.nav-links a:hover,
.nav-links a.active {
  color: #FF6200;
}
#nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #FFFFFF;
  cursor: pointer;
}
.hero-section {
  background: linear-gradient(rgba(0, 48, 135, 0.7), rgba(0, 48, 135, 0.7)), url("/images/slider1.jpg") center/cover no-repeat;
  color: #FFFFFF;
  text-align: center;
  padding: 100px 20px;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  background-color: #FF6200;
  color: #FFFFFF;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  background-color: #E05500;
  transform: scale(1.05);
}
.carousel {
  position: relative;
  max-width: 1000px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.carousel-slide {
  display: none;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.carousel-slide.active {
  display: block;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.carousel-nav button {
  background: rgba(255, 98, 0, 0.7);
  border: none;
  padding: 10px 15px;
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: auto;
  border-radius: 50%;
  color: #FFFFFF;
}
.carousel-nav button:hover {
  background: #FF6200;
}
.services-section,
.products-section,
.portfolio-section,
.blog-section,
.catalogs-section,
.contact-section {
  padding: 50px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

/* Advanced Search Bar Styles */
.search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}

.search-container input {
  padding: 12px 20px;
  width: 300px;
  border: 2px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.search-container input:focus {
  border-color: #003087;
}

.search-container button {
  padding: 12px 20px;
  background-color: #003087;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.search-container button:hover {
  background-color: #0059FF;
}

.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33% - 40px);
  max-width: 320px;
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
}
.card h3 {
  color: #003087;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.contact-form {
  max-width: 550px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #0059FF;
  border-radius: 4px;
  background: #F5F6F5;
  color: #333333;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid #0059FF;
}
.contact-form button {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  background-color: #FF6200;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  color: #FFFFFF;
  font-weight: 500;
}
.contact-form button:hover {
  background-color: #E05500;
}
.footer {
  background-color: #003087;
  color: #FFFFFF;
  text-align: center;
  padding: 15px;
}
.footer p {
  margin: 0;
  font-size: 14px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer ul li {
  margin: 0;
}
.footer ul li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer ul li a:hover {
  color: #FF6200;
}
.contact-info {
  margin-top: 10px;
  font-size: 14px;
}
.social {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social a {
  display: inline-block;
  width: 28px;
  height: 28px;
}
.social a:hover {
  fill: #FF6200;
}
.whatsapp-chat {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: #25D366;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: background-color 0.2s ease;
}
.whatsapp-chat svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}
.whatsapp-chat:hover {
  background-color: #1DA851;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #003087;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 10px;
    width: 180px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
  #nav-toggle {
    display: block;
  }
  .card {
    flex: 1 1 100%;
  }
  .hero-section {
    padding: 70px 15px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .carousel-slide {
    height: 250px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
.pagination {
  text-align: center;
  margin: 20px 0;
}
.pagination button {
  background: #FF6200;
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  margin: 0 10px;
}
.pagination button:hover {
  background: #E05500;
}
.pagination button:disabled {
  background: #cccccc;
  cursor: not-allowed;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Success and Error Messages */
.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  margin-bottom: 20px;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Thank You Page */
.thank-you-section {
  padding: 50px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.thank-you-content .btn {
  margin: 10px;
}
