/* =========================
   Ascend Project Solutions
   Shared Stylesheet
   ========================= */

/* Color variables (based on your color palette) */
:root {
  --dark-blue: #03588C;  /* primary dark */
  --light-blue: #13B3F2; /* secondary */
  --aqua:       #5EE3F2; /* accent 1 */
  --green:      #62A632; /* accent 2 */
  --light-gray: #F2F2F2; /* background / neutral */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Global Body Style */
body {
  background-color: var(--light-gray);
  color: #333;
  line-height: 1.6;
}

/* Header and Navigation */
header {
  background-color: var(--dark-blue);
  padding: 1rem;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img.logo {
  height: 150px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
nav ul li a:hover {
  color: var(--aqua);
}

/* Main Content Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
}

/* Footer */
footer {
  background-color: var(--dark-blue);
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
/* services blue blocks */
.blue-block {
  background-color: var(--light-blue); /* Blue background */
  color: white;          /* White text */
  padding: 10px;         /* Adds some spacing around the text */
  
  margin: 20px auto;     /* Optional: centers the block on the page */
}

/* Headings */
h1, h2, h3 {
  color: var(--dark-blue);
}
h4 {
  color: var(--dark-blue);
  font-size: 1.5em;          /* Font size (2em = roughly double the browser default) */
      
      text-align: center;      /* Center the text */
      text-transform: none; /* Make text uppercase */
      margin: 10px 0;  
}

/* Buttons */
.btn {
  background-color: var(--dark-blue);
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-top: 1rem;
}
.btn:hover {
  background-color: var(--light-blue);
}

/* CTA Button (Schedule a Consultation) */
.cta-btn {
  background-color: var(--dark-blue);
  margin-top: 1.5rem;
}
.cta-btn:hover {
  background-color: var(--light-blue);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d3652c;
  
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  
  z-index: 100;
}

.whatsapp-icon {
  
  width: 60px;
  height: 60px;
  border-radius: 50px;
  
} 

/* Simple Testimonial Slider (basic example) */
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
}
.testimonial {
  min-width: 250px;
  background-color: #fff;
  border-radius: 4px;
  padding: 1rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form button {
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  nav ul {
    flex-direction: column;
    margin-top: 1rem;
  }
}

/* table */
table {
  border-collapse: collapse; /* Merge cell borders */
  margin: 20px auto;         /* Centers the table on the page */
  width: 90%;
}
td {
  border: none;    /* Black borders around cells */
  padding: 20px;             /* Spacing inside each cell */
  text-align: center;        /* Center the text */
  width: 33%;              /* Optional: sets a consistent width for the cells */
}