
html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
  font-family: Arial, sans-serif;
}

/* Hero Section */
.project-hero {
  position: relative;
  width: 100%;
  height: 65%;
  background: url('image/PROJECT/004.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 10%;
  text-align: center;
 
  
}

.project-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
}

/* Projects Section */
.projects-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
}

.project-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.project-row.reverse {
  flex-direction: row-reverse;
}

.project-image {
  flex: 1 1 45%;
  text-align: center;
}

.project-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.project-text {
  flex: 1 1 45%;
}

.project-text h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
  justify-content: center;
}

.project-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  justify-content: center;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .project-row, .project-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .project-text h2 {
    font-size: 24px;
  }

  .project-text p {
    font-size: 15px;
  }
}







/* 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;
  }
}
