:root {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0d1f3a;
  background-color: #fff6ef;
  --brand-orange: #ff9013;
  --brand-coral: #f25912;
  --brand-cyan: #0ba6df;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: linear-gradient(to bottom,
   
    #ffffff 90%
  );
  color: #0d1f3a;
}

.gradient-shell {
  min-height: 100vh;
  padding: 0 clamp(16px, 5vw, 72px) 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Default header (for index.html - transparent with white text) */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: transparent;
  padding: 24px 32px;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  margin: 0;
}

/* White header for other pages */
.site-header.white-header {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header.white-header .brand-copy {
  color: #0d1f3a;
}

.site-header.white-header .brand-name {
  color: #0d1f3a;
}

.site-header.white-header .brand-tagline {
  color: #60708f;
}

.site-header.white-header .main-nav a {
  color: #0d1f3a;
}

.site-header.white-header .dropdown-trigger {
  color: #0d1f3a;
}

.site-header.white-header .hamburger span {
  background: #0d1f3a;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link {
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.brand-link:hover {
  opacity: 0.85;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  color: #0d1f3a;
}

.brand-name {
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: capitalize;
  color: #0d1f3a;
}

.brand-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
  color: #0d1f3a;
  font-weight: 400;
}

/* Override brand colors for local.html only */
body.local-page .brand-copy {
  color: #0d1f3a;
}

body.local-page .brand-name {
  color: #0d1f3a;
}

body.local-page .brand-tagline {
  color: #0d1f3a;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #0d1f3a;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
  display: flex;
  gap: 32px;
  font-weight: 700;
  align-items: center;
}

.main-nav a {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #0d1f3a;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  transform: translateY(-2px);
  opacity: 0.7;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #0d1f3a;
  transition: transform 0.2s ease, opacity 0.2s ease;
  font-weight: 700;
  cursor: pointer;
}

.dropdown-trigger:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}

.dropdown-trigger.active {
  font-weight: 700;
  opacity: 0.8;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(13, 31, 58, 0.15);
  padding: 12px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
  margin-top: 12px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 14px 24px;
  color: #0d1f3a !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s ease;
  background: transparent;
}

.dropdown-item:hover {
  background: #f5f5f5;
  color: #0d1f3a !important;
}

.topic-section {
  margin-bottom: 48px;
}

.topic-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #E91E63 0%, #FF5722 50%, #FF9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.research-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13, 31, 58, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 31, 58, 0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d1f3a;
  line-height: 1.4;
  margin: 0;
}

.card-label {
  font-size: 0.85rem;
  color: #60708f;
  font-weight: 500;
  margin-top: auto;
}

footer {
  text-align: center;
  margin-top: auto;
  padding: 48px 24px 32px;
  color: #ffffff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .topic-title {
    font-size: 2rem;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .gradient-shell {
    padding: 24px 16px 40px;
  }

  .brand {
    flex-direction: column;
  }

  .topic-title {
    font-size: 1.75rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-content h3 {
    font-size: 1rem;
  }
}


/* Special dropdown menu for Insights */
.insights-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(13, 31, 58, 0.2);
  padding: 24px;
  min-width: 800px;
  max-width: 900px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.nav-dropdown:hover .insights-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.insights-menu-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insights-menu-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #EB5B00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding: 0 12px;
}

.insights-menu-item {
  display: block;
  padding: 12px 16px;
  color: #0d1f3a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background: transparent;
  border-radius: 12px;
  position: relative;
}

.insights-menu-item:hover {
  background: #f5f5f5;
  color: #0d1f3a;
  transform: translateX(4px);
}

.insights-menu-item.special {
  background: #e8f4f8;
  color: #0ba6df;
  font-weight: 600;
  border-left: 3px solid #0ba6df;
}

.insights-menu-item.special:hover {
  background: #d4eef6;
  color: #0891c7;
  transform: translateX(4px) scale(1.02);
}

@media (max-width: 900px) {
  .insights-dropdown-menu {
    min-width: 90vw;
    grid-template-columns: 1fr;
    gap: 20px;
    left: 5vw;
    transform: translateX(0) translateY(-10px);
  }

  .nav-dropdown:hover .insights-dropdown-menu {
    transform: translateX(0) translateY(0);
  }
}


@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-links a {
    font-size: 0.95rem;
  }
}


/* Solution Hero Section */
.solution-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  padding: 64px 48px;
  margin: 32px auto 48px;
  max-width: 1400px;
}

.solution-hero-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-hero-image {
  position: relative;
}

.solution-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  aspect-ratio: 1;
}

.solution-hero-text {
  color: #ffffff;
}

.solution-hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.solution-hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.95;
}

.solution-hero-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .solution-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .solution-hero-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .solution-hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .solution-hero {
    padding: 48px 32px;
    margin: 24px 16px 40px;
  }

  .solution-hero-image {
    max-width: 280px;
  }

  .solution-hero-text h1 {
    font-size: 2rem;
  }

  .solution-hero-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .solution-hero {
    padding: 32px 24px;
  }

  .solution-hero-image {
    max-width: 220px;
  }

  .solution-hero-text h1 {
    font-size: 1.75rem;
  }

  .solution-hero-text p {
    font-size: 0.95rem;
  }
}


/* Trust Section */
.trust-section {
  max-width: 1400px;
  margin: 64px auto;
  padding: 0 24px;
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1f3a;
  text-align: center;
  margin-bottom: 16px;
}

.trust-subtitle {
  font-size: 1.1rem;
  color: #60708f;
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-card:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.trust-card:nth-child(3) {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.trust-card:nth-child(4) {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.trust-icon svg {
  width: 48px;
  height: 48px;
}

.trust-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .trust-title {
    font-size: 2rem;
  }

  .trust-subtitle {
    font-size: 1rem;
  }

  .trust-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-card {
    padding: 40px 24px;
  }

  .trust-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .trust-title {
    font-size: 1.75rem;
  }

  .trust-card {
    padding: 32px 20px;
  }

  .trust-icon {
    width: 64px;
    height: 64px;
  }

  .trust-icon svg {
    width: 36px;
    height: 36px;
  }
}


/* Solutions Grid Section */
.solutions-grid-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 24px;
}

.solutions-grid-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1f3a;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.solutions-grid-subtitle {
  font-size: 1.1rem;
  color: #60708f;
  text-align: center;
  margin-bottom: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 16px rgba(13, 31, 58, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 31, 58, 0.12);
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.solution-card p {
  font-size: 1rem;
  color: #60708f;
  line-height: 1.6;
  margin: 0;
}

.gradient-text-pink {
  background: linear-gradient(90deg, #E91E63 0%, #F06292 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-orange {
  background: linear-gradient(90deg, #FF5722 0%, #FF9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-card {
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
}

.cta-card h3 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.cta-button {
  background: #ffffff;
  color: #0066ff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .solutions-grid-title {
    font-size: 2rem;
  }

  .solutions-grid-subtitle {
    font-size: 1rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solution-card {
    padding: 32px 24px;
  }

  .solution-card h3 {
    font-size: 1.3rem;
  }

  .cta-card h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .solutions-grid-title {
    font-size: 1.75rem;
  }

  .solution-card {
    padding: 28px 20px;
  }

  .solution-card h3 {
    font-size: 1.2rem;
  }

  .cta-card {
    padding: 40px 24px;
  }
}


/* Contact Form Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: #ffffff;
  margin: 3% auto;
  padding: 48px;
  border-radius: 24px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 32px;
  font-weight: 300;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.close-modal:hover {
  color: #333;
}

.modal-content h2 {
  font-size: 1.8rem;
  color: #0d1f3a;
  margin-bottom: 32px;
  line-height: 1.3;
  padding-right: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #0d1f3a;
  margin-bottom: 8px;
}

.required {
  color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066ff;
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-privacy {
  font-size: 0.9rem;
  color: #60708f;
  line-height: 1.6;
  margin: 24px 0;
}

.form-privacy a {
  color: #0066ff;
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  color: #ffffff;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 32px 24px;
    margin: 5% auto;
    width: 95%;
  }

  .modal-content h2 {
    font-size: 1.5rem;
    padding-right: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 24px 20px;
  }

  .modal-content h2 {
    font-size: 1.3rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}


/* Team Section */
.team-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 24px;
  background: #f8f9fa;
  border-radius: 24px;
  padding: 64px 48px;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1f3a;
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(13, 31, 58, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 31, 58, 0.12);
}

.team-image {
  flex-shrink: 0;
}

.team-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f0f0;
}

.team-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d1f3a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.team-info p {
  font-size: 0.95rem;
  color: #60708f;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .team-section {
    padding: 48px 32px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 40px 24px;
    margin: 60px 16px;
  }

  .team-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 32px 20px;
  }

  .team-title {
    font-size: 1.75rem;
  }

  .team-card {
    padding: 20px;
    gap: 16px;
  }

  .team-image img {
    width: 64px;
    height: 64px;
  }

  .team-info h3 {
    font-size: 1.1rem;
  }

  .team-info p {
    font-size: 0.9rem;
  }
}


/* Client Logos Section */
.clients-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 64px 48px;
  background: #f8f9fa;
  border-radius: 24px;
}

.clients-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1f3a;
  text-align: center;
  margin-bottom: 16px;
}

.clients-subtitle {
  font-size: 1.1rem;
  color: #60708f;
  text-align: center;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.logos-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(13, 31, 58, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(13, 31, 58, 0.12);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.3s ease;
}

.logo-item:hover img {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .clients-section {
    padding: 48px 32px;
  }

  .clients-title {
    font-size: 2rem;
  }

  .logo-item {
    width: 150px;
    height: 80px;
  }

  .logos-track {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 40px 24px;
    margin: 60px 16px;
  }

  .clients-title {
    font-size: 1.75rem;
  }

  .clients-subtitle {
    font-size: 1rem;
  }

  .logo-item {
    width: 120px;
    height: 70px;
  }

  .logos-track {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .clients-section {
    padding: 32px 20px;
  }

  .clients-title {
    font-size: 1.5rem;
  }

  .logo-item {
    width: 100px;
    height: 60px;
    padding: 15px;
  }
}


/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-4px);
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.linkedin:hover {
  background: #0a66c2;
}

.social-icon.whatsapp:hover {
  background: #25d366;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: #60708f;
  transition: fill 0.3s ease;
}

.social-icon:hover svg {
  fill: #ffffff;
}


/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE ADDITIONS
   ======================================== */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
  .site-header {
    padding: 20px 24px;
  }

  .main-nav {
    gap: 24px;
  }

  .dropdown-menu {
    min-width: 240px;
  }
}

/* Mobile landscape and below (768px) */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .gradient-shell {
    padding: 0 12px 32px;
  }

  .site-header {
    padding: 16px 20px;
    flex-direction: column;
    gap: 16px;
  }

  .brand {
    flex-direction: row;
    gap: 12px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .brand-tagline {
    font-size: 0.8rem;
  }

  .main-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 200px;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }

  .topic-section {
    margin-bottom: 32px;
  }

  .topic-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .card-image {
    height: 160px;
  }

  .card-content {
    padding: 16px;
  }

  .card-content h3 {
    font-size: 1rem;
  }

  .card-label {
    font-size: 0.8rem;
  }

  /* Footer responsive */
  footer {
    padding: 32px 16px 24px;
  }

  footer > div {
    padding: 0 24px !important;
  }

  footer > div > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  footer h3 {
    font-size: 1rem !important;
    margin-bottom: 16px !important;
  }

  footer p {
    font-size: 0.9rem !important;
  }

  footer a {
    font-size: 0.9rem !important;
  }

  .social-icons {
    margin-top: 20px;
    gap: 12px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Mobile portrait (480px) */
@media (max-width: 480px) {
  .gradient-shell {
    padding: 0 8px 24px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-tagline {
    font-size: 0.75rem;
  }

  .main-nav {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .main-nav a {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-trigger {
    display: block;
    width: 100%;
  }

  .dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 90vw;
    max-width: 90vw;
  }

  .topic-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-image {
    height: 180px;
  }

  .card-content {
    padding: 14px;
  }

  .card-content h3 {
    font-size: 0.95rem;
  }

  /* Footer mobile */
  footer {
    padding: 24px 12px 20px;
  }

  footer > div {
    padding: 0 16px !important;
  }

  footer > div > div:first-child {
    gap: 32px !important;
  }

  footer h3 {
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
  }

  footer p {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }

  footer a {
    font-size: 0.85rem !important;
  }

  footer > div > div:last-child {
    padding-top: 16px !important;
  }

  footer > div > div:last-child p {
    font-size: 0.8rem !important;
  }

  .social-icons {
    margin-top: 16px;
    gap: 10px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Extra small devices (360px) */
@media (max-width: 360px) {
  .brand-name {
    font-size: 1.2rem;
  }

  .topic-title {
    font-size: 1.3rem;
  }

  .card-content h3 {
    font-size: 0.9rem;
  }

  footer h3 {
    font-size: 0.9rem !important;
  }

  footer p,
  footer a {
    font-size: 0.8rem !important;
  }
}

/* Desktop navigation styles */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
  
  .main-nav {
    display: flex;
    gap: 32px;
    font-weight: 700;
    align-items: center;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    overflow: visible;
  }
}

/* Mobile landscape and below (768px) */
@media (max-width: 768px) {
  /* Ensure no gaps on mobile */
  body, html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    width: 100%;
  }

  .gradient-shell {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }

  /* Show hamburger menu */
  .hamburger {
    display: flex !important;
  }

  /* Hide main nav by default on mobile */
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100vw !important;
    left: auto !important;
    width: 100vw !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 80px 0 24px !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3) !important;
    transition: right 0.3s ease !important;
    z-index: 1001 !important;
    overflow-y: auto !important;
    margin: 0 !important;
    border: none !important;
    transform: translateX(0) !important;
  }

  .main-nav.active {
    right: 0 !important;
    left: auto !important;
  }

  .main-nav > a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-size: 1.1rem;
    text-decoration: none;
    display: block;
  }

  .main-nav > a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  /* Dropdown adjustments for mobile */
  .nav-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    display: block;
    width: 100%;
    padding: 16px 24px;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 1.1rem;
  }

  .dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .dropdown-menu,
  .insights-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    grid-template-columns: 1fr;
  }

  .nav-dropdown.active .dropdown-menu,
  .nav-dropdown.active .insights-dropdown-menu {
    max-height: 600px;
  }

  .dropdown-item,
  .insights-menu-item {
    padding: 12px 24px 12px 40px;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    display: block;
  }

  .dropdown-item:hover,
  .insights-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .insights-menu-title {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px 8px 40px;
    font-size: 0.9rem;
  }

  /* Site header mobile adjustments - FIXED LAYOUT */
  .site-header {
    padding: 16px 20px;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .site-header.white-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Brand stays on the left */
  .brand {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .brand-tagline {
    font-size: 0.8rem;
  }

  .gradient-shell {
    padding: 0 16px 40px;
    gap: 24px;
  }

/* Old mobile styles - keeping for compatibility */
@media (max-width: 640px) {
  .main-nav {
    position: relative;
  }

  /* Make dropdowns work better on mobile */
  .nav-dropdown {
    position: static;
  }

  .dropdown-menu,
  .insights-dropdown-menu {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10000;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:hover .insights-dropdown-menu {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Landscape orientation fixes */
@media (max-height: 600px) and (orientation: landscape) {
  .site-header {
    padding: 12px 20px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 0.85rem;
  }
}

/* Print styles */
@media print {
  .site-header,
  footer,
  .whatsapp-float,
  .social-icons {
    display: none;
  }

  body {
    background: white;
  }

  .gradient-shell {
    padding: 0;
  }
}
