/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  /* Body Styling */
  body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header Styling */
  header {
    background-color: #004080;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo-container {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  height: 90px;
  margin-right: 15px;
}

.logo-container h1 {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}
.title-container {
  display: flex;
  flex-direction: column;
}

.brand-heading {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slogan {
  font-size: 1.1rem;
  font-style: italic;
  color: #ffdb58;
  padding-left: 120px; /* Aligns under the word "Power" */
  margin-top: 5px;
}


  header h1 {
    font-size: 1.8 rem;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }
  
  /* Banner Section with Image and Text Overlay */
 .banner {
  background-image: url('banner_image.png'); /* Use correct image path */
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.banner-content h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.about-description {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.about-description .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}


  
  /* Welcome Section */
  .welcome {
    padding: 2rem;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .welcome h2 {
    color: #004080;
    margin-bottom: 1rem;
  }
  
  .welcome p {
    max-width: 800px;
    margin: auto;
    font-size: 1rem;
  }
  
  /* Highlight Boxes Section */
  .highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  
  .highlight-box {
    background-color: #e6f0ff;
    padding: 1.5rem;
    border-left: 5px solid #004080;
  }
  
  .highlight-box h3 {
    color: #004080;
    margin-bottom: 1rem;
  }
  
  .highlight-box ul {
    padding-left: 1.2rem;
  }
  
  /* Footer */
  footer {
    background-color: #004080;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .highlights {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .highlight-box {
      width: 32%;
    }
  
    nav ul {
      justify-content: flex-end;
    }
  
    .banner-text {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 767px) {
    .banner-text {
      font-size: 1.4rem;
      padding: 0.8rem 1.2rem;
    }
  
    header h1 {
      font-size: 1.5rem;
    }
  }
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f6fafd;
    border-radius: 8px;
  }

  .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }

  label {
    margin-bottom: 6px;
    font-weight: 600;
  }

  input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
  }

  button {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    background-color: #005b8f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  button:hover {
    background-color: #00436b;
  }

  /* Optional: Mobile responsiveness */
  @media (max-width: 600px) {
    .form-container {
      padding: 15px;
    }

    button {
      font-size: 0.95em;
    }
  }

  /*about us section*/
  nav ul li a.active {
    text-decoration: underline;
    color: #ffd700; /* yellowish highlight */
  }
  /* About Us Content Styling */
.about-us {
  padding: 40px 80px;
  background-color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.8;
  color: #333;
}

.about-us h2 {
  font-size: 28px;
  color: #002f6c;
  margin-bottom: 20px;
}

.about-us ul {
  padding-left: 20px;
  list-style-type: disc;
}

.about-us li {
  margin-bottom: 10px;
}
.about-us {
  padding: 40px 80px;
  background-color: #f4f7fb; /* soft grey-blue background */
  border-top: 2px solid #002f6c;
  border-bottom: 2px solid #002f6c;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.panel-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.panel-card:hover {
  transform: translateY(-5px);
}

.panel-card img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.panel-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #002f6c;
}

.panel-card p {
  font-size: 15px;
  color: #555;
}
/* Products Section */
.products-section {
  padding: 2rem;
  background-color: #f9f9f9;
}

.products-section h2 {
  color: #004080;
  text-align: center;
  margin-bottom: 2rem;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 280px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product-card h3 {
  color: #004080;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #333;
}
/* Services Section */
.services-section {
  padding: 2rem;
  background-color: #eef2f7;
}

.services-section h2 {
  color: #004080;
  text-align: center;
  margin-bottom: 2rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 280px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 7px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  color: #004080;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
}
/* Clients Section */
.clients-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.clients-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.clients-section p {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.client-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.client-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.client-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.client-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
/*dealers section*/
.dealer-banner {
  background: url('dealer-network.jpg') no-repeat center center/cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16297e;
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px #fff;
}

.dealer-section {
  background-color: #004080; /* brick red */
  padding: 50px 20px;
  color: #fff;
}

.dealer-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  color: #333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
}

.dealer-container h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 20px;
}

.dealer-container p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.area-heading {
  color: #004080;
  margin-bottom: 15px;
}

.dealer-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.dealer-areas span {
  background-color: #f5f5f5;
  color: #222;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
  .dealer-areas span {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}
/* Reset default margin and font */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts and Base Styling */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f6f9fc;
  color: #111;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  background-color: #003366;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 15px;
}

.company-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
}

.nav-links a.active {
  color: yellow;
}

/* Banner */
.banner img {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
  max-height: 300px; /* adjust height as needed */
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.004);
  color: white;
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
}

.banner-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  background-color: #003366; /* Dark blue background */
  padding: 60px 20px;
}

.contact-card {
  background-color: white;
  color: #333;
  padding: 40px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 30px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.contact-details h4,
.social-media h4 {
  color: #003366;
  margin-top: 20px;
}

.contact-details p,
.contact-details a {
  color: #000;
  font-size: 1.05rem;
  text-decoration: none;
}

.social-media a img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}
/* Mobile Styles */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  header .logo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    padding: 0;
  }

  nav li {
    margin: 10px 0;
  }

  .banner img {
    width: 100%;
    height: auto;
  }

  .contact-container {
    flex-direction: column;
    padding: 10px;
  }

  .contact-details, .social-media {
    width: 100%;
    padding: 10px 0;
  }

  .social-media img {
    width: 40px;
    height: 40px;
    margin: 5px;
  }

  .contact-box {
    padding: 20px;
  }
}

