/* ===========================
   GLOBAL STYLING
=========================== */

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: #f5f7fa;
  color: #333;
}

h1, h2, h3 {
  color: #003f73;
  margin-bottom: 10px;
}

p {
  line-height: 1.6;
}

/* ===========================
   NAVIGATION BAR
=========================== */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 25px;
  background: #0077cc;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform 0.25s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffdd55;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 700px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    gap: 15px;
  }

  .nav-links.show {
    display: flex;
  }
}

/* ===========================
   HERO SECTION (NEW)
=========================== */

.hero {
  background: linear-gradient(135deg, #0077cc, #005fa3);
  color: white;
  padding: 80px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.hero-with-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.hero-content {
  max-width: 600px;
  text-align: left;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.primary-cta {
  background: #ffdd55;
  color: #003f73;
}

.primary-cta:hover {
  background: #ffe88c;
  transform: translateY(-3px);
}

.secondary-cta {
  background: #ffffff;
  color: #003f73;
  border: 2px solid #ffffff;
}

.secondary-cta:hover {
  background: #e8f3ff;
  transform: translateY(-3px);
}

.hero-subtext {
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Right-hand panel */
.hero-panel {
  background: #ffffff;
  color: #003f73;
  padding: 25px 30px;
  border-radius: 12px;
  max-width: 340px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.hero-panel h2 {
  margin-top: 0;
}

.hero-panel ul {
  padding-left: 18px;
  margin: 15px 0 20px;
}

.panel-cta {
  display: inline-block;
  margin-top: 10px;
  background: #0077cc;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.panel-cta:hover {
  background: #005fa3;
}

/* ===========================
   SECTIONS
=========================== */

section {
  padding: 60px 20px;
}

.intro,
.services-grid-section,
.service-areas-section,
.contact-section,
.why-choose-us {
  max-width: 1100px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* ===========================
   HIGHLIGHT CARDS
=========================== */

.highlights {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.highlights .card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 30%;
  min-width: 260px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.25s ease;
}

.highlights .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ===========================
   SERVICES GRID (NEW)
=========================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.service-card {
  background: #f0f6fc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-top: 0;
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   WHY CHOOSE US GRID
=========================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-grid div {
  background: #f0f6fc;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #0077cc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   SERVICE AREAS
=========================== */

.areas-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
}

.areas-list li::before {
  content: "• ";
  color: #0077cc;
}

/* ===========================
   CONTACT SECTION
=========================== */

.contact-section a {
  color: #0077cc;
  font-weight: bold;
}

/* ===========================
   FOOTER
=========================== */

footer {
  text-align: center;
  padding: 25px;
  background: #003f73;
  color: white;
  margin-top: 40px;
}
