/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", serif;
}

body {
  line-height: 1.6;
  background-color: #F5F5F5;
  color: #333;
}

/* Header */
header {
  background-color: #054561;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
}

/* Navigation Menu */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #0055a5;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 5px;
}

.hero-section {
  background-image: url(/assets/fusion-forge-banner.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  color: #fff;
  margin: auto 0;
  line-height: 2rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.enquire {
  background: #dfeaf5 !important;
  color: #0066cc !important;
  padding: 0.7rem 1rem;
  border-radius: 7px;
}

.get_start {
  background: #0066cc;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 7px;
  color: #fff;
}

.get_start:hover {
  background: #dfeaf5 !important;
  color: #0066cc !important;
}

.products img {
  width: 15rem;
  height: auto;
  clip-path: circle(40%);
}

.services-section {
  padding: 7rem 0;
  background-color: #F5EFE7;
}

.services-section h3,
.about-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

.products {
  padding-top: 5rem;
  display: flex;
  align-items: center;
  text-align: center;
}

/* .about-section {
  padding: 5rem 0;
} */

/* footer */
footer {
  background-color: #054561;
  color: #ffffff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* .footer-section {
    flex: 1;
    min-width: 250px;
  } */

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #558355;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a, .footer-section a {
  color: #ffffff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #f39c12;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.contact-section {
  padding: 7rem 0;
}

.contact-section h2 {
  font-weight: 800;
  text-align: center;
}

.form-section {
  max-width: 40rem !important;
  background: #054561;
  padding: 3rem !important;
  border-radius: 10px;
}

.form-section label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: bold;
}

.form-section input,
.form-section textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.form-section button {
  width: 100%;
  padding: 10px;
  background: #558355;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.form-section button:hover {
  background: #386038;
}

.feature-section {
  background-color: #f9f9f9;
  padding: 7rem 0;
  text-align: center;
}

.feature-section h2 {
  font-weight: 800;
  margin-bottom: 20px;
  color: #333;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.feature-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.services-section {
  background-color: #f4f4f4;
  padding: 7rem 0;
  text-align: center;
}

.services-section h2 {
  color: #333;
  font-weight: 800;
  margin-bottom: 20px;
}

.services-section p {
  color: #666;
  margin-bottom: 40px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: #007bff;
  margin: 20px 0;
}

.service h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.service p {
  font-size: 1rem;
  color: #555;
  padding: 0 20px 20px;
}

.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.1);
  z-index: -1;
  transition: transform 0.3s;
}

.service:hover .service-bg {
  transform: scale(1.1);
}

.about-section {
  padding: 7rem 0;
  background: #fff;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.highlight {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
  width: calc(33.333% - 20px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 15px;
}

.highlight h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.highlight p {
  font-size: 0.95rem;
  color: #555;
}

  .logo{
      width: 5rem !important;
      height: auto;
  }

@media only screen and (max-width: 768px) {
  .services h2 {
      font-size: 2rem;
  }

  .feature-section h2 {
      font-size: 1.8rem;
  }

  .highlight {
      width: 100%;
  }

  nav {
      display: none;
      flex-direction: column;
      align-items: center;
      width: 100%;
      position: absolute;
      top: 80px;
      left: 0;
      background-color: #0066CC;
      padding: 20px 0;
    }
  
    nav a {
      padding: 10px;
      font-size: 16px;
      width: 100%;
      text-align: center;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-active {
      display: flex;
    }

    .hero-content h1{
      font-size: 2rem !important;
    }
}

