body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
              line-height: 1.6;
}

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


.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.site-header {
  background: #1d3557;
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.8rem;
  color: #fcbf49;
  font-weight: bold;
  text-decoration: none;
}

.nav-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #fcbf49;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    background: #1d3557;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu.active {
    display: flex;
  }
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('../images/IMG-20250813-WA0030.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease-out forwards;
}

.subtitle {
  font-size: 1.2rem;
  color: #fdd835;
  margin-bottom: 10px;
  font-weight: 600;
}

.headline {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #eee;
}

.hero-buttons .btn {
  padding: 12px 24px;
  margin: 0 10px;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn {
  background-color: #fdd835;
  color: #000;
}

.btn:hover {
  background-color: #fff176;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fdd835;
}

.btn-outline:hover {
  background-color: #fdd835;
  color: #000;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .headline {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    margin: 10px 0;
    display: block;
  }
}

/* About Us Section */
.about-us {
  background-color: #fafafa;
  padding: 80px 20px;
}

.about-us .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-us-text {
  flex: 1;
  max-width: 50%;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-us-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  padding: 12px 24px;
  background-color: #fdd835;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #ffeb3b;
}

@media (max-width: 768px) {
  .about-us .container {
    flex-direction: column;
    text-align: center;
  }

  .about-us-text {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .about-us-image {
    max-width: 100%;
  }
}

.about-highlights {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.highlight-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  flex: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.highlight-box img {
  height: 40px;
  margin-bottom: 10px;
}

.product-categories {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.product-categories .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 40px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  height: 60px;
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.category-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}


.services-overview {
  background-color: #ffffff;
  padding: 80px 20px;
}

.services-overview .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.why-choose-us {
  background-color: #f1f5f9;
  padding: 80px 20px;
  text-align: center;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
}

.trust-card img {
  height: 60px;
  margin-bottom: 20px;
}

.trust-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1d3557;
}

.trust-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}


.featured-clients {
  background-color: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.featured-clients .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: #1d3557;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.clientsSwiper {
  padding: 10px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-height: 80px;
  max-width: 120px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s ease;
}

.swiper-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
.cta-section {
  background: linear-gradient(135deg, #1d3557, #457b9d);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f1f1f1;
}

.cta-button {
  display: inline-block;
  background-color: #fcbf49;
  color: #1d3557;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #ffba08;
  transform: scale(1.05);
}

.contact-preview {
  background-color: #f7f9fc;
  padding: 80px 20px;
  text-align: center;
}

.contact-preview .container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-preview .section-title {
  font-size: 2.5rem;
  color: #1d3557;
  margin-bottom: 15px;
}

.contact-preview .section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 280px;
  max-width: 300px;
}

.contact-item i {
  font-size: 2.2rem;
  color: #457b9d;
  margin-bottom: 15px;
}

.contact-item h3 {
  font-size: 1.3rem;
  color: #1d3557;
  margin-bottom: 10px;
}

.contact-item p,
.contact-item a {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}


.site-footer {
  background-color: #1d3557;
  color: #ffffff;
  padding: 60px 20px 40px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fcbf49;
}

.footer-col p,
.footer-col a,
.footer-bottom p {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fcbf49;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  margin-right: 12px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fcbf49;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #2c4c7b;
  padding-top: 20px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #fcbf49;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #fcbf49;
  color: #1d3557;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#backToTop:hover {
  background-color: #ffba08;
}

.nav-menu a.active {
  color: #fdb714; /* Example highlight color */
  font-weight: bold;
  border-bottom: 2px solid #fdb714;
}


.about-hero {
  background: url('../images/IMG-20250813-WA0031.jpg') no-repeat center center/cover;
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.about-hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
}


.our-story {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text {
  flex: 1;
  min-width: 300px;
}

.story-text h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 1rem;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #444;
}

.story-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.story-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}


.mission-vision {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

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

.section-header p {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 2.5rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.mv-item h3 {
  font-size: 1.5rem;
  color: #005b8f;
  margin-bottom: 1rem;
}

.mv-item p, .mv-item ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.mv-item ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}


.team-section {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
}

.team-member {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  max-width: 150px;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.team-member h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.team-member p {
  color: #777;
  font-size: 0.95rem;
}

.milestones-section {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.timeline {
  max-width: 900px;
  margin: 2rem auto;
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid #005b8f;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
}

.timeline-date {
  font-size: 1.1rem;
  font-weight: bold;
  color: #005b8f;
  margin-bottom: 0.5rem;
  position: relative;
}

.timeline-content {
  background-color: #f4f4f4;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 0;
  width: 18px;
  height: 18px;
  background: #005b8f;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #005b8f;
}


.trust-section {
  background-color: #eef7fc;
  padding: 4rem 2rem;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.trust-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
}

.trust-card i {
  font-size: 2.5rem;
  color: #005b8f;
  margin-bottom: 1rem;
}

.trust-card h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.95rem;
  color: #666;
}


.products-hero {
  background: url('../images/IMG-20250813-WA0032.jpg') no-repeat center center/cover;
  padding: 6rem 2rem;
  color: white;
  text-align: center;
}

.products-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.products-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.product-categories {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.product-categories h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.product-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
}

/*  */
.product-hero {
  background: url('/assets/images/IMG-20250813-WA0032.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

.product-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-details {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.product-details h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-cta {
  background-color: #005b8f;
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
}

.product-cta .btn {
  background: #fff;
  color: #005b8f;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.product-cta .btn:hover {
  background: #e3f1fa;
}

/* professional */
.professional-hero {
  background: url('/assets/images/IMG-20250813-WA0031.jpg') center/cover no-repeat;
}
/* industrial */
.industrial-hero {
  background: url('/assets/images/IMG-20250813-WA0032.jpg') center/cover no-repeat;
}
/* accessories */
.accessories-hero {
  background: url('/assets/images/IMG-20250813-WA0033.jpg') center/cover no-repeat;
  color: #fff;
}
/* Services */
.service-hero {
  background: url('/assets/images/IMG-20250813-WA0034.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.services-overview {
  padding: 60px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.cta-section {
  background: #f1f1f1;
  text-align: center;
  padding: 60px 20px;
}

.cta-section .btn {
  padding: 12px 25px;
  background: #fcb900;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
/* clients */
.clients-hero {
  background: url('/assets/images/IMG-20250813-WA0047.jpg') center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.clients-carousel-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.clients-carousel img {
  height: 80px;
  object-fit: contain;
  max-width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.clients-carousel img:hover {
  filter: grayscale(0%);
}

.client-testimonials {
  padding: 60px 20px;
  background: #fff;
}

.testimonial-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 30px;
}

.testimonial-card {
  background: #f1f1f1;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
/* contacts */
.contact-hero {
  background: url('/assets/images/IMG-20250813-WA0032.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.contact-section {
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info .social-icons a {
  font-size: 1.4rem;
  margin-right: 10px;
  color: #333;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.map-section {
  margin-top: 40px;
}
