/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #F4F4F4;
  text-align: center;
}

.section {
  padding: 50px 20px;
  background: white;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-center: 20px;
  justify-content: center;

}

h2 {
  font-size: 2rem;
  color: #0B3D91;
  margin-bottom: 20px;
}

/* Header */
header {
    background-color: #ffffff;
    color: white;
    padding: 20px;
}
header nav {
    padding-top: 8px;
}
header nav ul {
    display: flex;
    justify-content: center;
    gap: 100px;
    list-style: none;
}

header nav ul li a {
    color: white;
    font-weight: bold;
    padding: 8px 15px;
    text-decoration: none;
    transition: 0.3s;
}

header nav ul li a:hover {
    background: white;
    border-radius: 5px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
  margin-right: 10px;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    flex-direction: column;
}


/* About Us Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}
.lato-font {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.about-inline-image {
  margin-top: 20px;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.about-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 40px;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 350px;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-box {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }
}


/* Services & Materials Section */
.services-container, .materials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}

.service, .material {
    background: white;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service i, .material i {
    font-size: 2rem;
    color: #0B3D91;
    margin-bottom: 10px;
}

.service h3, .material h3 {
    font-size: 1.3rem;
    color: #333;
}

.service:hover, .material:hover {
    background: #f0f8ff;
    transform: translateY(-5px);
}

.image-slider {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 50%;
  aspect-ratio: 16 / 9;

}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  aspect-ratio: 16 / 9;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}


/* Products Section */
.products-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.products-section h2 {
  color: #0B3D91;
  font-size: 2rem;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.5);
}

.product-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}


.hover-message {
  position: absolute;
  bottom: 0;
  background: rgba(11, 61, 145, 0.8);
  color: #fff;
  width: 100%;
  padding: 1rem;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.product-card:hover .hover-message {
  transform: translateY(0);
}

.product-card {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}


/* Work Units Section */
.work-units-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.unit {
    background: white;
    padding: 15px;
    border-radius: 8px;
    width: 45%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.unit h3 {
    color: #0B3D91;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.unit:hover {
    transform: translateY(-5px);
    background: #f0f8ff;
}

/* Contact Layout */
.contact-layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-form-card,
.contact-info-card {
  background: #fdfdfd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  min-width: 300px;
}

.contact-form-card h3,
.contact-info-card h3 {
  font-size: 1.6rem;
  color: #0B3D91;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form button {
  padding: 12px 25px;
  background-color: #0B3D91;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #09316d;
}

.contact-info-card .contact-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.contact-info-card .contact-card h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.contact-info-card .contact-card p {
  font-size: 0.95rem;
  color: #555;
}

.contact-info-card .contact-card i {
  color: #0B3D91;
  margin-right: 8px;
}

.contact-info-card .contact-card a {
  color: #0B3D91;
  text-decoration: none;
}

.contact-info-card .contact-card a:hover {
  text-decoration: underline;
}
/* Footer */
footer {
    background: #0B3D91;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container, .materials-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-container, .materials-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .work-units-container {
        flex-direction: column;
        align-items: center;
    }

    .unit {
        width: 80%;
        margin-bottom: 10px;
    }
}
/* Image Slider */
.home-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.slider {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.slides {
  display: flex;
  width: 600%; /* 6 images */
  transition: transform 25s ease;
}

.slides img {
  width: 500%;
  height: 400px;
  object-fit: cover;
}

/* Overlay text */
.slider-text {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0B3D91;
  text-align: center;
  padding: 0 20px;
}

.slider-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.slider-text p {
  font-size: 1.2rem;
  max-width: 700px;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}

.dots .active {
  background: #333;
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* Slider Container */
.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 400px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 5s ease-in-out;
  width: 600%; /* for 6 images */
}

.slides img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dots span.active {
  background: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .slider {
    height: 250px;
  }

  .slides img {
    height: 250px;
  }

  .arrow {
    font-size: 1.5rem;
    padding: 8px;
  }

  .dots span {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .slider {
    height: 200px;
  }

  .slides img {
    height: 200px;
  }

  .arrow {
    font-size: 1.2rem;
    padding: 6px;
  }

  .dots span {
    width: 8px;
    height: 8px;
  }
}
.clients-slider {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  background: #f8f8f8;
}

.clients-track {
  display: flex;
  width: calc(250px * 20); /* Adjust width based on logos count */
  animation: scrollClients 30s linear infinite;
}

.clients-track img {
  width: 200px;
  height: auto;
  margin: 0 25px;
  object-fit: contain;
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.main-nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.main-nav ul li a:hover {
  background-color: #007bff;
  color: #fff;
}


/* Basic header styles */
.site-header {
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-img {
  height: 50px;
  width: auto;
}

/* Navigation styles */
.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Responsive layout: stack logo and nav vertically */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Basic styles */
.slider {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('images/slider-bg.jpg') no-repeat center center/cover;
  text-align: center;
  color: #fff;
}

.animated-text {
  animation: slideFadeIn 2s ease-in-out;
}

@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* New Professional Header */
.site-header {
  width: 100%;
  background-color: #0B3D91; /* Matching Home section */
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-branding h1 {
  font-size: 1.0rem;
  margin: 0;
  color: #ffffff;
  align-items: center;
  font-weight: bold;
}

.site-branding .tagline {
  font-size: 3.0rem;
  font-weight: bold;
  color: #e0f0ff;
  justify-content: space-between;
  margin-top: 2px;
}

.site-navigation .nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.site-navigation .nav-list li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.site-navigation .nav-list li a:hover {
  background-color: #0056b3;
  color: #ffffff;
}
.contact-layout {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-form-card {
  flex: 1 1 350px;
  max-width: 500px;
}

.maps-container {
  flex: 1 1 350px;
  max-width: 600px;
}

.maps-wrapper {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.map-box {
  flex: 1 1 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 0.5rem;
  border-radius: 5px;
  background: #fff;
}

footer {
  background-color: #0B3D91;
  color: #eee;
  padding: 2rem 1rem 1rem;
  font-family: 'Lato', sans-serif;
  text-align: center;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
}

.footer-contact h3,
.footer-nav h3,
.footer-social h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-contact-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-contact-card h4 {
  margin-bottom: 0.5rem;
  color: #f5a623;
}

.footer-contact-card p,
.footer-contact-card a {
  margin: 0.4rem 0;
  color: #eee;
  text-decoration: none;
}

.footer-contact-card a:hover {
  text-decoration: underline;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin: 0.5rem 0;
}

.footer-nav a {
  color: #eee;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 1.5rem;
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #f5a623;
}

footer .copyright {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-card img {
    height: auto;
  }

  .product-card {
    padding: 10px;
  }
}

.product-card img {
  object-fit: contain;
}