:root {
  --primary-color: #ff6600;
  --primary-dark: #cc5200;
  --brand-black: #000000;
  --brand-orange: #ff6600;
  --text-dark: #000000;
  --text-light: #333333;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 0.4rem 0;
  min-height: 50px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo {
  margin-right: 0;
  order: 1;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin-left: 3rem;
  order: 2;
  flex: 1;
}

.header-actions {
  order: 3;
  margin-left: auto;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.btn-connect {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-connect:hover {
  background: var(--primary-dark);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
}

/* Hero Section */
.hero {
  background-color: #000000;
  color: var(--bg-white);
  padding: 0;
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero .container {
  padding-left: 0;
  padding-right: 20px;
}

.hero-content {
  max-width: 1200px;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 0;
  padding-right: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  max-width: 1000px;
  text-align: left;
  padding: 1.5rem 2rem 1.5rem 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  display: inline-block;
}

.hero-title-brand {
  color: var(--brand-orange);
}

.hero-title-light {
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1000px;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
  border: 2px solid transparent;
}

.btn-secondary {
  background: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}

.btn-secondary:hover {
  background: var(--bg-white);
  color: var(--text-dark);
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}

.btn-share {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-share svg {
  width: 20px;
  height: 20px;
}

.btn-share-facebook {
  background: #1877f2;
  color: var(--bg-white);
}

.btn-share-facebook:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(24, 119, 242, 0.3);
}

.btn-share-linkedin {
  background: #0077b5;
  color: var(--bg-white);
}

.btn-share-linkedin:hover {
  background: #006399;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

/* Featured Section */
.featured-section {
  background: #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.featured-content {
  max-width: 900px;
  margin: 0 auto;
}

.featured-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.featured-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.featured-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title .heading-bold {
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Summary (Homepage) */
.services-summary {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-summary-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.services-summary-actions {
  margin-top: 2.5rem;
}

/* Services Cards Grid */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.service-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
  flex-shrink: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  flex: 1;
}

.service-card-description strong {
  font-weight: 600;
  color: var(--text-dark);
}

.services-full-list-link {
  text-align: center;
  margin-top: 3rem;
}

.services-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  transition: var(--transition);
}

.services-link:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Tablet breakpoint for services cards */
@media (max-width: 992px) and (min-width: 769px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Services Detailed Section (What We Do Page) */
.services-detailed-section {
  padding: 60px 0;
  background: linear-gradient(
    to bottom,
    #f8f9fa 0%,
    var(--bg-white) 50%,
    #f8f9fa 100%
  );
  position: relative;
}

.services-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.service-category {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.service-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary-color) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-category:hover {
  box-shadow: 0 8px 32px rgba(255, 140, 0, 0.15);
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.service-category:hover::before {
  opacity: 1;
}

.service-category-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
}

.service-category-title .heading-bold {
  font-weight: 700;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.service-item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-item-icon-wrapper {
  flex-shrink: 0;
}

.service-item-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border-radius: 8px;
}

.service-item-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.service-item-content {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-item-content p {
  margin: 0;
}

.service-category-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
}

/* Service Category Interactive Layout (for all categories) */
.service-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
  flex-wrap: wrap;
  gap: 1rem;
  transition: margin-bottom 0.4s ease;
}

.service-category-interactive.has-active-detail .service-category-header {
  margin-bottom: 1.5rem;
}

.service-category-header .service-category-title {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-category-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.service-category-link {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 6px;
  font-weight: 500;
  position: relative;
}

.service-category-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.service-category-link:hover {
  color: var(--text-dark);
  background: rgba(255, 140, 0, 0.08);
  padding-left: 1.5rem;
}

.service-category-link:hover::before {
  width: 8px;
}

.service-category-link.active {
  color: var(--primary-color);
  text-decoration: none;
  background: rgba(255, 140, 0, 0.12);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.2);
}

.service-category-link.active::before {
  width: 8px;
}

.service-category-details {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin-top 0.4s ease;
}

.service-category-details.has-active {
  margin-top: 1.5rem;
  max-height: 2000px;
}

.service-detail {
  display: none;
  animation: fadeIn 0.3s ease;
}

.service-detail.active {
  display: block;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, var(--bg-white) 100%);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 140, 0, 0.1);
}

.service-detail.active .service-detail-content {
  background: var(--bg-white);
  box-shadow: 0 8px 32px rgba(255, 140, 0, 0.12);
  border-color: rgba(255, 140, 0, 0.3);
  transform: translateY(-2px);
}

.service-detail-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.service-detail-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-detail.active .service-detail-image::after {
  opacity: 1;
}

.service-detail-image .detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail.active .service-detail-image .detail-img {
  transform: scale(1.08);
}

.service-detail-text h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-detail-text h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.service-detail-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin: 0;
  font-weight: 300;
}

/* Service Popup Modal */
.service-popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-popup-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.service-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.service-popup-content {
  position: relative;
  background: var(--bg-white);
  border-radius: 16px;
  max-width: 900px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10002;
  line-height: 1;
}

.service-popup-close:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: rotate(90deg);
}

.service-popup-body {
  padding: 3rem;
}

.service-popup-body .service-category-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

.service-popup-body .service-category-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-popup-body .service-category-link {
  padding: 1rem 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.service-popup-body .service-category-link:hover {
  background: rgba(255, 140, 0, 0.1);
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

.service-popup-body .service-detail {
  display: block;
  margin-top: 2rem;
}

.service-popup-body .service-detail-content {
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0;
  background: transparent;
  border: none;
}

.service-popup-body .service-detail-image {
  height: 300px;
}

.services-tabs {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid var(--border-color);
  padding-right: 2rem;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 1.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  font-family: "Montserrat", sans-serif;
  text-align: left;
  border-left: 4px solid transparent;
  border-radius: 0;
  width: 100%;
}

.tab-btn:hover {
  color: var(--primary-color);
  background: rgba(255, 102, 0, 0.03);
}

.tab-btn.active {
  color: var(--primary-color);
  font-weight: 600;
  background: rgba(255, 102, 0, 0.08);
  border-left-color: var(--primary-color);
}

.tab-content-wrapper {
  position: relative;
  min-height: 400px;
}

.tab-content {
  display: none;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-color);
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-content {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}

.service-image-wrapper {
  overflow: hidden;
  position: relative;
}

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

.service-text {
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  display: inline-block;
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.service-link:hover {
  gap: 1rem;
}

/* Industries Section */
.industries-section {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.industries-section .absolute.inset-0 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.industries-section .relative {
  position: relative;
  z-index: 10;
}

.mb-4 {
  margin-bottom: 1rem;
}

.industries-image-wrapper {
  margin-top: 3rem;
  text-align: center;
}

.industries-infographic {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Resources Section (Homepage) */
.resources-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.resources-preview {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.resources-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Resources Page Styles */
.resources-hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.resources-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 140, 0, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.resources-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 2px,
    rgba(255, 255, 255, 0.03) 4px
  );
  pointer-events: none;
}

.resources-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.resources-hero-title {
  font-size: 4rem;
  font-weight: 400;
  color: var(--bg-white);
  margin-bottom: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.resources-hero-title .heading-bold {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.resources-hero-subtitle {
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  max-width: 850px;
  margin: 0 auto;
  font-weight: 300;
}

.resources-list-section {
  padding: 100px 0;
  background: var(--bg-white);
}

/* Technology Partners Section */
.partners-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.partner-card:hover {
  box-shadow: 0 8px 32px rgba(255, 140, 0, 0.15);
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.partner-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 3rem 2rem;
  height: 100%;
}

.partner-logo-wrapper {
  width: 100%;
  max-width: 250px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition);
}

.partner-card:hover .partner-logo-wrapper {
  background: rgba(255, 140, 0, 0.05);
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: var(--transition);
}

.partner-card:hover .partner-logo {
  transform: scale(1.05);
}

.partner-info {
  text-align: center;
  width: 100%;
}

.partner-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.partner-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.resource-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.resource-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.resource-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.resource-info {
  flex: 1;
}

.resource-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.resource-meta {
  font-size: 0.9rem;
  color: var(--text-light);
}

.resource-preview {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.resource-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.resource-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Thinking Section */
.thinking-section {
  padding: 100px 0;
  background: #ffffff;
}

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

.thinking-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.thinking-category {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.thinking-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thinking-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Work Section */
.work-section {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.work-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.work-content {
  padding: 2rem;
}

.work-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.work-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Clients Section */
.clients-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  align-items: center;
  justify-items: center;
  margin-top: 3rem;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: 120px;
}

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

.client-image {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: var(--transition);
}

.client-logo:hover .client-image {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Careers Section */
.careers-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.careers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 140, 0, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.careers-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.careers-text {
  padding: 0 2rem;
}

.careers-section .section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--bg-white);
}

.careers-description {
  font-size: 1.3rem;
  line-height: 1.9;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.careers-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.careers-actions .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  min-width: 200px;
}

.careers-actions .btn-primary {
  background: var(--primary-color);
  color: var(--bg-white);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.careers-actions .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.careers-actions .btn-secondary {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.careers-actions .btn-secondary:hover {
  background: var(--bg-white);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Careers Page Styles */
.careers-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: var(--bg-white);
}

.careers-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.careers-hero-title {
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--bg-white);
  margin-bottom: 2rem;
}

.careers-hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

/* Why Join Section */
.why-join-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.benefit-icon {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.25rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.benefit-title .heading-bold {
  font-weight: 700;
}

.benefit-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Positions Section */
.positions-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.positions-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.position-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.position-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

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

.position-info {
  flex: 1;
}

.position-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.position-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.position-location,
.position-type {
  font-size: 0.95rem;
  color: var(--text-light);
}

.position-type {
  padding: 0.25rem 0.75rem;
  background: var(--bg-light);
  border-radius: 4px;
}

.position-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.position-requirements {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.position-requirements h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.position-requirements ul {
  list-style: none;
  padding-left: 0;
}

.position-requirements li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.position-requirements li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Case Study Page Styles */
.case-study-section {
  padding: 80px 0;
  background: var(--bg-white);
  position: relative;
}

.case-study-section + .case-study-section {
  padding-top: 60px;
}

.case-study-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.3), transparent);
}

.case-study-section-alt {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.case-study-results-section {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
  position: relative;
}

.case-study-results-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.case-study-results-section .case-study-content {
  position: relative;
  z-index: 1;
}

.case-study-section-alt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.case-study-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.case-study-header {
  margin-bottom: 0;
  position: relative;
}

.case-study-header .section-title {
  margin: 0 0 1.5rem 0;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  text-align: left;
}

.case-study-results-wrapper .case-study-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(255, 140, 0, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, transparent 100%);
  align-self: center;
}

.case-study-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, transparent 100%);
}

.case-study-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.case-study-results-wrapper .case-study-image:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255, 140, 0, 0.18), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.case-study-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(255, 140, 0, 0.2);
}

.case-study-image:hover::before {
  opacity: 1;
}

.case-study-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-image:hover .case-study-img {
  transform: scale(1.05);
}

.case-study-challenge-grid {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.case-study-header .case-study-text {
  margin-top: 0;
}

.case-study-solution-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.case-study-results-wrapper {
  display: block;
  width: 100%;
}

.case-study-impact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.case-study-security-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.case-study-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.case-study-text {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-dark);
  text-align: left;
}

.case-study-text p {
  margin-bottom: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-align: left;
}

.case-study-text p:last-child {
  margin-bottom: 0;
}

.case-study-text p:first-child {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.9;
}

.case-study-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.case-study-list li {
  margin-bottom: 1.25rem;
  padding-left: 2.5rem;
  position: relative;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.8;
  transition: all 0.3s ease;
  text-align: left;
}

.case-study-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.case-study-list li:hover {
  padding-left: 3rem;
  color: var(--text-dark);
}

.case-study-list li:hover::before {
  transform: translateX(5px);
}

.case-study-sublist {
  list-style: none;
  padding: 0.5rem 0 0 1.5rem;
  margin: 0.5rem 0;
}

.case-study-sublist li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
}

.case-study-sublist li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.5;
}

.case-study-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 0;
  position: relative;
}

.case-study-results-grid .result-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.case-study-results-grid .result-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.case-study-results-grid .result-card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.case-study-results-grid .result-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.case-study-results-grid .result-card:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.result-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(255, 140, 0, 0.12);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(255, 140, 0, 0.04);
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), rgba(255, 140, 0, 0.6), rgba(255, 140, 0, 0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.result-card:hover::after {
  opacity: 1;
}

.result-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 140, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 140, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.result-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.12) 0%, rgba(255, 140, 0, 0.06) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.1);
}

.result-card-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 140, 0, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.result-card:hover .result-card-icon {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(255, 140, 0, 0.12) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.2);
}

.result-card:hover .result-card-icon::before {
  opacity: 1;
}

.result-card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.result-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255, 140, 0, 0.12);
  letter-spacing: 0.05em;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.4s ease;
  z-index: 1;
}

.result-card:hover .result-card-number {
  color: rgba(255, 140, 0, 0.2);
  transform: scale(1.1);
}

.result-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.result-card:hover h3 {
  color: var(--primary-color);
}

.result-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  font-weight: 400;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.impact-item {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafafa 100%);
  border: 2px solid rgba(255, 140, 0, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.impact-item::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.impact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.3);
}

.impact-item:hover::after {
  opacity: 1;
}

.impact-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.impact-item p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin: 0;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.partnership-item {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f5f5f5 100%);
  border: 2px solid rgba(255, 140, 0, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.partnership-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), rgba(255, 140, 0, 0.5));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.partnership-item:hover::before {
  transform: scaleX(1);
}

.partnership-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.partnership-item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.partnership-item p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin: 0;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.partnership-item-full {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.12) 0%, rgba(255, 140, 0, 0.05) 100%);
  border-color: rgba(255, 140, 0, 0.3);
  border-width: 3px;
}

.partnership-item-full:hover {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.08) 100%);
}

@media (max-width: 768px) {
  .case-study-section {
    padding: 60px 0;
  }

  .case-study-content {
    padding: 0 1rem;
  }

  .case-study-header {
    margin-bottom: 0;
  }
  
  .case-study-header .section-title {
    margin-bottom: 1rem;
  }

  .case-study-header .section-title {
    font-size: 2rem;
  }

  .case-study-challenge-grid,
  .case-study-solution-grid,
  .case-study-results-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .case-study-results-wrapper .case-study-image {
    max-width: 100%;
    margin: 0 auto;
  }

  .case-study-impact-wrapper,
  .case-study-security-grid,
  .case-study-vision-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .case-study-image {
    order: -1;
  }

  .case-study-text {
    font-size: 1rem;
  }

  .case-study-results-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .result-card {
    padding: 2rem;
  }

  .result-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
  }

  .result-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .result-card h3 {
    font-size: 1.2rem;
  }

  .result-card p {
    font-size: 0.9rem;
  }

  .impact-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partnership-item-full {
    grid-column: 1;
  }
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

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

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step-title .heading-bold {
  font-weight: 700;
}

.step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* Apply Section */
.apply-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: var(--bg-white);
}

.apply-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.apply-content .section-title {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.apply-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.apply-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.apply-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.apply-info p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.apply-info .contact-link {
  color: var(--primary-color);
}

/* Who We Are Page Styles */
.page-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.page-hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(255, 140, 0, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 140, 0, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.page-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px
    );
  pointer-events: none;
  opacity: 0.5;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.page-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: 4rem;
  font-weight: 400;
  color: var(--bg-white);
  margin-bottom: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-hero-title .heading-bold {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  max-width: 850px;
  margin: 0 auto;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.2) 0%,
    rgba(255, 140, 0, 0.1) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.ai-badge:hover::before {
  left: 100%;
}

.ai-badge:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.3) 0%,
    rgba(255, 140, 0, 0.2) 100%
  );
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.ai-badge svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.9);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.about-content-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, var(--bg-white) 0%, #f8f9fa 100%);
  position: relative;
}

.about-text-content {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.services-intro-content {
  max-width: 950px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.services-list-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, var(--bg-white) 100%);
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-category-item {
  background: var(--bg-white);
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.service-category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.3);
}

.service-category-item .service-popup-link {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  padding-left: 0;
  border-bottom: 2px solid rgba(255, 140, 0, 0.1);
  transition: var(--transition);
  list-style: none;
}

.service-category-item .service-popup-link::before {
  display: none;
}

.service-category-item .service-popup-link .heading-bold {
  font-weight: 700;
}

.service-category-item .service-popup-link:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.service-category-item .service-sub-items {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 0;
}

.service-category-item .service-sub-items li {
  margin-bottom: 0.5rem;
}

.service-category-item .service-item-link {
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.6;
}

.service-category-item .service-item-link::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--primary-color);
  font-size: 1.1rem;
  line-height: 1.6;
  transition: transform 0.3s ease;
  font-weight: 700;
  display: inline-block;
  width: 1.2rem;
}

.service-category-item .service-item-link:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 1.75rem;
}

.service-category-item .service-item-link:hover::before {
  transform: translateX(4px);
}

.services-intro-left {
  padding-right: 2rem;
}

.services-intro-right {
  padding-left: 2rem;
}

.services-categories-list {
  position: sticky;
  top: 100px;
}

.services-categories-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-categories-bullets > li {
  margin-bottom: 1rem;
}

.service-popup-link {
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  transition: var(--transition);
  font-weight: 600;
}

.service-popup-link::before {
  content: "â€¢";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  line-height: 1;
}

.service-popup-link:hover {
  color: var(--primary-color);
  padding-left: 2rem;
}

.service-sub-items {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 1.5rem;
}

.service-sub-items li {
  margin-bottom: 0.5rem;
}

.service-item-link {
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.6;
}

.service-item-link::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--primary-color);
  font-size: 1.1rem;
  line-height: 1.6;
  transition: transform 0.3s ease;
  font-weight: 700;
  display: inline-block;
  width: 1.2rem;
}

.service-item-link:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 1.75rem;
}

.service-item-link:hover::before {
  transform: translateX(4px);
}

.about-text-content {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  .services-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.about-paragraph {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.about-paragraph strong {
  color: var(--text-dark);
  font-weight: 600;
}

.about-visible {
  display: block;
}

.about-expandable {
  display: none;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.about-expandable.expanded {
  display: block;
  max-height: 2000px;
  opacity: 1;
}

.read-more-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.read-more-link:hover {
  color: var(--text-dark);
  text-decoration: underline;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.stat-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafafa 100%);
  border: 2px solid rgba(255, 140, 0, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), rgba(255, 140, 0, 0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.3);
  background: var(--bg-white);
}

.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  transform: scale(1.1) rotate(5deg);
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.vision-mission-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vision-mission-card {
  border-radius: 20px;
  padding: 3.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Vision Card - Blue/Purple Theme */
.vision-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 2px solid rgba(102, 126, 234, 0.2);
  color: var(--bg-white);
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: transform 0.6s ease;
}

.vision-card:hover::before {
  transform: translate(20%, -20%) scale(1.2);
}

.vision-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.vision-card:hover::after {
  transform: scaleX(1);
}

.vision-card:hover {
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.3);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
}

.vision-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.vision-card:hover .vision-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(255, 255, 255, 0.4);
}

.vision-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}

.vision-card .vision-mission-title {
  color: var(--bg-white);
}

.vision-card .vision-mission-text {
  color: rgba(255, 255, 255, 0.95);
}

/* Mission Card - Orange/Red Theme */
.mission-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fff5f0 100%);
  border: 2px solid rgba(255, 140, 0, 0.2);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), rgba(255, 140, 0, 0.5));
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.mission-card:hover::before {
  transform: scaleY(1);
}

.mission-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.05) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.mission-card:hover::after {
  transform: scale(1);
}

.mission-card:hover {
  box-shadow: 0 16px 48px rgba(255, 140, 0, 0.2);
  transform: translateY(-8px);
  border-color: rgba(255, 140, 0, 0.4);
  background: var(--bg-white);
}

.mission-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 140, 0, 0.2);
}

.mission-card:hover .mission-icon {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.25) 0%, rgba(255, 140, 0, 0.15) 100%);
  transform: scale(1.1) rotate(-5deg);
  border-color: rgba(255, 140, 0, 0.4);
}

.mission-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}

.vision-mission-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.vision-mission-title .heading-bold {
  font-weight: 700;
}

.vision-mission-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 300;
}

.mission-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
}

.mission-list li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.mission-list li::before {
  content: "→";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.mission-card:hover .mission-list li::before {
  transform: translateX(3px);
}

.values-section {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.value-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafafa 100%);
  border: 2px solid rgba(255, 140, 0, 0.1);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), rgba(255, 140, 0, 0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 140, 0, 0.2);
  border-color: rgba(255, 140, 0, 0.3);
  background: var(--bg-white);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.value-card:hover .value-icon::before {
  width: 120px;
  height: 120px;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 2;
  position: relative;
  z-index: 1;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.value-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 300;
}

.leadership-section {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.leadership-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafafa 100%);
  border: 2px solid rgba(255, 140, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.leadership-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), rgba(255, 140, 0, 0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.leadership-card:hover::after {
  transform: scaleX(1);
}

.leadership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 140, 0, 0.2);
  border-color: rgba(255, 140, 0, 0.3);
  background: var(--bg-white);
}

.leadership-photo-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.leadership-photo-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.leadership-card:hover .leadership-photo-wrapper::before {
  opacity: 1;
}

.leadership-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
}

.leadership-card:hover .leadership-image {
  transform: scale(1.08);
}

.leadership-info {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.leadership-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.leadership-designation {
  font-size: 1.05rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.leadership-bio {
  flex: 1;
}

.leadership-bio p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.leadership-bio p:last-child {
  margin-bottom: 0;
}

.leadership-bio p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.leadership-bio p:last-child {
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.contact-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #000000;
  color: var(--bg-white);
  padding: 60px 0 30px;
}

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

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
/* ============================= */
/* Industries we serve */

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@keyframes rotateIcon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

@keyframes iconWobble {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes particle {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  50% {
    opacity: 0.6;
    transform: translate(var(--tx), var(--ty)) scale(1.5);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), calc(var(--ty) * 2)) scale(0);
  }
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@keyframes cornerPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.2);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8) rotateY(-20deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

@keyframes lineExpand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}



@keyframes jump {
  0%,
  100% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-12px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-6px);
  }
}

.industry-card {
  animation: jump 1.5s ease-in-out infinite;
  animation-delay: calc(var(--index) * 0.1s);
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.industry-card:hover .card-image {
  transform: scale(1.15) rotate(2deg);
}

.industry-card:hover .gradient-overlay {
  opacity: 0.7;
}

.industry-card:hover .shine-effect {
  transform: translateX(200%);
  opacity: 0.3;
}

.industry-card:hover .icon-container {
  transform: rotate(360deg) scale(1.3);
}

.industry-card:hover .explore-arrow {
  opacity: 1;
}

.industry-card:hover .bottom-border {
  transform: scaleX(1);
}

.card-image {
  transition: transform 0.8s ease-out;
}

.gradient-overlay {
  transition: opacity 0.5s;
}

.shine-effect {
  transition:
    transform 0.8s ease-in-out,
    opacity 0.8s ease-in-out;
}

.icon-container {
  animation: iconWobble 4s ease-in-out infinite;
  animation-delay: calc(var(--index) * 0.1s);
  transition: transform 0.6s;
}

.icon-pulse {
  animation: iconPulse 2s infinite;
  animation-delay: calc(var(--index) * 0.15s);
}

.particle {
  animation: particle calc(2s + var(--duration)) ease-out infinite;
  animation-delay: calc(var(--index) * 0.1s + var(--particle-delay));
}

.explore-arrow {
  opacity: 0;
  transition: all 0.3s;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

.corner-glow {
  animation: cornerPulse 3s infinite;
  animation-delay: calc(var(--index) * 0.2s);
}

.bottom-border {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.card-appear {
  animation: scaleIn 0.6s ease-out forwards;
  animation-delay: calc(var(--index) * 0.05s);
  opacity: 1;
}

.header-line {
  animation: lineExpand 0.8s ease-out 0.2s forwards;
  transform: scaleX(0);
}

.background-particle {
  animation: backgroundPulse 4s infinite;
  animation-delay: calc(var(--index) * 0.2s);
}

.icon-container {
  transition: all 0.3s ease;
}

.icon-container:hover {
  animation: rotateIcon 2s ease-in-out;
}

/* Colors & Backgrounds */
.bg-white {
  background-color: #ffffff;
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-gray-50 {
  --tw-gradient-stops: #f9fafb var(--tw-gradient-stops);
}

.to-white {
  --tw-gradient-stops: var(--tw-gradient-stops), #ffffff;
}

.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-white-30 {
  background-color: rgba(255, 255, 255, 0.3);
}

.bg-FF6B35 {
  background-color: #ff6b35;
}

/* Borders */
.border {
  border: 1px solid currentColor;
}

.border-white-30 {
  border-color: rgba(255, 255, 255, 0.3);
}

/* Shadows */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Transitions */
.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-800 {
  transition-duration: 800ms;
}

.duration-600 {
  transition-duration: 600ms;
}

/* Header Line Animation */
.header-line {
  height: 4px;
  width: 80px;
  background-color: #ff6b35;
  animation: lineExpand 0.8s ease-out 0.2s forwards;
  transform: scaleX(0);
  transform-origin: center;
}

/* Industry Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  auto-rows: 120px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
  animation-delay: calc(var(--index) * 0.2s);
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.industry-card:hover .card-image {
  transform: scale(1.15) rotate(2deg);
}

.industry-card:hover .gradient-overlay {
  opacity: 0.7;
}

.industry-card:hover .shine-effect {
  transform: translateX(200%);
  opacity: 0.3;
}

.industry-card:hover .icon-container {
  transform: rotate(360deg) scale(1.3);
}

.industry-card:hover .explore-arrow {
  opacity: 1;
}

.industry-card:hover .bottom-border {
  transform: scaleX(1);
}

/* Industry Card Grid Sizing */
.industry-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.industry-card.medium {
  grid-column: span 2;
  grid-row: span 1;
}

.industry-card.small {
  grid-column: span 1;
  grid-row: span 1;
}

/* Card Content */
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease-out;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s;
}

.shine-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-200%) skewX(12deg);
  transition:
    transform 0.8s ease-in-out,
    opacity 0.8s ease-in-out;
}

.card-content {
  position: relative;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
}

.icon-container {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  animation: iconWobble 4s ease-in-out infinite;
  animation-delay: calc(var(--index) * 0.1s);
  transition: transform 0.6s;
}

.icon-pulse {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  animation: iconPulse 2s infinite;
  animation-delay: calc(var(--index) * 0.15s);
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  position: relative;
  z-index: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
  transition: transform 0.3s;
}

.industry-card:hover .card-title {
  transform: translateX(4px);
}

.card-description {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.industry-card:hover .card-description {
  max-height: 100px;
  opacity: 1;
}

.explore-arrow {
  opacity: 0;
  transition: all 0.3s;
  animation: arrowBounce 1.5s ease-in-out infinite;
  margin-top: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bottom-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.corner-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  filter: blur(40px);
  border-radius: 9999px;
  animation: cornerPulse 3s infinite;
  animation-delay: calc(var(--index) * 0.2s);
}

.particle {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  animation: particle calc(2s + var(--duration)) ease-out infinite;
  animation-delay: calc(var(--index) * 0.1s + var(--particle-delay));
}

.background-particle {
  position: absolute;
  border-radius: 9999px;
  background-color: #ff6b35;
  animation: backgroundPulse 4s infinite;
  animation-delay: calc(var(--index) * 0.2s);
  opacity: 0.05;
}

.industries-grid {
  position: relative;
  overflow: visible;
}

.industry-card {
  position: relative;
  will-change: transform;
}

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

.industry-card {
  animation: floatCard 10s ease-in-out infinite;
}

.industry-card:nth-child(2n) {
  animation-duration: 5s;
}
.industry-card:nth-child(3n) {
  animation-duration: 6s;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

@keyframes iconWobble {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes particle {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  50% {
    opacity: 0.6;
    transform: translate(var(--tx), var(--ty)) scale(1.5);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), calc(var(--ty) * 2)) scale(0);
  }
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@keyframes cornerPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.2);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8) rotateY(-20deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

@keyframes lineExpand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
/* ====================================== */
/* Responsive */
@media (max-width: 768px) {
  .text-4xl {
    font-size: 1.875rem;
  }

  .text-5xl {
    font-size: 1.875rem;
  }

  section {
    padding: 32px 0;
    min-height: auto;
  }

  .industries-section {
    padding: 60px 0;
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .industry-card.large,
  .industry-card.medium {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .text-4xl {
    font-size: 1.5rem;
  }

  .text-5xl {
    font-size: 1.5rem;
  }

  .industries-section {
    padding: 40px 0;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .industry-card.large,
  .industry-card.medium {
    grid-column: span 1;
    grid-row: span 1;
  }

  .header-line {
    width: 60px;
  }

  .container {
    padding: 0 16px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .services-tabs {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tab-buttons {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
  }

  .tab-btn {
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 0.75rem 1rem;
  }

  .tab-btn.active {
    border-left: none;
    border-bottom-color: var(--primary-color);
  }

  .service-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-image-wrapper {
    height: 250px;
  }

  .service-text {
    padding: 2.5rem 2rem;
  }

  .service-title {
    font-size: 1.75rem;
  }

  .service-description {
    font-size: 1rem;
  }

  .industries-image-wrapper {
    margin-top: 2rem;
  }

  .industries-infographic {
    width: 100%;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .client-logo {
    height: 100px;
    padding: 1rem;
  }

  .client-image {
    max-height: 60px;
  }

  .resources-hero {
    padding: 100px 0 60px;
  }

  .resources-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .resources-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .partners-section {
    padding: 60px 0;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .partner-link {
    padding: 2rem 1.5rem;
  }

  .partner-logo-wrapper {
    max-width: 200px;
    height: 120px;
    margin-bottom: 1.5rem;
  }

  .partner-name {
    font-size: 1.3rem;
  }

  .partner-description {
    font-size: 0.95rem;
  }

  .resource-header {
    flex-direction: column;
    gap: 1rem;
  }

  .resource-card {
    padding: 1.5rem;
  }

  .resource-title {
    font-size: 1.5rem;
  }

  .resource-actions {
    flex-direction: column;
  }

  .resource-actions .btn {
    width: 100%;
  }

  .resource-header .share-buttons {
    position: static;
    margin-top: 1rem;
    align-self: flex-start;
  }

  .resource-actions .share-buttons .btn-share {
    width: 36px;
    height: 36px;
  }

  .resource-actions .share-buttons .btn-share svg {
    width: 18px;
    height: 18px;
  }

  /* Careers Page Responsive */
  .careers-section {
    padding: 80px 0;
  }

  .careers-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .careers-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .careers-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .careers-actions .btn {
    width: 100%;
    min-width: auto;
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .careers-hero-title {
    font-size: 2.5rem;
  }

  .careers-hero-subtitle {
    font-size: 1.1rem;
  }

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

  .position-header {
    flex-direction: column;
    gap: 1.5rem;
  }

  .position-title {
    font-size: 1.5rem;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .apply-actions {
    flex-direction: column;
  }

  .apply-actions .btn {
    width: 100%;
  }

  /* Who We Are Page Responsive */
  .page-hero-section {
    padding: 80px 0 50px;
  }

  .page-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .page-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    flex-direction: column;
    gap: 0.5rem;
  }

  .ai-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }

  .ai-badge svg {
    width: 12px;
    height: 12px;
  }

  .stats-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
  }

  .stat-icon svg {
    width: 28px;
    height: 28px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vision-mission-card {
    padding: 2rem 1.5rem;
  }

  .vision-icon,
  .mission-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
  }

  .vision-icon svg,
  .mission-icon svg {
    width: 32px;
    height: 32px;
  }

  .vision-mission-title {
    font-size: 1.75rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

  .value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }

  .value-icon svg {
    width: 40px;
    height: 40px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leadership-photo-wrapper {
    height: 250px;
  }

  .leadership-info {
    padding: 1.5rem;
  }

  .leadership-name {
    font-size: 1.25rem;
  }

  .leadership-designation {
    font-size: 0.95rem;
  }

  .leadership-bio p {
    font-size: 0.9rem;
  }

  /* Services Summary Responsive */
  .services-summary-text {
    font-size: 1rem;
  }

  /* Services Intro Grid Responsive */
  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }

  .services-intro-left {
    padding-right: 0;
  }

  .services-intro-right {
    padding-left: 0;
  }

  .services-categories-list {
    position: static;
  }

  .service-popup-content {
    width: 95%;
    max-height: 90vh;
  }

  .service-popup-body {
    padding: 2rem 1.5rem;
  }

  .service-popup-body .service-category-title {
    font-size: 1.5rem;
  }

  .service-popup-body .service-detail-image {
    height: 200px;
  }

  .service-sub-items {
    margin-left: 1rem;
  }

  .service-item-link {
    font-size: 0.8rem;
    padding-left: 1rem;
  }

  .services-list-section {
    padding: 40px 0;
  }

  .services-list-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .service-category-item {
    padding: 1.5rem;
  }

  .service-category-item .service-popup-link {
    font-size: 1rem;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .service-card-image {
    height: 180px;
  }

  .service-card-title {
    font-size: 1.3rem;
  }

  .service-card-description {
    font-size: 0.95rem;
  }

  .services-full-list-link {
    margin-top: 2rem;
  }

  .services-link {
    font-size: 1rem;
    padding: 0.65rem 1.5rem;
    width: 100%;
    max-width: 300px;
  }

  /* Services Detailed Section Responsive */
  .services-detailed-section {
    padding: 40px 0;
  }

  .services-categories {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .service-category {
    padding: 1.5rem;
  }

  .service-category-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-item {
    padding: 1.25rem;
  }

  .service-item-header h4 {
    font-size: 1rem;
  }

  .service-item-content {
    font-size: 0.9rem;
  }

  .service-category-row {
    grid-template-columns: 1fr;
  }

  /* Service Category Interactive Responsive */
  .service-category-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-category-links {
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .service-category-link {
    font-size: 0.85rem;
  }

  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-detail-image {
    height: 200px;
  }

  .service-detail-text h4 {
    font-size: 1.25rem;
  }

  .service-detail-text p {
    font-size: 0.95rem;
  }
}
