/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-weight: bold;
  font-size: 20px;
  color: #003366;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a {
  text-transform: uppercase;
  font-weight: 500;
  color: #003366;
  text-decoration: none;
}
.nav-links li a:hover {
  color: #0077cc;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Overlay Without Box */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.hero-text h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 10px;
}
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #0077cc;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}
.cta-button:hover {
  background: #005fa3;
}
/* Services Section */
#services {
  background-color: #f9fafe; /* Light blue-gray */
}

/* Solutions Section */
#solutions {
  background-color: #fefaf6; /* Soft beige */
}
/* Section Layout */
.section {
  padding: 40px 20px;
  background: #fff;
}
.section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
}
#sectors {
  background-color: #f6fff8; /* Mint cream for freshness */
}
/* Cards Section */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.card {
  flex: 1 1 300px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  text-align: center;
}
.card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.card h3 {
  margin-top: 15px;
  color: #003366;
}
.card p {
  font-size: 15px;
  color: #555;
}

/* Testimonials */
.testimonial {
  background: #f6fff8;
  padding: 30px;
  margin: 20px auto;
  max-width: 700px;
  border-left: 4px solid #0077cc;
  font-style: italic;
}
.testimonial strong {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: auto;
}
form input, form select, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
form button {
  padding: 12px;
  background: #0077cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
form button:hover {
  background: #005fa3;
}

/* Calendly Widget */
.calendly-inline-widget {
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-top: 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.whatsapp-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
}
footer a {
  color: #00aced;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}