/* ===========
   Base & Theme
   =========== */
:root {
  --primary: #1e3a8a;
  /* Corporate Navy */
  --accent: #8b6b52;
  /* Subtle Taupe/Brown (used sparingly) */
  --bg: #ffffff;
  --muted: #6b7280;
  --light: #f7f7f9;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {



  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif, 'Montserrat', sans-serif, 'Marcellus', 'DM Sans';
  color: #111827;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===========
   Header / Nav
   =========== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

#hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

#hamburger:focus-visible {
  outline: 2px dashed #fff;
  outline-offset: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 6px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, .08);
  outline: 1px solid rgba(255, 255, 255, .15);
}

/* ===========
   Hero (Home only)
   =========== */
.hero {
  position: relative;
  background: url("../images/picture3.png") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, .6);
  /* blue overlay for readability */
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  font-size: 2.25rem;
  margin: 0 0 12px;
}

.hero p {
  color: #eef2ff;
  margin: 0 0 18px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  transition: .2s;
}






.about-intro,
.about-vision-mission,
.about-values,
.about-services,
.about-experience {
  margin-bottom: 2rem;
}

.about-vision-mission {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-vision-mission>div {
  flex: 1 1 300px;
  min-width: 220px;
}

.about-values ul,
.about-services ul,
.about-experience ul {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
  color: var(--muted);
}

/* ===========
   Sections & Cards
   =========== */
.section {
  padding: 56px 0;
}

.section h2 {
  font-size: 1.6rem;
  text-align: center;
  color: var(--primary);
  margin: 0 0 10px;
}

.section p.lead {
  text-align: center;
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto 10px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(16, 24, 40, .06);
}

/* Services preview & lists */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.service-cards .card {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  border: 1px solid #eef0f3;
}

.service-cards .card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  transition: .2s;
}

.services {
  text-align: center;
  padding: 4rem 2rem;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a3d62;
}

.services .lead {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #555;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card i {
  font-size: 2rem;
  color: #0a3d62;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #0a3d62;
}

.card p {
  font-size: 0.95rem;
  color: #666;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}






/* Team preview */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.member {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}



.avatar img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 10px;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.08);

}

.member h3 {
  margin: 6px 0 6px;
  font-size: 1.05rem;
}

.member p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0 0 8px;
}

.member .linkedin {
  color: #0a66c2;
  text-decoration: none;
  font-size: 1.1rem;
}

.member .linkedin:hover {
  transform: translateY(-2px);
}

/* =======================
   Clients Page Styling
   ======================= */

.section.clients {
  background: #f9fafb;
  /* subtle gray background */
  padding: 60px 20px;
}

.section.clients h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* List container */
.client-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  /* spacing between items */
}

/* Each client "card" */
.client-list li {
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  color: #374151;
  /* neutral dark gray */
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

/* Decorative accent (bullet replacement) */
.client-list li::before {
  content: "▸";
  /* subtle arrow */
  color: var(--primary);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Hover effect */
.client-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .section.clients h2 {
    font-size: 1.5rem;
  }

  .client-list li {
    font-size: 0.95rem;
    padding: 12px 16px;
  }
}



/* CTA band */



.cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 56px 20px;
  border-radius: 16px;
}

.cta .btn {
  background: var(--accent);
}

/* Contact form & map */
.contact form {
  max-width: 640px;
  margin: 0 auto 20px;
  display: grid;
  gap: 12px;
}

.contact input,
.contact textarea,
.contact select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e6e9eb;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}



.form-status {
  margin-top: 1em;
  font-size: 1rem;
  padding: 0.75em 1em;
  border-radius: 4px;
  display: none;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.form-status.success {
  background-color: #e6f9f0;
  color: #1a7f5a;
  border: 1px solid #1a7f5a;
}

.form-status.error {
  background-color: #fceaea;
  color: #d12a2a;
  border: 1px solid #d12a2a;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}




/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 150px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 2rem;
  border: 1px solid #888;
  width: 90%;
  max-width: 400px;
  border-radius: 6px;
  text-align: center;
  font-size: 1.1rem;
  animation: fadeIn 0.3s ease;
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: #000;
}

/* Inline Error Styles */
.form-group {
  position: relative;
  margin-bottom: 1.5em;
}

.error-message {
  color: #d12a2a;
  font-size: 0.875rem;
  margin-top: 0.25em;
  display: block;
}






/* Contact Card Styles */
.card-wrapper {
  max-width: 500px;
  margin: 32px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-wrapper h5 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #6a1b9a;
}

.address {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.address li {
  margin-bottom: 10px;
}

.address a {
  color: #6a1b9a;
  text-decoration: underline;
  word-break: break-all;
}

.address a:hover {
  color: #512888;
}


.map-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 18px;
}

.map-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



/* Modern Footer Styles */


footer {
  background: var(--primary);
  color: #e6f6ee;
  padding: 0;
  margin-top: 32px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 -2px 12px rgba(30, 58, 138, 0.08);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px 8px 16px;
}

.footer-brand {
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.08);
}

.footer-tagline {
  font-size: 1.05rem;
  color: #eef2ff;
  margin: 0;
  font-weight: 500;
}

.footer-info {
  flex: 1 1 220px;
  min-width: 180px;
}

.footer-info h4 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  color: #fff;
  font-weight: 600;
}

.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;

}

.footer-info li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-info i {
  font-size: 1.1rem;
  color: #ffd700;
}

.footer-info a {
  color: #e6f6ee;
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.3s;
}

.footer-info a:hover {
  color: #ffd700;
}

.footer-social {
  flex: 1 1 180px;
  min-width: 140px;
}

.footer-social h4 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  color: #fff;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 4px;

}

.social-links a {
  color: #e6f6ee;
  font-size: 1.7rem;
  transition: color 0.3s, transform 0.2s;
  margin-left: 3px;
}

.social-links a:hover {
  color: #ffd700;
  transform: translateY(-2px) scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding: 14px 0 8px 0;
  font-size: 1rem;
  color: #eef2ff;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-container {
    gap: 18px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 8px 8px 8px;
  }


  .footer-brand,
  .footer-info,
  .footer-social {
    min-width: 0;
    width: 100%;
    margin-bottom: 14px;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto 10px auto;
  }

  .footer-info ul {
    align-items: center;
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

footer {
  margin-top: 12px;
  padding-bottom: 0;
}

.footer-container {
  padding-bottom: 0;
}

.footer-bottom {
  padding-bottom: 0;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 18px 4px 4px 4px;
  }

  .footer-brand,
  .footer-info,
  .footer-social {
    min-width: 0;
    width: 100%;
    margin-bottom: 14px;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px auto;
  }

  .footer-info ul {
    align-items: center;
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    gap: 10px;
    padding: 10px 2px 2px 2px;
  }

  .footer-logo {
    height: 32px;
  }

  .footer-info li {
    font-size: 0.92rem;
    gap: 6px;
  }

  .footer-info i {
    font-size: 1rem;
  }

  .social-links a {
    font-size: 1.2rem;
    gap: 10px;
  }

  .footer-bottom {
    font-size: 0.92rem;
    padding: 10px 0 4px 0;
  }
}

/* Improved Responsive Layouts */




@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
}

@media (max-width: 900px) {


  .hero h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }

  .social-links {
    flex-direction: row;
    gap: 12px;
    margin-top: 10px;
    justify-content: center;
  }

  #hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 16px;
    top: 62px;
    background: var(--primary);
    padding: 12px;
    border-radius: 10px;
    flex-direction: column;
    gap: 8px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    z-index: 1001;
  }

  .nav-links.show {
    display: flex;
    flex-direction: column;
  }

  .hero {
    padding: 96px 12px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .service-cards,
  .team-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .avatar img {
    width: 64px;
    height: 64px;
  }

  .card-wrapper {
    max-width: 100%;
    padding: 20px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .text-wrapper h5 {
    font-size: 1.1rem;
  }

  .address {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 2px;
    font-size: 0.8rem;
  }

  .card-wrapper {
    max-width: 100vw;
    padding: 12px 2px;
  }

  .map-responsive {
    padding-bottom: 70%;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 4px;
  }

  .hero h1 {
    font-size: 1.15rem;
  }

  .hero p {
    font-size: .92rem;
  }

  .btn {
    padding: 8px 10px;
    font-size: .9rem;
  }

  .section {
    padding: 24px 0;
  }

  .avatar img {
    width: 48px;
    height: 48px;
  }

  .member {
    padding: 10px;
  }

  .card-wrapper {
    padding: 8px 1px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 8px;
  right: 24px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 10px;
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.whatsapp-float:hover {
  background-color: #20c05a;
}




/* Ensure contact form fields stretch full width on small screens */
@media (max-width: 600px) {

  .contact input,
  .contact textarea,
  .contact select,
  .footer-form input,
  .footer-form textarea {
    width: 100%;
  }

  .card-wrapper {
    max-width: 100vw;
    padding: 12px 2px;
  }


}

/* Smallest phones (e.g. iPhone SE) */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .btn {
    padding: 6px 10px;
    font-size: 0.85rem;
  }

  .modal-content {
    width: 90vw;
    padding: 1.5rem;
  }

  .close-modal {
    font-size: 1.2rem;
  }

  .service-cards,
  .team-grid,
  .pricing-cards {
    gap: 20px;
  }
}

/* Improve anchor link behavior with sticky header */
html {
  scroll-padding-top: 80px;
}




@media (max-width: 600px) {
  .contact form {
    max-width: 100vw;
    padding: 0 2px;
    gap: 8px;
  }

  .contact input,
  .contact textarea,
  .contact select,
  .footer-form input,
  .footer-form textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    font-size: 1rem;
    padding: 10px;
  }

  .form-group {
    margin-bottom: 1em;
  }

  .error-message {
    font-size: 0.8rem;
  }

  .card {
    padding: 10px;
    font-size: 0.95rem;
  }

  .member {
    padding: 10px;
  }

  .avatar img {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }

  .price-card .price {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .contact form {
    padding: 0 1px;
    gap: 6px;
  }

  .contact input,
  .contact textarea,
  .contact select {
    font-size: 0.95rem;
    padding: 8px;
  }

  .btn {
    font-size: 0.8rem;
    padding: 6px 8px;
  }

  .section {
    padding: 12px 0;
  }
}


/* Responsive Navbar */
@media (max-width: 768px) {
  #hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    background: var(--primary);
    position: absolute;
    top: 60px;
    right: 16px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }
}