/* ============================================
   ACCLIVITY LABS - Main Stylesheet
   Replica of LeewayHertz Design
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a2e;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: #555;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

/* --- Header / Navigation --- */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0b1424;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

#main-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 128px;
}

.logo-container a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container .logo-lockup {
  height: 104px;
  width: auto;
  object-fit: contain;
}

.logo-container .logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

.logo-container .logo-text span {
  color: #2563eb;
}

.logo-container .logo-tagline {
  font-size: 0.6rem;
  color: #666;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}

/* Navigation */
#top-nav {
  display: flex;
  align-items: center;
}

#top-nav > ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

#top-nav > ul > li {
  position: relative;
  list-style: none;
}

#top-nav > ul > li > a {
  display: flex;
  align-items: center;
  padding: 24px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e6edf6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

#top-nav > ul > li > a:hover {
  color: #2563eb;
}

#top-nav > ul > li > a .arrow {
  margin-left: 5px;
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

#top-nav > ul > li:hover > a .arrow {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 900px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  border-radius: 0 0 12px 12px;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

#top-nav > ul > li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.mega-menu-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8efff;
}

.mega-menu-col ul {
  margin: 0;
  padding: 0;
}

.mega-menu-col ul li {
  list-style: none;
}

.mega-menu-col ul li a {
  display: block;
  padding: 5px 0;
  font-size: 0.82rem;
  color: #555;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  transition: all 0.2s ease;
}

.mega-menu-col ul li a:hover {
  color: #2563eb;
  padding-left: 5px;
}

/* Simple dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  border-radius: 0 0 12px 12px;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

#top-nav > ul > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 25px;
  font-size: 0.85rem;
  font-weight: 400;
  color: #555;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #f0f5ff;
  color: #2563eb;
}

/* Header CTA */
.header-cta {
  margin-left: 15px;
}

.header-cta a {
  display: inline-block;
  padding: 10px 24px;
  background: #2563eb;
  color: #fff !important;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.header-cta a:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37,99,235,0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: #e6edf6;
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a4e 40%, #24243e 100%);
  padding-top: 70px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(37, 99, 235, 0.5);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.hero-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.hero-particle:nth-child(3) { top: 40%; left: 50%; animation-delay: 2s; }
.hero-particle:nth-child(4) { top: 80%; left: 30%; animation-delay: 3s; }
.hero-particle:nth-child(5) { top: 30%; left: 70%; animation-delay: 4s; }
.hero-particle:nth-child(6) { top: 70%; left: 20%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 0;
}

.hero-content h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.4);
}

.hero-image {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  opacity: 0.15;
}

/* --- Trusted By / Logos Bar --- */
.trusted-section {
  background: #f8fafc;
  padding: 40px 0;
  border-bottom: 1px solid #e2e8f0;
}

.trusted-section .section-label {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-bottom: 25px;
  font-weight: 600;
}

.logo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.5;
}

.logo-grid img {
  height: 35px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Stats Counter --- */
.stats-section {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  font-size: 2rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* --- Services Section --- */
.services-section {
  background: #fff;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.section-header h2 span {
  color: #2563eb;
}

.section-header p {
  font-size: 1.05rem;
  color: #64748b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
}

/* --- Industries Section --- */
.industries-section {
  background: #f8fafc;
}

.industries-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.industry-tab {
  padding: 10px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.industry-tab:hover,
.industry-tab.active {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

.industry-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.industry-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.industry-text p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 20px;
}

.industry-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.industry-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #475569;
}

.industry-feature .check {
  color: #2563eb;
  font-weight: bold;
}

.industry-image {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  border-radius: 16px;
  padding: 40px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
}

/* --- Case Studies / Our Work Section --- */
.work-section {
  background: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  background: #fff;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.work-card-image {
  height: 200px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.work-card-image .tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.work-card-body {
  padding: 25px;
}

.work-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.work-card-body p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
}

.work-card-body .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
}

.work-card-body .learn-more:hover {
  gap: 10px;
}

/* --- Testimonials Section --- */
.testimonials-section {
  background: #f8fafc;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-item {
  display: none;
  padding: 40px;
}

.testimonial-item.active {
  display: block;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: #2563eb;
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
}

.testimonial-author {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 5px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: #2563eb;
  width: 30px;
  border-radius: 5px;
}

/* --- News / Mentioned Section --- */
.news-section {
  background: #0f172a;
  color: #fff;
}

.news-section .section-header h2 {
  color: #fff;
}

.news-section .section-header p {
  color: rgba(255,255,255,0.6);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.news-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.news-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.news-card .news-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(37,99,235,0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.news-card h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.news-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.news-card .read-more {
  display: inline-block;
  margin-top: 12px;
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- Engagement Models Section --- */
.engagement-section {
  background: #fff;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.engagement-card {
  text-align: center;
  padding: 40px 30px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.engagement-card:hover {
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(37,99,235,0.1);
}

.engagement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.engagement-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.engagement-card p {
  font-size: 0.9rem;
  color: #64748b;
}

/* --- Get Started Steps --- */
.steps-section {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #fff;
}

.steps-section .section-header h2 {
  color: #fff;
}

.steps-section .section-header p {
  color: rgba(255,255,255,0.7);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.step-item h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.step-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* --- Contact Form Section --- */
.contact-section {
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-info > p {
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-detail .icon {
  width: 45px;
  height: 45px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.contact-detail p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0;
}

.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.form-group label .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}

.form-checkbox input {
  margin-top: 3px;
}

.form-checkbox label {
  font-size: 0.82rem;
  color: #64748b;
}

.form-checkbox label a {
  color: #2563eb;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}

/* --- Insights / Blog Section --- */
.insights-section {
  background: #fff;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.insight-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  background: #fff;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.insight-image {
  height: 180px;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 3rem;
}

.insight-body {
  padding: 25px;
}

.insight-body .category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 10px;
}

.insight-body h4 {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.insight-body p {
  font-size: 0.85rem;
  color: #64748b;
}

/* --- Footer --- */
#main-footer {
  background: #0f172a;
  color: #fff;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.footer-brand .footer-logo span {
  color: #60a5fa;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #60a5fa;
  padding-left: 5px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

/* --- About Page --- */
.page-hero {
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a4e 40%, #24243e 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 15px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-intro {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  border-radius: 16px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 30px;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: #64748b;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #2563eb;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 0;
}

/* --- Case Studies Page --- */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.case-study-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  background: #fff;
}

.case-study-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.case-study-image {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 3rem;
}

.case-study-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-body .tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.case-study-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.case-study-body p {
  font-size: 0.88rem;
  color: #64748b;
}

/* --- Insights Page --- */
.insights-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.featured-insight {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: #fff;
}

.featured-insight .featured-image {
  height: 300px;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 4rem;
}

.featured-insight .featured-body {
  padding: 30px;
}

.sidebar-insights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-insight {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.sidebar-insight:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sidebar-insight .thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  flex-shrink: 0;
}

.sidebar-insight h4 {
  font-size: 0.88rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

.sidebar-insight .date {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* --- Services Page --- */
.services-hero {
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a4e 40%, #24243e 100%);
  padding: 140px 0 80px;
}

.services-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-hero-text h1 {
  color: #fff;
  margin-bottom: 20px;
}

.services-hero-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-category-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.service-category-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.service-category-card .cat-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-category-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-category-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}

.service-detail-section {
  padding: 80px 0;
}

.service-detail-section:nth-child(even) {
  background: #f8fafc;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

/* --- Contact Page --- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.contact-method {
  padding: 25px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #2563eb;
  box-shadow: 0 5px 20px rgba(37,99,235,0.1);
}

.contact-method .method-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-method h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.contact-method p {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 0;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 2rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.cta-banner .btn-white {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #2563eb;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .mega-menu { min-width: 700px; }
  .mega-menu-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .case-studies-grid { grid-template-columns: 1fr; }
  .case-study-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .section-padding { padding: 50px 0; }

  #top-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  #top-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 20px;
    overflow-y: auto;
    z-index: 9998;
  }

  #top-nav.mobile-open > ul {
    flex-direction: column;
    width: 100%;
  }

  #top-nav.mobile-open > ul > li > a {
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .mega-menu,
  .dropdown-menu {
    position: static;
    transform: none;
    min-width: auto;
    box-shadow: none;
    padding: 10px 0 10px 15px;
    display: none;
  }

  #top-nav.mobile-open .mega-menu,
  #top-nav.mobile-open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 { font-size: 2.2rem; }
  .hero-image { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .industry-content { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .insights-page-grid { grid-template-columns: 1fr; }
  .services-hero-content { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .services-categories { grid-template-columns: 1fr; }
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none; }
