* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Inter', sans-serif; 
  line-height: 1.8; 
  color: #1a1a1a; 
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%); 
  background-attachment: fixed; 
  min-height: 100vh; 
}
body::before { 
  content: ''; 
  position: fixed; 
  top: 0; left: 0; right: 0; bottom: 0; 
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="%230a1a3d" d="M0 50 Q25 30, 50 50 T100 50 L100 100 L0 100 Z"/></svg>') repeat; 
  pointer-events: none; 
  z-index: -1; 
}
header { 
  background: linear-gradient(135deg, #0a1a3d, #00a3a6); 
  color: white; 
  text-align: center; 
  padding: 7em 1em; 
  position: relative; 
  overflow: hidden; 
}
header h1 { font-size: 3.5em; font-weight: 700; margin-bottom: 0.3em; }
header p { font-size: 1.4em; font-weight: 300; max-width: 800px; margin: 0 auto 1.5em; }
nav { 
  background-color: #ffffff; 
  padding: 1.5em; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
}
nav .nav-links { display: flex; justify-content: center; gap: 2.5em; }
nav a { 
  text-decoration: none; 
  color: #0a1a3d; 
  font-weight: 600; 
  font-size: 1.1em; 
  position: relative; 
  transition: color 0.3s ease; 
}
nav a::after { 
  content: ''; 
  position: absolute; 
  width: 0; 
  height: 2px; 
  bottom: -4px; 
  left: 0; 
  background-color: #00a3a6; 
  transition: width 0.3s ease; 
}
nav a:hover::after, nav a.active::after { width: 100%; }
nav a:hover, nav a.active { color: #00a3a6; }
.container { max-width: 1200px; margin: 0 auto; padding: 4em 2em; }
section { 
  margin-bottom: 5em; 
  background: rgba(255, 255, 255, 0.92); 
  border-radius: 16px; 
  padding: 3em 2em; 
  box-shadow: 0 10px 30px rgba(10, 26, 61, 0.08); 
  backdrop-filter: blur(8px); 
  transition: transform 0.3s ease; 
}
section:hover { transform: translateY(-5px); }
h2 { 
  font-size: 2.5em; 
  font-weight: 600; 
  color: #0a1a3d; 
  margin-bottom: 1em; 
  position: relative; 
  text-align: center; 
}
h2::after { 
  content: ''; 
  width: 50px; 
  height: 4px; 
  background: #00a3a6; 
  position: absolute; 
  bottom: -10px; 
  left: 50%; 
  transform: translateX(-50%); 
}
.service-grid, .client-grid, .testimonial-grid, .case-study-grid, .stats-grid, .faq-grid, .team-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 2em; 
}
.service, .client, .testimonial, .case-study, .stat, .team-card { 
  background: #ffffff; 
  padding: 2em; 
  border-radius: 10px; 
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.service:hover, .client:hover, .testimonial:hover, .case-study:hover, .stat:hover, .team-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
}
.service h3, .client h3, .testimonial h3, .case-study h3, .team-info h3 { 
  color: #0a1a3d; 
  font-weight: 600; 
  margin-bottom: 0.5em; 
  font-size: 1.3em; 
}
.cta-button { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.5em; 
  background: #00a3a6; 
  color: white; 
  padding: 1em 2em; 
  border-radius: 6px; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 1.1em; 
  transition: transform 0.3s ease; 
  margin-top: 1.5em; 
}
.cta-button:hover { transform: translateY(-2px); }
.cta-button svg { width: 16px; height: 16px; fill: white; }
.faq-grid { grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; gap: 1em; }
.faq-item { background: #ffffff; border-bottom: 1px solid #e0e0e0; }
.faq-question { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 1em; 
  cursor: pointer; 
  font-weight: 600; 
  font-size: 1.1em; 
  color: #0a1a3d; 
  transition: color 0.3s ease; 
}
.faq-question:hover { color: #00a3a6; }
.faq-question svg { width: 16px; height: 16px; fill: #00a3a6; transition: transform 0.3s ease; }
.faq-question.active svg { transform: rotate(180deg); }
.faq-answer { 
  max-height: 0; 
  overflow: hidden; 
  padding: 0 1em; 
  font-size: 1em; 
  color: #1a1a1a; 
  transition: max-height 0.3s ease, padding 0.3s ease; 
}
.faq-answer.active { max-height: 200px; padding: 1em; }
.contact-info { text-align: center; padding: 2em; }
.contact-info h2 { font-size: 2.5em; color: #0a1a3d; margin-bottom: 0.5em; }
.contact-info p { font-size: 1.1em; max-width: 600px; margin: 0 auto 1.5em; }
.contact-ctas { display: flex; justify-content: center; gap: 1.5em; flex-wrap: wrap; }
footer { 
  background: linear-gradient(135deg, #0a1a3d, #00a3a6); 
  color: white; 
  text-align: center; 
  padding: 2em; 
  font-size: 1em; 
}
.hamburger { 
  display: none; 
  font-size: 1.8em; 
  background: none; 
  border: none; 
  color: #0a1a3d; 
  cursor: pointer; 
}
.team-page { padding: 6em 0; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); }
.team-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 2.5em; 
  margin-bottom: 4em; 
}
.team-card { 
  background: #fff; 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: 0 8px 25px rgba(0,0,0,0.08); 
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
}
.team-card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
}
.team-photo { position: relative; overflow: hidden; height: 300px; }
.team-photo img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s ease; 
}
.team-card:hover .team-photo img { transform: scale(1.08); }
.team-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(transparent, rgba(10,26,61,0.85)); 
  display: flex; 
  align-items: flex-end; 
  justify-content: center; 
  opacity: 0; 
  transition: opacity 0.4s ease; 
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social a { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  width: 44px; 
  height: 44px; 
  background: #00a3a6; 
  border-radius: 50%; 
  margin: 0 8px; 
  transition: all 0.3s ease; 
}
.team-social a:hover { background: #0a1a3d; transform: translateY(-3px); }
.team-social svg { width: 20px; height: 20px; fill: white; }
.team-info { padding: 1.8em 1.5em; text-align: center; }
.team-info h3 { font-size: 1.4em; color: #0a1a3d; margin-bottom: 0.2em; }
.role { 
  color: #00a3a6; 
  font-weight: 600; 
  font-size: 0.95em; 
  margin-bottom: 0.8em; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
}
.bio { color: #555; font-size: 0.95em; line-height: 1.6; }
/* MOBILE MENU - SUPER FIX */
@media (max-width: 768px) {
  header { padding: 4em 1em; } 
  header h1 { font-size: 2.5em; } 
  header p { font-size: 1.1em; } 
  .container { padding: 2em 1em; } 
  .service-grid, .client-grid, .testimonial-grid, .case-study-grid, .team-grid, .stats-grid, .faq-grid { grid-template-columns: 1fr; } 
  .contact-ctas { flex-direction: column; align-items: center; gap: 1em; } 
  .cta-button { font-size: 1em; padding: 0.8em 1.5em; max-width: 200px; } 
  
  /* HAMBURGER MENU */
  .hamburger { 
    display: block !important; 
    position: absolute; 
    top: 1.5em; 
    right: 1em; 
    font-size: 1.8em;
    background: none;
    border: none;
    color: #0a1a3d;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1em 0;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    padding: 1em;
    text-align: center;
    font-size: 1.1em;
    border-bottom: 1px solid #eee;
  }

  .team-photo { height: 260px; } 
  .team-info { padding: 1.4em 1.2em; } 
}
/* ========================================= */
/* NEW CONTACT FORM STYLES – ADD TO END OF CSS */
/* ========================================= */

.contact-section {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  padding: 4em 2em;
  text-align: center;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  padding: 2.5em;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 163, 166, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00a3a6, #007a7f, #00a3a6);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.form-group {
  position: relative;
  margin-bottom: 2em;
  display: inline-block;
  width: calc(50% - 1em);
  vertical-align: top;
}

.form-group.full-width {
  width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1em;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #f9f9f9;
  font-size: 1em;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00a3a6;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 163, 166, 0.1);
}

.form-group label {
  position: absolute;
  top: 1em;
  left: 1em;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 1em;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5em;
  left: 0.5em;
  color: #00a3a6;
  font-size: 0.85em;
  background: white;
  padding: 0 0.5em;
  border-radius: 5px;
}

.submit-btn {
  width: 100%;
  padding: 1.2em;
  background: linear-gradient(135deg, #00a3a6, #007a7f);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 163, 166, 0.3);
  background: linear-gradient(135deg, #007a7f, #00a3a6);
}

.success-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #00a3a6, #007a7f);
  color: white;
  padding: 2em;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-align: center;
  max-width: 400px;
}

.success-popup p {
  margin-bottom: 1em;
  font-size: 1.1em;
}

.success-popup button {
  background: white;
  color: #00a3a6;
  border: none;
  padding: 0.8em 1.5em;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.success-popup button:hover {
  background: #f0f0f0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .form-group {
    width: 100%;
  }
  .contact-form {
    padding: 1.5em;
  }
}
/* Team LinkedIn Enhancements */
.team-social a {
  color: white;
  font-size: 1.5em;
  margin: 0 0.5em;
  transition: transform 0.3s ease;
  display: inline-block;
}

.team-social a:hover {
  transform: scale(1.2);
}

.team-social a svg {
  width: 24px;
  height: 24px;
}

/* === ANIMATED STATS COUNTERS === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2em;
  margin: 3em 0;
  text-align: center;
}

.stat-item {
  padding: 1.5em;
  background: rgba(0, 163, 166, 0.08);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3em;
  font-weight: 700;
  color: #00a3a6;
  margin-bottom: 0.5em;
  font-family: 'Inter', sans-serif;
}
/* === STICKY FLOATING CTA BUTTON === */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00a3a6, #007a7f);
  color: white;
  padding: 1em 1.5em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 163, 166, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5em;
  z-index: 1000;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 163, 166, 0.5);
}

.floating-cta svg {
  width: 20px;
  height: 20px;
}
.contact-ctas {
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  margin-bottom: 2em;
}

.contact-ctas .cta-button {
  min-width: 180px;
  text-align: center;
}

/* Mobile: Stack 2 per row */
@media (max-width: 768px) {
  .contact-ctas {
    gap: 0.8em;
  }
  .contact-ctas .cta-button {
    flex: 1 1 45%;
    min-width: auto;
  }
}