/* ==========================================================================
   NeoVertex Solutions - Premium Light Theme CSS
   ========================================================================== */

:root {
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --bg-main: #ffffff;
  --bg-surface: #ffffff;
  
  --text-primary: #00113d;
  --text-secondary: #3a4f7a;
  
  --primary: #004add;
  --primary-hover: #0038b0;
  --secondary: #00113d;
  
  --gradient-1: linear-gradient(135deg, #004add 0%, #00113d 100%);
  --gradient-text: linear-gradient(135deg, #004add, #00113d);
  
  --shadow-sm: 0 1px 2px 0 rgb(0 26 90 / 0.07);
  --shadow-md: 0 4px 6px -1px rgb(0 26 90 / 0.12), 0 2px 4px -2px rgb(0 26 90 / 0.08);
  --shadow-lg: 0 10px 15px -3px rgb(0 26 90 / 0.15), 0 4px 6px -4px rgb(0 26 90 / 0.1);
  
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: font-family 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  transition: font-family 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Background Elements - Hidden for clean white background */
.bg-gradient-glow {
  display: none;
}
.blob-1,
.blob-2 {
  display: none;
}
.bg-grid-overlay {
  display: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 74, 221, 0.08);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
}
.logo-wrapper {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 36px;
  mix-blend-mode: multiply;
}
.logo-accent {
  color: var(--primary);
}
.nav-menu {
  display: flex;
  gap: 2.5rem;
}
.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 74, 221, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 74, 221, 0.5);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}
.hamburger-bar {
  width: 28px;
  height: 3px;
  background-color: var(--text-primary);
  transition: all 0.3s;
  border-radius: 3px;
}
.mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-drawer.active {
  right: 0;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-heading);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 74, 221, 0.07);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.mobile-link:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}
.mobile-cta {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
}

/* Hero Section */
.hero-section {
  padding: 10rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 74, 221, 0.1);
  color: var(--primary);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
}
.hero-visual {
  position: relative;
}
.hero-artwork-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}
.image-frame {
  position: relative;
}
.frame-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0,74,221,0.3) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}
.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  stroke-width: 3;
}

/* Stats Section */
.stats-section {
  background: var(--bg-surface);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 17, 61, 0.08);
  color: var(--secondary);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.services-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1rem;
}
.services-subtitle {
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.125rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--bg-surface);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 74, 221, 0.3);
}
.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(0, 74, 221, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
.case-study-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
.case-study-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.service-card:hover .service-icon-wrapper {
  background: var(--primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card-desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  flex-grow: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  transition: gap 0.3s;
}
.service-card:hover .service-link {
  gap: 0.75rem;
}

.service-detail-panel {
  position: relative;
  margin-top: 3rem;
  background: rgba(0, 74, 221, 0.05);
  border: 1px solid rgba(0, 74, 221, 0.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  overflow: hidden;
}

.service-detail-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.detail-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(0, 74, 221, 0.12);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.detail-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin: 0.75rem 0 0;
}

.detail-summary {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 780px;
}

.detail-close {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 74, 221, 0.2);
  border-radius: 50%;
  background: white;
  color: var(--secondary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.detail-close:hover {
  transform: scale(1.05);
  border-color: var(--primary);
}

.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-tab {
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: white;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.detail-tab.active,
.detail-tab:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.detail-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.detail-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.detail-image {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.detail-section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.detail-section p,
.detail-features {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.detail-features {
  list-style: disc inside;
  padding-left: 1rem;
}

.detail-features li {
  margin-bottom: 0.85rem;
}

@media (max-width: 900px) {
  .detail-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .detail-panel-header {
    flex-direction: column;
    align-items: stretch;
  }
}

/* CTA Section */
.cta-section {
  background: var(--text-primary);
  color: white;
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-badge {
  color: #5b9dff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
  letter-spacing: 1px;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.cta-desc {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}
.cta-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 74, 221, 0.25) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 10rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.category-pill,
.tag-pill,
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: white;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.featured-post-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.featured-image-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-post-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.featured-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.featured-post-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin: 0;
}

.featured-post-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 40rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.hidden-post {
  display: none;
}

.post-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.post-card-content {
  padding: 2rem;
}

@media (max-width: 900px) {
  .featured-post-card {
    grid-template-columns: 1fr;
  }

  .featured-image-wrapper {
    min-height: 320px;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .featured-post-content {
    padding: 2rem;
  }
}

.category-pill:hover,
.tag-pill:hover,
.share-button:hover {
  background: rgba(0, 74, 221, 0.08);
  border-color: rgba(0, 74, 221, 0.15);
  color: var(--primary);
}

.post-grid,
.related-grid,
.section-grid,
.job-grid,
.faq-category-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.post-grid,
.related-grid,
.section-grid,
.job-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.post-card,
.related-card,
.job-card,
.faq-card,
.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.post-card {
  display: grid;
  grid-template-columns: 1fr;
}

.post-image-wrapper,
.post-image-wrapper img,
.post-image {
  width: 100%;
  display: block;
}

.post-image-wrapper {
  overflow: hidden;
  height: 240px;
}

.post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-content,
.related-card,
.job-card,
.faq-card,
.faq-item {
  padding: 2rem;
}

.hidden-details {
  display: none;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.post-card.open .hidden-details {
  display: block;
}

.post-card.open .btn-outline {
  border-color: rgba(0, 74, 221, 0.2);
}

.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.post-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.share-buttons span {
  font-weight: 600;
}

.related-section {
  margin-top: 4rem;
}

.related-card {
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.related-card h4 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.job-card {
  padding: 2rem;
}

.job-badge {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 74, 221, 0.12);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.apply-form {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  outline: none;
  font-family: var(--font-primary);
}

.faq-category-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 3rem;
}

.faq-card,
.faq-item {
  padding: 2rem;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .page-hero-grid,
  .post-grid,
  .related-grid,
  .section-grid,
  .job-grid,
  .faq-category-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .page-hero {
    padding-top: 8rem;
  }

  .page-hero-grid {
    gap: 2rem;
  }
}

/* Footer */
.footer {
  background: var(--bg-surface);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}
.footer-brand {
  text-align: left;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.footer-logo .logo-img {
  height: 90px;
  mix-blend-mode: multiply;
}
.footer-desc {
  color: var(--text-secondary);
  margin: 0.75rem 0 1rem;
  line-height: 1.7;
  font-size: 0.9rem;
}
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  width: 100%;
  justify-content: flex-start;
}
.footer-contact-info {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: flex-start;
}
.social-icon-link {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.social-icon-link:hover {
  color: white;
  background: var(--primary);
  transform: translateY(-3px);
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.footer-links-list {
  list-style: none;
}
.footer-links-list li {
  margin-bottom: 0.85rem;
}
.footer-links-list a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}
.footer-links-list a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.subscribe-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.subscribe-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  background: var(--bg-main);
  outline: none;
  transition: border-color 0.3s;
}
.subscribe-input:focus {
  border-color: var(--primary);
}
.subscribe-btn {
  width: 100%;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1001;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  background: #20ba5a;
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}


/* =========================================
   About Page Specific Styles
   ========================================= */
.about-hero {
  padding: 14rem 2rem 8rem;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 100%);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(0, 74, 221, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumbs {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 74, 221, 0.08);
  border-radius: 2rem;
  box-shadow: 0 4px 10px rgba(0, 74, 221, 0.05);
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.about-hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.about-hero-subtitle {
  font-size: 1.35rem;
  color: var(--text-secondary);
  max-width: 100%;
  margin: 0;
  line-height: 1.8;
}

.about-section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}
.about-story-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-left: 3.5rem;
}
.about-story-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2px;
  background: var(--primary);
}
.about-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.about-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.about-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.btn-about-cta {
  padding: 1rem 2.5rem;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
}
.btn-link-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  position: relative;
}
.btn-link-contact::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.btn-link-contact:hover {
  color: var(--primary);
}
.btn-link-contact:hover::after {
  width: 100%;
}
.about-visual {
  position: relative;
}
.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: none;
  border: none;
  z-index: 1;
  background: transparent;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-image-frame:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}
.about-team-img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.8s ease;
}
.about-image-frame:hover .about-team-img {
  transform: scale(1.05);
}

.team-container-wrapper {
  margin-top: 8rem;
}
.team-header {
  text-align: center;
  margin-bottom: 5rem;
}
.team-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.team-section-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}
.team-marquee-container {
  overflow: hidden;
  padding: 2rem 0;
}
.team-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 2rem 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.team-grid::-webkit-scrollbar {
  display: none;
}
.team-card {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    background: var(--bg-surface);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 16px 24px;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.member-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}
.member-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 17, 61, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.team-card:hover .member-image-wrapper::after {
    opacity: 1;
}
.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s ease;
}
.team-card:hover .member-img {
    transform: scale(1.05);
}
.member-socials-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 20px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}
.team-card:hover .member-socials-overlay {
    bottom: 0;
    opacity: 1;
}
.member-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    color: #2b6cb0;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.member-social-link:hover {
    background-color: #2b6cb0;
    color: #ffffff;
    transform: translateY(-4px);
}
.member-name {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}
.member-role {
    background-color: #eff4ff;
    color: #2b6cb0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

/* Individual Team Card matching user's photo */
.team-card, .team-member-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 16px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  width: 100%;
  box-sizing: border-box;
}
.team-card:hover, .team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.team-img-wrapper, .member-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  background: #f1f5f9;
}
.team-img, .member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.4s ease;
}
.team-card:hover .team-img, .team-card:hover .member-img {
  transform: scale(1.04);
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
}
.team-name, .member-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.25;
}
.team-position, .team-role, .member-role {
  display: inline-block;
  background: #eef4ff;
  color: #0052cc;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .team-section-title {
    font-size: 1.85rem;
  }
}

/* Mobile (< 600px) */
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0;
  }
  .team-container-wrapper {
    padding: 0 16px;
    margin: 40px auto;
  }
  .team-card, .team-member-card {
    padding: 14px 14px 20px;
    max-width: 320px;
    margin: 0 auto;
  }
  .team-name {
    font-size: 1.1rem;
  }
  .team-position, .team-role, .member-role {
    font-size: 0.8rem;
    padding: 5px 14px;
  }
}

.vision-mission-container {
  margin-top: 4rem;
  padding: 5rem 4rem;
  background: linear-gradient(135deg, #f4f8ff 0%, #eef3ff 100%);
  border-radius: 2.5rem;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.8);
  border: none;
  position: relative;
  overflow: hidden;
}
.vision-mission-container::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 74, 221, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
}
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  position: relative;
  z-index: 1;
}
.vision-mission-card {
  background: #ffffff;
  padding: 3.5rem 3rem;
  border-radius: 24px;
  border: none;
  box-shadow: 0 12px 36px rgba(0, 17, 61, 0.04);
  transition: all 0.4s ease;
}
.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 17, 61, 0.08);
}
.vision-mission-card .card-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vision-mission-card .card-title::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: var(--gradient-1);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 74, 221, 0.5);
}
.vision-mission-card .card-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
/* --- Portfolio Section --- */
.portfolio-container {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    padding-top: 2rem;
}

.portfolio-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 74, 221, 0.08);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 17, 61, 0.1);
}

.portfolio-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background-color: rgba(0, 74, 221, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.portfolio-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.portfolio-card-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.portfolio-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    position: relative;
}

.portfolio-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.portfolio-link:hover::after {
    width: 100%;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .btn-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-section {
    padding-top: 8rem;
  }
  /* Hide hero section images on mobile views ONLY */
  .hero-visual,
  .hero-section .hero-visual,
  .hero-section .image-frame,
  .hero-section .hero-artwork-img {
    display: none !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge {
    margin: 0 auto 2rem;
  }
  .hero-subtitle {
    margin: 0 auto 2rem;
  }
  .hero-cta-group {
    justify-content: center;
    margin-bottom: 3rem;
  }
  .stats-grid {
    flex-direction: column;
    gap: 3rem;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .cta-title {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  .vision-mission-container {
    padding: 2.5rem 1.5rem;
  }
  .about-hero {
    padding: 7rem 1.5rem 3rem;
  }
  .about-hero-title {
    font-size: 2.5rem;
  }
  .team-section-title {
    font-size: 2rem;
  }
  .about-title {
    font-size: 2rem;
  }
}
.service-image-wrapper { width: 100%; height: 120px; overflow: hidden; border-radius: 12px; margin-bottom: 15px; }
.service-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.service-card:hover .service-card-image { transform: scale(1.05); }
.footer-logo .logo-img { height: 120px; }

/* ==========================================================================
   MOBILE, TABLET & DESKTOP RESPONSIVE ENHANCEMENTS
   ========================================================================== */

/* --- Founder Section Responsive --- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* --- Service Detail Pages Responsive --- */
.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* --- Tablet Responsive (768px to 1024px) --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
  }
  .founder-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
  }
@media (max-width: 900px) {
  .founder-grid,
  .founder-card {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    text-align: center !important;
  }
  .founder-image,
  .founder-image-box {
    max-width: 260px !important;
    margin: 0 auto !important;
  }
  .founder-img {
    max-width: 220px !important;
    height: 270px !important;
    border-radius: 16px !important;
  }
  .detail-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 26px !important;
  }
  .detail-media {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }
  .detail-image {
    width: 100% !important;
    height: 240px !important;
    max-height: 260px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 14px !important;
  }
  .service-detail-page {
    padding: 85px 16px 40px !important;
  }
  .service-detail-inner {
    padding: 24px 18px !important;
    border-radius: 16px !important;
  }
  .detail-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    margin-bottom: 15px !important;
    word-break: break-word !important;
  }
}

/* --- Mobile Responsive (up to 767px) --- */
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .portfolio-container {
    padding: 2rem 16px;
  }
  .services-section {
    padding: 60px 16px !important;
  }
  .services-title {
    font-size: 1.85rem !important;
  }
  .service-card {
    padding: 1.8rem 1.4rem;
  }
  .portfolio-info {
    padding: 1.5rem;
  }
  .cta-section {
    padding: 60px 16px;
  }
  .cta-content {
    padding: 2.5rem 1.5rem;
  }
  .cta-title {
    font-size: 1.85rem !important;
  }
  .footer {
    padding: 50px 16px 30px;
  }
}

/* --- Small Mobile (up to 480px) --- */
@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }
  .nav-logo .logo-text {
    font-size: 1.1rem;
  }
  .hero-title {
    font-size: 2rem !important;
  }
  .team-card {
    max-width: 100% !important;
  }
  .service-card-title {
    font-size: 1.25rem;
  }
  .about-hero {
    padding: 6rem 1.2rem 2.5rem;
  }
  .about-hero-title {
    font-size: 2rem !important;
  }
  .about-hero-subtitle {
    font-size: 1.05rem;
  }
}


