/* ===========================
   GLOBAL STYLES
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===========================
   HEADER & NAVIGATION
=========================== */
header {
  background: #0a2540;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 45px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  position: relative;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fff;
  font-weight: 500;
  padding: 5px 8px;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  border-radius: 4px;
}

nav ul li a:hover {
  color: #00bcd4;
  transform: scale(1.05);
}

/* Dropdown */
nav ul li ul {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #0a2540;
  flex-direction: column;
  min-width: 180px;
  border-radius: 4px;
  padding: 10px 0;
}

nav ul li:hover ul {
  display: flex;
}

nav ul li ul li {
  width: 100%;
}

nav ul li ul li a {
  padding: 10px;
  color: #fff;
}

nav ul li ul li a:hover {
  background: #00bcd4;
  color: #fff;
}

/* Highlight “Have a Project?” */
nav ul li a.cta {
  background: #00aaff; /* sky blue */
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;  /* keeps it one line */
  transition: background 0.3s ease;
}
nav ul li a.cta:hover {
  background: #0088cc; /* darker hover */
}


/* Mobile Nav */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #0a2540;
    position: absolute;
    top: 65px;
    right: 0;
    width: 200px;
    padding: 20px;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  nav ul li ul {
    position: static;
  }
}

/* ===========================
   HERO SECTION
=========================== */
/* Hero Section */
.hero {
  position: relative;
  background: url("assets/images/hero-bg.jpg") no-repeat center center/cover;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Optional dark overlay for readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45); /* semi-transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-content-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #001f3f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #004080;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  padding: 12px 28px;
  border: 2px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #001f3f;
}


.about-hero {
  background: url('../images/about-hero.jpg') center/cover no-repeat; /* placeholder image */
  padding: 120px 20px;
  color: #fff;
  text-align: center;
}
.about-hero h1, 
.about-hero p {
  color: #fff;
}


/* ===========================
   SERVICE CARDS
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.service-card h3 {
  margin-bottom: 15px;
  color: #0a2540;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.services-page-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}


/* ===========================
   FEATURED PROJECTS
=========================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* ===========================
   INDUSTRIES GRID
=========================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.industry-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  text-align: center;
}


/* ===========================
   CTA SECTIONS
=========================== */
/* CTA Section */
.cta {
  background: #f5f5f5;  /* light background, adjust if needed */
  padding: 60px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 25px; /* spacing to separate from button */
  color: #001f3f;
}

.cta .btn-primary {
  background-color: #001f3f;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta .btn-primary:hover {
  background-color: #004080;
}


/* ===========================
   LEADERSHIP
=========================== */
.leadership {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.lead-card {
  flex: 1 1 250px;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}


/* ===========================
   FOOTER
=========================== */
footer {
  background: #0a2540;
  color: #fff;
  padding: 40px 0;
}

footer .footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

footer .footer-left,
footer .footer-middle,
footer .footer-right {
  flex: 1;
  min-width: 220px;
}

footer h4 {
  margin-bottom: 15px;
  color: #00bcd4;
}

footer a {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

footer .footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #1f3b57;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #bbb;
}

/* ====== HOME PAGE CARDS ====== */
.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.home-card {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* ====== CTA SECTIONS ====== */
.cta-center {
  text-align: center;
  margin: 50px auto;
}

.cta-center h2 {
  margin-bottom: 20px;
}

.cta-btn {
  background: #0077b6;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #005f8a;
}

/* ====== Services Section ====== */
.services-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.services-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* ====== Projects Section ====== */
.projects-section {
  padding: 60px 20px;
  background: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.project-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* ====== Industries Section ====== */
.industries-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.industry-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* ====== Trust Bar ====== */

.trust-bar container {
  background: #0a2540; /* Solid blue background */
  color: #fff;
  font-weight: bold;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}

.trust-bar {
  background: #0a2540; /* Solid blue background */
  color: #fff;
  font-weight: bold;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}

.trust-slider {
  display: flex;
  gap: 50px;
  animation: slideRight 18s linear infinite;
}

.trust-item {
  white-space: nowrap;
  font-size: 16px;
}

/* Keyframes for continuous sliding */
@keyframes slideRight {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

