:root {
  --primary: #0056b3;
  --secondary: #ff6b00;
  --dark: #333;
  --light: #f8f9fa;
  --gray: #6c757d;
}
nav ul li a.active {
  color: #0056b3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  padding: 0 1rem;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0 0 0 10px;
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-menu-btn.active {
  transform: rotate(90deg);
}

/* New Hero Slider Section */
.hero-slider {
  position: relative;
  height: calc(100vh - 70px);
  width: 100%;
  overflow: hidden;
  margin-top: 70px;
}
a{
  text-decoration: none;
  color: #0056b3;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  z-index: 10;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: white;
  opacity: 0;
}

.hero-content h1 span {
  color: var(--secondary);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  opacity: 0;
}

.btn {
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background-color: var(--secondary);
  color: white;
}

.btn-primary:hover {
  background-color: #e55f00;
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--dark);
  transform: translateY(-3px);
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.scroll-down::before {
  content: "⬇";
  font-size: 20px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Sections Common Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--secondary);
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.strength-card {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.strength-card:hover {
  transform: translateY(-5px);
}

.strength-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.strength-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.mission-statement {
  background-color: var(--primary);
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

.mission-statement h3 {
  color: white;
  margin-bottom: 15px;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 60px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Products Section */
.products-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 1rem;
}

.tab-btn {
  padding: 12px 25px;
  background-color: #e9ecef;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.tab-btn:first-child {
  border-radius: 4px 0 0 4px;
}

.tab-btn:last-child {
  border-radius: 0 4px 4px 0;
}

.tab-btn.active {
  background-color: var(--primary);
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img {
  height: 180px;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img i {
  font-size: 4rem;
  color: var(--gray);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Industries Section */
.industries {
  background-color: var(--light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
  gap: 25px;
}

.industry-card {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.industries-footer {
  text-align: center;
  margin-top: 1rem;
}

/* Manufacturers Section */
.manufacturers-logos-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.manufacturers-logos-track {
  display: flex;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.manufacturers-logos-track:hover {
  animation-play-state: paused;
}

.manufacturer-logo {
  width: 120px;
  height: 80px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 15px;
  flex-shrink: 0;
}

.manufacturer-logo img {
  max-width: 100%;
  max-height: 100%;

  transition: filter 0.3s;
}

.manufacturer-logo:hover img {
  filter: grayscale(0%);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Testimonials Section */
.testimonials {
  background-color: var(--primary);
  color: white;
}

.testimonials .section-title h2 {
  color: white;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}


.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin: 0 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-author {
  font-weight: 600;
}

/* Contact Section */
.contact-container {
  display: flex;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 15px;
  margin-top: 5px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
}

.form-group textarea {
  min-height: 150px;
}

.submit-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #004494;
}

/* Footer */
footer {
  background-color: #2d2d2d;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .contact-container {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 1rem;
  }
  .logo{
   margin-left: 1rem;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    padding: 40px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  nav ul.show {
    display: flex;
    right: 0;
  }

  nav ul li {
    margin: 15px 0;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .slider-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
  }
  .manufacturer-logo {
    width: 100px;
    height: 70px;
    margin: 0 10px;
  }
}

@media (max-width: 576px) {
  .scroll-down {
    bottom: 5px;
  }
  .mobile-menu-btn {
    position: absolute;
    right: 1rem;
  }
  .logo img {
    margin-left: 1rem;
    height: 40px;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .stats-container {
    flex-direction: column;
  }

  .hero-slider {
    height: calc(100vh - 60px);
    margin-top: 60px;
  }

  .cta-buttons {
    padding-right: 15px; /* Added space on the right */
  }
}


/* Disclaimer Section */
.disclaimer {
  background: var(--light);
  padding: 60px 20px;
  margin-top: 60px;
  border-top: 3px solid var(--secondary);
  border-radius: 8px;
}

.disclaimer h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
  text-align: center;
}

.disclaimer p,
.disclaimer ul {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

.disclaimer ul {
  margin: 20px 0;
  padding-left: 25px;
}

.disclaimer ul li {
  list-style: disc;
  margin-bottom: 10px;
  color: var(--dark);
}

.disclaimer strong {
  color: var(--secondary);
}



/* ===== Toast Notifications ===== */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  min-width: 220px;
  max-width: 300px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.5s ease, fadeOut 0.5s ease 3.5s forwards;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.toast.success {
  background-color: #28a745; /* green */
}

.toast.error {
  background-color: #dc3545; /* red */
}

.toast.warning {
  background-color: #dc3545; /* yellow */
  color: #222;
}

/* Close button */
.toast .close-btn {
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  font-weight: bold;
  margin-left: auto;
}

/* Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Responsive */
@media (max-width: 576px) {
  #toast-container {
    top: 10px;
    right: 10px;
  }
  .toast {
    min-width: 180px;
    font-size: 0.85rem;
    padding: 10px 14px;
  }
}
