/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #021428 0%, #001f3f 40%, #021b34 100%);
  color: #f0f4f8;
}
.nav a {
  margin: 0 1rem;
  color: #f0f4f8;
  text-decoration: none;
  z-index: 10000;
}
.nav a:hover {
  text-decoration: underline;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px; /* Adjust size */
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 40px; /* Slightly smaller on mobile */
  }
}

.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.hero {
  position: relative;
  height: 100vh; /* Full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: white;

  
  /* Background image with transparency */
  background-image: url("images/ban1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Add transparency */
  background-blend-mode: overlay; /* or multiply, soft-light */
  opacity: 0.9; /* tweak for more/less transparency */

}

/* Overlay for darkening effect */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 31, 63, 0.7); /* Navy blue overlay */
  z-index: -1;
}

/* Text styling */
.hero h1 {
  font-size: 2.5rem;
  max-width: 800px;
  line-height: 1.3;
}

.hero .accent {
  color: #00bfff; /* Light blue accent */
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-primary, .btn-secondary {
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background-color: #00bfff;
  color: white;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-primary:hover {
  background-color: #009acd;
}

.btn-secondary:hover {
  background-color: white;
  color: #001f3f;
}

.services, .work, .contact {
  padding: 3rem 2rem;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.card {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.work blockquote {
  font-style: italic;
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 8px;
}
.contact form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.contact input {
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
  flex: 1;
}
.contact button {
  background:rgba(0,0,0,.07);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.contact button:hover {
  background: rgba(0,0,0,.07);
}
.hidden {
  display: none;
}
.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: rgba(0,0,0,0.3);
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero, .services, .work, .contact {
  animation: fadeInUp 1s ease-in-out;
}

/* Menu */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f6f9;
}

/* Header */
.header {
  background-color: #001f3f;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: bold;
}

/* Nav Links */
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
   z-index: 10000;
}

.nav a, .dropbtn {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 12px;
  transition: background 0.3s ease;
}

.nav a:hover, .dropbtn:hover {
  background-color: #004080;
  border-radius: 4px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background-color: #001f3f;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
    border-radius: 0 0 6px 6px;
  }

  .nav a, .dropbtn {
    text-align: left;
    width: 100%;
    padding: 10px;
  }

  .dropdown-content {
    position: relative;
    box-shadow: none;
    transform: translateY(0);
    opacity: 1;
  }

  .hamburger {
    display: block;
  }
}

.principal-partner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 50px 20px;
  background: #f4f6f9;
}

/* Partner Image */
.partner-photo {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.partner-photo img {
  width: 100%;
  max-width: 350px;
  border-radius: 30px 0 30px 0; /* Stylish corner cut */
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* Partner Info */
.partner-info {
  flex: 2 1 500px;
  padding-top: 5px; 
  margin-top: 0;  
}

.partner-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
  padding-top: 0px;
}

.partner-info p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
}

/* Info Boxes */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.info-box {
  padding: 20px;
  border-radius: 12px;
  color: white;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.1);
}

.certifications {
  background: linear-gradient(135deg, #042243, #00c6ff); /* Blue gradient */
}

.qualifications {
  background: linear-gradient(135deg, #08551a, #a8e063); /* Green gradient */
}

.experience {
  background: linear-gradient(135deg, #571304, #ffc371); /* Orange gradient */
}

.info-box h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .principal-partner {
    flex-direction: column;
    text-align: center;
  }
  
  .partner-photo img {
    border-radius: 20px;
  }
}

.site-footer {
  background-color: #021b34;
  padding: 40px 60px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h2,
.footer-column h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-column p {
  margin-bottom: 20px;
  color: #94a3b8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.footer-column li {
  color: #e2e8f0;
}

.logo {
  width: 100px;
  margin-bottom: 10px;
}

.social-icons i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.3s ease;
}
.social-icons i:hover {
  color: #3b82f6;
}

.contact-info i {
  margin-right: 8px;
  color: #38bdf8;
}

.emergency-box {
  background-color: #7f1d1d;
  color: #f87171;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}


