
html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
  font-family: Arial, sans-serif;
}

/* Full-width Header Image Section */
.header-image {
  position: relative;
  width: 100vw;         /* Use full viewport width */
  height: 400px;
  overflow: hidden;
}

.header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}

/* Centered text on top of the image */
.header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 0 15px;
}


/* Company Info Section */
.company-info {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.company-text {
  flex: 1 1 500px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

.company-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #001f4d;
}

.company-image {
  flex: 1 1 300px;
  text-align: center;
}

.company-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Copyright section */
.copyright {
  background-color: #001732;
  color: #ccc;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9em;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-text {
    font-size: 2.5rem;
  }

  .company-info {
    flex-direction: column;
    text-align: center;
  }

  .company-text {
    font-size: 1rem;
  }

  .company-image img {
    max-width: 80%;
  }
}






/* Footer base */
footer {
  background-color: #001f4d;
  color: white;
  font-family: Arial, sans-serif;
}

/* Main container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px 0;
  gap: 30px;
}

/* Footer sections */
.footer-left, .footer-center, .footer-right {
  padding: 0 15px;
  box-sizing: border-box;
}

/* Left section */
.footer-left {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-left img {
  max-width: 120px;
  margin-bottom: 20px;
}

.about-box {
  background-color: #003366;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  font-size: 0.95em;
  line-height: 1.5;
  color: #ddd;
}

/* Center section */
.footer-center {
  flex: 2 1 350px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-heading {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: white;
  font-weight: bold;
  width: 100%;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.footer-nav a {
  color: white;
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 5px 0;
}

.footer-nav a:hover {
  color: #f44336;
}

.newsletter-form {
  width: 100%;
  max-width: 350px;
}

.newsletter-form label {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 8px;
  display: block;
  text-align: center;
}

.email-input-group {
  display: flex;
  gap: 10px;
  width: 100%;
}

.email-input-group input {
  padding: 12px 15px;
  border-radius: 30px;
  border: none;
  flex: 1;
  font-size: 1em;
}

.email-input-group button {
  background-color: #f44336;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-input-group button:hover {
  background-color: #d32f2f;
}

/* Right section */
.footer-right {
  flex: 1 1 250px;
  min-width: 250px;
}

.contact-info {
  margin-bottom: 25px;
}

.contact-info strong {
  font-size: 1.3em;
  color: white !important; /* Ensures the color is white */
  display: block;
  margin-bottom: 15px;
  white-space: nowrap;
}

.contact-info p {
  margin: 10px 0;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  color: #ddd; /* Makes text a lighter shade for readability */
}

.contact-info i {
  margin-right: 10px;
  color: #ffffff;
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: white;
  font-size: 1.5em;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f44336;
}

/* Copyright section */
.copyright {
  background-color: #001732;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  width: 100%;
  color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-left, .footer-center, .footer-right {
    align-items: center;
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .email-input-group {
    flex-direction: column;
  }

  .email-input-group button {
    width: 100%;
    margin-top: 10px;
  }
}

