/* ================= GEN AI PAGE ================= */
.gen-ai-page {
  --primary: #3A5B4B;
  --secondary: #7FA78B;
  --accent: #D9B53D;
  --text: #3A5B4B;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #666;
  --white: #fff;
  --transition: all 0.3s ease;
  --shadow: 0 4px 12px rgba(58, 91, 75, 0.1);
  --border-radius: 12px;
}

/* Footer - Override only specific styles */
.footer {
  background: linear-gradient(135deg, #3A5B4B 0%, #5A7B6B 50%, #AF9C62 100%) !important;
  text-align: left !important;
  color: #ffffff !important;
  padding: 4rem 0 0 !important;
  border-top: none !important;
}

/* Ensure social icons stay in one line */
.footer__social {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0.75rem !important;
  margin-top: 1.5rem !important;
}

.footer__social a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  flex-shrink: 0 !important;
}

/* Remove border from footer bottom */
.footer__bottom {
  border-top: none !important;
  margin-top: 0 !important;
}

/* Hero Header - Forest Green */
.hero-header {
  background: #3A5B4B;
  color: #D9B53D;
  padding: 60px 0;
  text-align: center;
  position: relative;
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.hero-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 9;
  color: #D9B53D;
  font-family: inherit;
}

/* Introduction Section - Image + Text Layout */
.intro-section {
  padding: 60px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.intro-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.intro-image {
  position: relative;
  animation: fadeInLeft 0.8s ease-out;
}

.intro-text {
  animation: fadeInRight 0.8s ease-out;
}

.image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(58, 91, 75, 0.15);
  transition: transform 0.3s ease;
}

.image-wrapper:hover {
  transform: translateY(-5px);
}

.image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.intro-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 650px;
}

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

/* Capabilities Section - Image Card Box Layout */
.capabilities-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f5e8 50%, #fff9e8 100%);
  position: relative;
  overflow: hidden;
}

.capabilities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
  line-height: 1.2;
  font-family: inherit;
}

.section-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0;
  font-family: inherit;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.capability-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(58, 91, 75, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.capability-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(58, 91, 75, 0.25);
}

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.capability-card:hover .card-image img {
  transform: scale(1.1);
}

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

.read-more-btn {
  border: 1px solid var(--primary);
  color: var(--light-gray);
  background: var(--primary);
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
  width: 120px;
  text-align: left;
}

.read-more-btn::after {
  content: '→';
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.read-more-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.card-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
  line-height: 1.3;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}

.card-content p {
  color: var(--dark-gray);
  margin-bottom: 0;
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}

/* Partner Section */
.partner-section {
  padding: 60px 0;
  background: var(--white);
  position: relative;
}



.partner-text {
  animation: fadeInLeft 0.8s ease-out;
}



.partner-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.partner-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 30px 0 30px;
  color: var(--dark-gray);
  
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}




/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animations for cards */
.capability-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.capability-card:nth-child(1) { animation-delay: 0.1s; }
.capability-card:nth-child(2) { animation-delay: 0.2s; }
.capability-card:nth-child(3) { animation-delay: 0.3s; }
.capability-card:nth-child(4) { animation-delay: 0.4s; }
.capability-card:nth-child(5) { animation-delay: 0.5s; }
.capability-card:nth-child(6) { animation-delay: 0.6s; }
.capability-card:nth-child(7) { animation-delay: 0.7s; }

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-header h1 {
    font-size: 2.5rem;
  }
  
  .intro-grid,
  .partner-grid {
    gap: 40px;
  }
  
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .partner-logos-grid {
    gap: 1rem;
  }
  
  .partner-logos-row {
    gap: 1rem;
  }
  
  .partner-logo-item {
    max-width: 150px;
    min-height: 100px;
    padding: 1rem;
  }
  
  .intro-text h2,
  .partner-text h2,
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-header {
    padding: 60px 0;
  }
  
  .hero-header h1 {
    font-size: 2rem;
  }
  
  .intro-section,
  .capabilities-section,
  .partner-section {
    padding: 60px 0;
  }
  
  .intro-grid,
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .intro-image,
  .partner-image {
    order: -1;
  }
  
  .intro-text h2,
  .partner-text h2,
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .intro-text p,
  .partner-text p {
    font-size: 1rem;
  }
  
  .image-wrapper img {
    height: 300px;
  }
  
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .partner-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .partner-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-header {
    padding: 40px 0;
  }
  
  .hero-header h1 {
    font-size: 1.8rem;
  }
  
  .intro-section,
  .capabilities-section,
  .partner-section {
    padding: 40px 0;
  }
  
  .intro-grid,
  .partner-grid {
    gap: 20px;
  }
  
  .intro-text h2,
  .partner-text h2,
  .section-header h2 {
    font-size: 1.4rem;
  }
  
  .image-wrapper img {
    height: 250px;
  }
  
  .card-content {
    padding: 1.2rem;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .partner-logos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 250px;
  }
  
  .partner-logo-item {
    min-height: 80px;
    padding: 1rem;
  }
  
  .partner-logo-item img {
    max-height: 50px;
  }
}

/* SEO and Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
.capability-card:focus,
.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .hero-header,
  .intro-section,
  .capabilities-section,
  .partner-section {
    background: white !important;
    color: black !important;
  }
  
  .capability-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

.service-tile:hover .tile-image img {
  transform: scale(1.1);
}

/* Content Sections */
.content-section {
  padding: 60px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.content-section.section-2 {
  background: var(--light-gray);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.content-image {
  position: relative;
  animation: fadeInLeft 0.8s ease-out;
}

.content-text {
  animation: fadeInRight 0.8s ease-out;
}

.section-2 .content-image {
  animation: fadeInRight 0.8s ease-out;
}

.section-2 .content-text {
  animation: fadeInLeft 0.8s ease-out;
}

.image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(58, 91, 75, 0.15);
  transition: transform 0.3s ease;
}

.image-wrapper:hover {
  transform: translateY(-5px);
}

.image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.content-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  font-family: inherit;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 2rem;
  font-family: inherit;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(127, 167, 139, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  font-family: inherit;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  background: rgba(127, 167, 139, 0.2);
  transform: translateX(5px);
}

.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  margin-right: 1rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Tiles Section */
.tiles-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f5e8 50%, #fff9e8 100%);
  position: relative;
  overflow: hidden;
}

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

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  font-family: inherit;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-tile {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(58, 91, 75, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.service-tile:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(58, 91, 75, 0.25);
}

.tile-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-tile:hover .tile-image img {
  transform: scale(1.1);
}

.tile-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tile-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
  line-height: 1.3;
  font-family: inherit;
}

.tile-content p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  font-family: inherit;
}

.tile-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: auto;
  font-family: inherit;
}

.tile-link:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animations for tiles */
.service-tile {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.service-tile:nth-child(1) { animation-delay: 0.1s; }
.service-tile:nth-child(2) { animation-delay: 0.2s; }
.service-tile:nth-child(3) { animation-delay: 0.3s; }
.service-tile:nth-child(4) { animation-delay: 0.4s; }
.service-tile:nth-child(5) { animation-delay: 0.5s; }
.service-tile:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
  .content-grid {
    gap: 40px;
  }
  
  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .page-header h1,
  .content-text h2,
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .content-section,
  .tiles-section {
    padding: 60px 0;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .content-image {
    order: -1;
  }
  
  .content-text h2,
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .content-text p {
    font-size: 1rem;
  }
  
  .image-wrapper img {
    height: 300px;
  }
  
  .tiles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tile-content {
    padding: 1.5rem;
  }
  
  .tile-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 40px 0;
  }
  
  .page-header h1 {
    font-size: 1.5rem;
  }
  
  .content-section,
  .tiles-section {
    padding: 40px 0;
  }
  
  .content-grid {
    gap: 20px;
  }
  
  .content-text h2,
  .section-header h2 {
    font-size: 1.4rem;
  }
  
  .image-wrapper img {
    height: 250px;
  }
  
  .tile-content {
    padding: 1.2rem;
  }
  
  .tile-content h3 {
    font-size: 1.2rem;
  }
  
  .tile-content p {
    font-size: 0.9rem;
  }
}

/* SEO and Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
.service-tile:focus,
.tile-link:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .page-header,
  .content-section,
  .tiles-section {
    background: white !important;
    color: black !important;
  }
  
  .service-tile {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* ================= GENAI WORKFORCE SKILLING SECTION ================= */
.workforce-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #F8F7F4 0%, #E8E6DC 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.workforce-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
  padding : 0 30px 0 30px;
}

.workforce-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(58, 91, 75, 0.1);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(10px);
}

.highlight-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(58, 91, 75, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-item span {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.1rem;
}

.workforce-image .image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(58, 91, 75, 0.15);
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workforce-image .image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(58, 91, 75, 0.2);
}

.workforce-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================= OUR PARTNERS SECTION ================= */
.partners-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #F8F7F4 0%, #E8E6DC 100%);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-text {
  text-align: center;
  max-width: 1200px;
 
 
}

.partners-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
margin-top:0;
  text-align: center;

}

.partners-text p.emphasis {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0;
  line-height: 1.8;
  
}

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

.partners-cta {
  text-align: center;
  margin-top: 2rem;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  
  border: 2px solid var(--primary);
  position: relative;
  
}

.learn-more-btn::after {
  content: '→';
  font-size: 1rem;
  
}

.learn-more-btn:hover {
  background: var(--accent);
  color: var(--light-gray);
  
  box-shadow: 0 8px 25px rgba(58, 91, 75, 0.2);
  border: #D9B53D;
}





/* ================= RESPONSIBLE AI FRAMEWORK SECTION ================= */
.framework-section {
  background: #f9fcf9;
  color: var(--text-dark);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.framework-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,30 50,50 T100,50" stroke="rgba(58,91,75,0.1)" stroke-width="0.5" fill="none"/></svg>');
  background-size: 200px 100px;
  opacity: 0.3;
  animation: wave 20s linear infinite;
}

.framework-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.framework-image .image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(58, 91, 75, 0.15);
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-image .image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(58, 91, 75, 0.2);
}

.framework-image img {
  width: 100%;
  height: auto;
  display: block;
}

.framework-text {
  text-align: center;
}

.framework-text h2 {
  text-align: left;
}

.framework-text h3 {
  text-align: left;
}

.framework-text p {
  text-align: left;
}

.framework-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--primary);
}



.framework-header p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
  color: var(--text-dark);
}



/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .workforce-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .framework-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-header h2,
  .framework-header h2 {
    font-size: 2rem;
  }
  
  .workforce-text h3 {
    font-size: 1.8rem;
  }
  
  .framework-header h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .workforce-section,
  .framework-section {
    padding: 60px 0;
  }
  
  .section-header h2,
  .framework-header h2 {
    font-size: 1.8rem;
  }
  
  .workforce-text h3 {
    font-size: 1.5rem;
  }
  
  .framework-header h3 {
    font-size: 1.3rem;
  }
  
  .workforce-text p,
  .framework-header p {
    font-size: 1rem;
  }
  
  
  
  .highlight-item {
    padding: 12px;
  }
  
  .highlight-item span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-header h2,
  .framework-header h2 {
    font-size: 1.5rem;
  }
  
  .workforce-text h3 {
    font-size: 1.3rem;
  }
  
  .framework-header h3 {
    font-size: 1.2rem;
  }
  
  
}

/* Animation Classes for New Sections */
.workforce-section,
.framework-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.workforce-section.visible,
.framework-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight-item,
.pillar-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.highlight-item.visible,
.pillar-item.visible {
  opacity: 1;
  transform: translateY(0);
}
