:root {
    --primary-color: #2B4E8C;  /* Deep navy blue */
    --secondary-color: #3A6BB0;  /* Bright blue */
    --dark-blue: #1A365D;       /* Darker blue */
    --light-blue: #E6F0FA;      /* Very light blue for backgrounds */
    --accent-color: #FF6B35;    /* Orange accent color */
    --white: #ffffff;
    --off-white: #F8FAFC;
    --gray: #6B7280;
    --dark-gray: #1F2937;
    --light-gray: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    font-size: 16px;
}

/* Update logo styling */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo span {
    color: var(--accent-color); /* Make "LEAN GEMBA" red to match logo */
}

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--light-green);
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(47, 79, 47, 0.1);
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block; /* Remove inline spacing issues */
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
     /* Align vertically */
}

/* Update button colors to match new theme */
.cta-button, .signup-form button, .register-btn, .job-apply {
    background: var(--accent-color);
    color: white;
    transition: all 0.3s ease;
}

.cta-button:hover, .signup-form button:hover, .register-btn:hover, .job-apply:hover {
    background: #8B1A1A; /* Slightly darker red */
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-button:hover {
    background: var(--primary-color);
    color: white;
}

/* Update hover states for links */
.nav-link:hover, .mega-menu-links a:hover, .footer-links a:hover {
    color: var(--accent-color);
}

/* Update active states */
.industry-tab.active, .service-tab.active, .filter-tab.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Update logo in mega menu */
.mega-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 20px;
    margin-right: 30px;
    color: var(--primary-color);
}

.mega-menu-logo img {
    height: 30px;
    width: auto;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    padding: 10px 0; /* Reduced padding to fix logo position */
    border-bottom: 1px solid var(--light-gray);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
    display: flex;
    align-items: center; /* Ensure vertical alignment */
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.nav-item {
    margin: 0 12px;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

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

.auth-links {
    display: flex;
    align-items: center;
    margin-left: 30px;
    white-space: nowrap;
}

.sign-in, .subscribe {
    font-size: 14px;
    padding: 8px 15px;
    text-decoration: none;
}

.sign-in {
    color: var(--dark-gray);
    position: relative;
}

.sign-in::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: var(--light-gray);
}

.subscribe {
    color: var(--primary-color);
    margin-left: 15px;
    font-weight: 500;
}

/* Scrolled state */
.main-nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 60px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(47, 79, 47, 0.8), rgba(47, 79, 47, 0.6));
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--dark-green);
}

/* Fallback for browsers that don't support video */
.no-video .hero-video {
    display: none;
}

.no-video .hero-section {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--light-gray);
    padding: 30px 0;
    display: none;
    z-index: 999;
}

.nav-item.has-mega-menu {
    position: static;
}

.nav-item.has-mega-menu:hover .mega-menu {
    display: block;
}

.mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.mega-menu-column h4 {
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-links {
    list-style: none;
}

.mega-menu-links li {
    margin-bottom: 12px;
}

.mega-menu-links a {
    font-size: 14px;
    transition: color 0.3s ease;
}

.mega-menu-links a:hover {
    color: var(--primary-blue);
}

.featured-card {
    background: var(--off-white);
    border-radius: 6px;
    padding: 20px;
    border-left: 3px solid var(--primary-blue);
}

.featured-card h5 {
    color: var(--dark-gray);
    font-size: 18px;
    margin-bottom: 10px;
}

.featured-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.featured-card .learn-more {
    font-size: 14px;
}

.menu-toggle-btn {
    
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--dark-gray);
}
  .main-nav {
  height: 100px; /* adjust height as needed */
  display: flex;
  align-items: center;
  background-color: #fff; /* or your preferred color */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.nav-toggle-content {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .menu-toggle-btn {
        display: block;
    }

    .nav-toggle-content {
        display: none;
        flex-direction: column;
        background: var(--white);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 15px 20px;
        border-top: 1px solid var(--light-gray);
    }

    .nav-toggle-content.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin: 10px 0;
    }

    .auth-links {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        margin-top: 10px;
    }

    .sign-in::after {
        display: none;
    }
}


.mega-menu-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  z-index: 9999;
  font-family: 'Helvetica Neue', sans-serif;
}

.mega-menu-overlay.active {
  display: flex;
}

.mega-menu-header {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  background: #fff;
  height:150px;
}

.mega-menu-logo {
  font-weight: bold;
  font-size: 20px;
  margin-right: 30px;
}

.mega-menu-search {
  flex: 1;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.mega-menu-close {
  font-size: 28px;
  background: none;
  border: none;
  margin-left: 20px;
  cursor: pointer;
}

.mega-menu-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.mega-menu-sidebar {
  width: 250px;
  background: #001e3c;
  color: white;
  padding: 20px;
}

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

.mega-menu-sidebar li {
  padding: 12px 0;
  cursor: pointer;
  font-size: 16px;
  border-left: 4px solid transparent;
}

.mega-menu-sidebar li.active {
  color: #00aaff;
  border-left-color: #00aaff;
}

.mega-menu-content {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
  background: #f7f7f7;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}

.grid-3col ul {
  list-style: none;
}

.grid-3col li {
  padding: 6px 0;
  color: #333;
}

.grid-3col li a {
  color: #007bff;
  text-decoration: none;
}

.grid-3col strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}


/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.capability-card, .event-card, .activity-card {
    border: 1px solid var(--light-blue);
    box-shadow: 0 5px 15px rgba(42, 92, 170, 0.05);
    transition: all 0.3s ease;
}

.capability-card:hover, .event-card:hover, .activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 92, 170, 0.1);
    border-color: var(--secondary-color);
}

.section-title h2 {
    color: var(--primary-color);
    font-weight: 600;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.capability-icon {
    height: 120px;
    background: var(--light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    font-size: 40px;
}

.capability-content {
    padding: 25px;
}

.capability-content h3 {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}

.capability-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.learn-more {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--dark-blue);
}

/* Industries Showcase */
.industries-showcase {
    background: var(--off-white);
}

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

.industry-tab {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-tab.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.industry-content {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.industry-content.active {
    display: block;
}

.industry-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.industry-content p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-overlay {
    display: none;
}

.popup-overlay.active {
    display: flex;
}

.popup-container {
    display: flex;
    width: 900px;
    max-width: 95%;
    max-height: 90vh;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--accent-color);
}

.popup-left-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background: var(--light-blue);
}

.popup-right-form {
    flex: 0 0 400px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
    z-index: 10;
}

.course-tag {
    color: var(--accent-color);
    font-weight: 600;
}

.action-links a {
    color: var(--primary-color);
}

/* Left Content Styles */
.capabilities-section h2 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.capabilities-section > p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 15px;
}

.capability-card {
    background: var(--white);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.capability-card h3 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.capability-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Right Form Styles */
.form-header {
    margin-bottom: 25px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reviews span {
    font-size: 12px;
    color: var(--gray);
}

.reviews img {
    height: 36px;
}

.form-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-tag {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-body h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-weight: 600;
}

.form-body p {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 15px;
}

.signup-form {
    margin-bottom: 20px;
}

.signup-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 14px;
}

.signup-form button {
    width: 100%;
    padding: 13px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.signup-form button:hover {
    background: var(--dark-blue);
}

.action-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    justify-content: center;
}

.action-links a {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.action-links a:hover {
    text-decoration: underline;
}

.separator {
    color: var(--light-gray);
}

/* Footer Styles */
.main-footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 0 0;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}

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

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
 background: var(--accent-color);
}

.footer-about {
  color: #b0b8c5;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.footer-links a:hover {
   color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item i {
  color: var(--primary-blue);
  margin-top: 3px;
  font-size: 16px;
}

.contact-item address,
.contact-item a,
.contact-item .phone-numbers {
  color: #b0b8c5;
  font-style: normal;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: white;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-newsletter {
  background: rgba(0, 101, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.footer-newsletter h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: white;
}

.footer-newsletter p {
  color: #b0b8c5;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 15px 25px;
  background: var(--primary-blue);
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--dark-blue);
}

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

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #b0b8c5;
  font-size: 13px;
}

.legal-links {
  display: flex;
  gap: 15px;
}

.legal-links a {
  color: #b0b8c5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: white;
}

.footer-certifications {
  display: flex;
  gap: 15px;
}

.footer-certifications img {
  height: 40px;
  width: auto;
  filter: grayscale(100%) brightness(2);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-certifications img:hover {
  filter: none;
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-newsletter {
    padding: 25px 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 4px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  
  .footer-heading {
    margin-bottom: 15px;
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .popup-container {
        flex-direction: column;
        max-height: 90vh;
    }
    
    .popup-left-content,
    .popup-right-form {
        flex: 1;
        overflow-y: auto;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-tabs {
        flex-direction: column;
    }
    
    .industry-tab {
        width: 100%;
        text-align: center;
    }
}


/* Enhanced Header Scroll Effect */
.main-nav {
    transition: all 0.3s ease;
    padding: 25px 0;
    background: transparent;
    border-bottom: none;
}

.main-nav.scrolled {
    padding: 15px 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

/* Add arrow indicators for dropdowns */
.has-mega-menu .nav-link::after {
    content: " ▼";
    font-size: 0.6em;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.has-mega-menu:hover .nav-link::after {
    transform: rotate(180deg);
}

/* For mobile menu */
@media (max-width: 768px) {
    .main-nav {
        padding: 20px 0;
        background: var(--white);
        border-bottom: 1px solid var(--light-gray);
    }
    
    .main-nav.scrolled {
        padding: 15px 0;
    }
    
    .has-mega-menu .nav-link::after {
        content: " ▼";
    }
    
    .nav-item.has-mega-menu.active .nav-link::after {
        transform: rotate(180deg);
    }
}

/* Arrow indicators after subheadings */
.capability-content h3::after,
.industry-content h3::after,
.section-title h2::after {
    content: " →";
    font-size: 0.8em;
    color: var(--primary-blue);
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-card:hover .capability-content h3::after,
.industry-tab.active ~ .industry-content h3::after,
.section-title:hover h2::after {
    opacity: 1;
}

/* Enhanced Mega Menu Styles */
.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 30px;
}

.mega-menu-column {
    min-width: 200px;
}

.featured-card {
    grid-column: span 1;
    align-self: start;
    background: var(--off-white);
    border-radius: 6px;
    padding: 20px;
    border-left: 3px solid var(--primary-blue);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .mega-menu-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .mega-menu-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mega-menu-container {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        grid-column: span 1;
    }
}

/* Improve mega menu appearance */
.mega-menu {
    max-height: 80vh;
    overflow-y: auto;
}

.mega-menu-column h4 {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--light-gray);
}

.mega-menu-links li {
    margin-bottom: 10px;
}

.mega-menu-links a {
    color: var(--dark-gray);
    transition: color 0.2s ease;
    display: block;
    padding: 4px 0;
}

.mega-menu-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.featured-card h5 {
    color: var(--dark-gray);
    font-size: 18px;
    margin-bottom: 10px;
}

.featured-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Careers Section */
.careers-section {
  background: var(--white);
}

.careers-hero {
  background: linear-gradient(rgba(0, 30, 60, 0.7), rgba(0, 30, 60, 0.7)), 
              url('https://images.unsplash.com/photo-1522071820081-009f0129c71c') no-repeat center center;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.careers-hero-content h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
}

.careers-hero-content p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.careers-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.careers-intro h2 {
  font-size: 32px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-weight: 400;
}

.careers-intro p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.value-card h3 {
  color: var(--dark-gray);
  margin-bottom: 15px;
  font-size: 20px;
}

.value-card p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.5;
}

.job-openings {
  margin-bottom: 80px;
}

.job-openings h2 {
  text-align: center;
  font-size: 32px;
  color: var(--dark-gray);
  margin-bottom: 40px;
  font-weight: 400;
}

.job-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 12px 20px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  background: var(--white);
  color: var(--dark-gray);
  font-size: 14px;
  min-width: 200px;
}

.job-list {
  display: grid;
  gap: 15px;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 5px 15px rgba(0, 101, 255, 0.1);
}

.job-info h3 {
  color: var(--dark-gray);
  margin-bottom: 8px;
  font-size: 18px;
}

.job-meta {
  display: flex;
  gap: 20px;
  color: var(--gray);
  font-size: 14px;
}

.job-meta i {
  margin-right: 5px;
  color: var(--primary-blue);
}

.job-apply {
  padding: 12px 25px;
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s;
  white-space: nowrap;
}

.job-apply:hover {
  background: var(--dark-blue);
}

.careers-cta {
  text-align: center;
  padding: 60px;
  background: var(--off-white);
  border-radius: 8px;
}

.careers-cta h2 {
  font-size: 32px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-weight: 400;
}

.careers-cta p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .careers-hero {
    height: 300px;
  }
  
  .careers-hero-content h1 {
    font-size: 32px;
  }
  
  .careers-hero-content p {
    font-size: 16px;
  }
  
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .job-apply {
    align-self: flex-end;
  }
  
  .careers-cta {
    padding: 40px 20px;
  }
}


/* Approach Section Enhancements */
.approach-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .approach-container {
        grid-template-columns: 1fr;
    }
}

.approach-item {
    padding-left: 20px;
    border-left: 3px solid var(--light-blue);
    transition: all 0.3s ease;
}

.approach-item:hover {
    border-left-color: var(--primary-blue);
}

.challenge-item {
    transition: transform 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 101, 255, 0.1);
}


/* Achievement Section Styles */
.achievement-section {
  background-color: var(--primary-color); /* Using your dark green color */
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.achievement-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.achievement-section h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white);
}

.achievement-section .subheading {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.achievement-section .cta-button {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.achievement-section .cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .achievement-section h2 {
    font-size: 32px;
  }
  
  .achievement-section .subheading {
    font-size: 18px;
  }
}
/* Impact Section */
.impact-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, 
              rgba(230, 240, 255, 0.3) 0%, 
              rgba(230, 240, 255, 0.1) 100%);
  text-align: center;
  position: relative;
}

.impact-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.impact-header h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.impact-header p {
  font-size: 18px;
  color: white;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.divider-line {
  width: 100px;
  height: 2px;
  background: var(--primary-blue);
  margin: 0 auto 40px;
}

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

.impact-stat {
  padding: 30px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 101, 255, 0.05);
}

.impact-stat strong {
  display: block;
  font-size: 42px;
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
  line-height: 1;
}

.impact-stat span {
  font-size: 18px;
  color: black;
  line-height: 1.4;
  display: block;
}

/* Background pattern */
.impact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 101, 255, 0.03) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(0, 101, 255, 0.03) 0%, transparent 20%);
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .impact-stat {
    padding: 25px 15px;
  }
  
  .impact-stat strong {
    font-size: 36px;
  }
  
  .impact-stat span {
    font-size: 16px;
  }
}


.our-clients-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.our-clients-section h2 {
    margin-bottom: 20px;
    color: #333;
}

.our-clients-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #666;
}

.clients-logo-slider {
    overflow: hidden;
    position: relative;
    margin: 40px auto;
    max-width: 1200px;
}

.logo-track {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite;
    width: calc(250px * 12); /* Adjust based on number of logos */
}

.client-logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo {
    filter: none;
    transition: transform 0.3s ease;
}

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


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6)); /* Half of total width */
    }
}

/* Insights Section */
.insights-section {
  padding: 80px 20px;
  background-color: #f9fafc;
}

.insights-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.insights-section .section-title h2 {
  font-size: 36px;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.insights-section .section-title p {
  font-size: 18px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Filter Tabs */
.insights-filter-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tab {
  padding: 10px 20px;
  background: none;
  border: 1px solid var(--light-gray);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Featured Insights Carousel */
.featured-insights-carousel {
  margin-bottom: 60px;
}

.carousel-title {
  font-size: 24px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  text-align: center;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  margin: 0 40px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.featured-insight {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.featured-insight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

.insight-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-blue);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.insight-content {
  padding: 20px;
}

.insight-content h4 {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 10px;
  line-height: 1.3;
}

.insight-content p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  color: var(--dark-gray);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

.carousel-arrow:hover {
  background: var(--primary-blue);
  color: white;
}

/* Insights Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.insight-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.insight-item .insight-image {
  height: 200px;
}

.insight-item .insight-content {
  padding: 25px;
}

.insight-item .insight-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.insight-item .insight-content p {
  font-size: 15px;
  margin-bottom: 20px;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}

/* Client Testimonials */
.client-testimonials {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.testimonials-title {
  font-size: 24px;
  color: var(--dark-gray);
  margin-bottom: 30px;
  text-align: center;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background:var(--primary-color) ;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  font-style: italic;
  position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 24px;
  color: var(--primary-blue);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-info h5 {
  font-size: 16px;
  color: var(--dark-gray);
  margin-bottom: 5px;
}

.author-info span {
  font-size: 14px;
  color: var(--gray);
}

/* Newsletter CTA */
.insights-newsletter {
  background: var(--primary-blue);
  color: white;
  padding: 60px 20px;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.newsletter-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 400;
}

.newsletter-content p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 15px 30px;
  background: var(--dark-blue);
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #002b6b;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .featured-insight {
    flex: 0 0 calc(50% - 15px);
  }
  
  .insights-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .featured-insight {
    flex: 0 0 100%;
  }
  
  .carousel-track {
    margin: 0 20px;
  }
  
  .carousel-arrow {
    display: none;
  }
  
  .insights-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .insights-filter-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .filter-tab {
    scroll-snap-align: start;
    white-space: nowrap;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 4px;
  }
  
  .newsletter-form input {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .insights-section .section-title h2 {
    font-size: 28px;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

/* Vector Interactive Insights */
.vector-insights-interactive {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.vector-insights-interactive h1 {
  font-size: 36px;
  color: #333;
  font-weight: 400;
  margin-bottom: 15px;
}

.vector-insights-interactive .subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.insights-container {
  display: flex;
  gap: 40px;
}

/* Left Sidebar */
.insights-sidebar {
  flex: 0 0 250px;
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.sidebar-item {
  padding: 15px 0;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.sidebar-item h3 {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  margin: 0;
}

.sidebar-item.active h3,
.sidebar-item:hover h3 {
  color: #0065ff;
}

/* Right Content Area */
.insights-content {
  flex: 1;
  position: relative;
}

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

.content-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.content-slide.active {
  display: block;
}

.content-slide h2 {
  font-size: 24px;
  color: #0065ff;
  margin-bottom: 10px;
  font-weight: 500;
}

.content-slide .subheading {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.slide-content {
  max-width: 700px;
}

.slide-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.read-more {
  display: inline-block;
  color: #0065ff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s;
}

.read-more:hover {
  transform: translateX(5px);
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0065ff;
  transition: all 0.3s;
}

.nav-arrow:hover {
  background: #0065ff;
  color: white;
}

.prev-arrow {
  left: -60px;
}

.next-arrow {
  right: -60px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .insights-container {
    flex-direction: column;
  }
  
  .insights-sidebar {
    flex: 1;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-right: 0;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .sidebar-item {
    border-bottom: none;
    padding: 10px 15px;
    background: #f5f5f5;
    border-radius: 4px;
  }
  
  .nav-arrow {
    position: static;
    margin: 20px 10px 0;
    transform: none;
  }
}


/* Events Section */
.events-section {
  padding: 80px 20px;
  background: var(--off-white);
}

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

.filter-btn {
  padding: 10px 20px;
  background: none;
  border: 1px solid var(--light-gray);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active, 
.filter-btn:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.event-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 101, 255, 0.1);
}

.event-date {
  background: var(--primary-blue);
  color: white;
  padding: 15px;
  min-width: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.date-day {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.date-month {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-content {
  padding: 20px;
  flex: 1;
}

.event-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.event-content h3 {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-time {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 10px;
}

.event-time i {
  margin-right: 5px;
  color: var(--primary-blue);
}

.event-desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.event-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.register-btn {
  background: var(--primary-blue);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.register-btn:hover {
  background: var(--dark-blue);
}

.details-link {
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.details-link i {
  margin-left: 5px;
  font-size: 12px;
}

.view-all-events {
  text-align: center;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    padding: 10px 20px;
  }
}



/* Activities Section */
.activities-section {
  padding: 80px 20px;
  background-color: #f9fafc;
}

.activities-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.activities-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  margin: 0 40px;
}

.activities-track::-webkit-scrollbar {
  display: none;
}

.activity-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.activity-image {
  height: 200px;
  overflow: hidden;
}

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

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

.activity-content {
  padding: 20px;
}

.activity-date {
  display: block;
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.activity-content h3 {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 15px;
  line-height: 1.3;
}

.activity-participants p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  color: var(--dark-gray);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

.carousel-arrow:hover {
  background: var(--primary-blue);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .activity-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .activity-card {
    flex: 0 0 100%;
  }
  
  .activities-track {
    margin: 0 20px;
  }
  
  .carousel-arrow {
    display: none;
  }
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.about-icon {
  font-size: 40px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.leader-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 25px;
}

.leader-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.position {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 15px;
}

.bio {
  color: var(--gray);
  font-size: 14px;
}

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

.office-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.office-card h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}

.office-card ul {
  list-style: none;
}

.office-card li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.office-card li::before {
  content: "•";
  color: var(--primary-blue);
  position: absolute;
  left: 0;
}

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

.award-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.award-card img {
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

/* Services Page Styles */
.services-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tab {
  padding: 12px 25px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-tab.active, .service-tab:hover {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.service-content {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.detail-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-card h4 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.detail-card ul {
  list-style: none;
}

.detail-card li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.detail-card li::before {
  content: "•";
  color: var(--primary-blue);
  position: absolute;
  left: 0;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.case-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-content {
  padding: 20px;
}

.industry-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.read-case {
  display: inline-block;
  color: var(--primary-blue);
  font-weight: 600;
  margin-top: 15px;
  text-decoration: none;
}

.read-case:hover {
  text-decoration: underline;
}

.view-all-cases {
  text-align: center;
  margin-top: 40px;
}

/* Industries Page Styles */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.industry-content {
  padding: 20px;
}

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

.challenge-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.insight-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.insight-category {
  display: inline-block;
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.view-all-insights {
  text-align: center;
  margin-top: 40px;
}

/* Case Studies Page Styles */
.case-filters {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-weight: 500;
}

.filter-group select {
  padding: 10px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  min-width: 200px;
}

.results {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}

.result-item {
  text-align: center;
}

.result-item strong {
  display: block;
  font-size: 24px;
  color: var(--primary-blue);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.result-stat {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.result-stat strong {
  display: block;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Insights Page Styles */
.insights-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.insight-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
}

.insight-image {
  height: 200px;
}

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

.insight-content {
  padding: 20px;
}

.content-type {
  display: inline-block;
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.insight-meta {
  display: flex;
  gap: 15px;
  color: var(--gray);
  font-size: 14px;
  margin: 15px 0;
}

.insight-meta i {
  margin-right: 5px;
}

.download-btn {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.download-btn:hover {
  background: var(--dark-blue);
}

.featured-insight-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.featured-content {
  flex: 1;
}

.featured-image {
  flex: 1;
}

.featured-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-badge {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.featured-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.secondary-button {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.secondary-button:hover {
  background: white;
  color: var(--primary-blue);
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.webinar-card {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.webinar-date {
  background: var(--primary-blue);
  color: white;
  padding: 15px;
  min-width: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.date-day {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.date-month {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.date-year {
  font-size: 12px;
  opacity: 0.8;
}

.webinar-content {
  padding: 20px;
  flex: 1;
}

.webinar-time {
  color: var(--gray);
  font-size: 14px;
  margin: 10px 0;
}

.webinar-time i {
  margin-right: 5px;
  color: var(--primary-blue);
}

.register-btn {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}

.register-btn:hover {
  background: var(--dark-blue);
}

.newsletter-cta {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
}

.newsletter-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 400;
}

.newsletter-cta p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 15px 30px;
  background: var(--dark-blue);
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #002b6b;
}

.privacy-note {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 20px;
}

/* Contact Page Styles */
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-icon {
  font-size: 40px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.contact-form-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.form-intro {
  flex: 1;
}

.contact-form {
  flex: 1;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 16px;
}

.form-group textarea {
  min-height: 150px;
}

.full-width {
  grid-column: 1 / -1;
}

.submit-btn {
  background: var(--primary-blue);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--dark-blue);
}

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

.office-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.office-card h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}

/* Training Page Styles */
.training-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.training-content {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
}

.training-content.active {
  display: block;
}

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

.level-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.level-card h4 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.duration {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.topics {
  list-style: none;
  margin: 15px 0;
}

.topics li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.topics li::before {
  content: "•";
  color: var(--primary-blue);
  position: absolute;
  left: 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.approach-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.approach-icon {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.training-sessions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.session-card {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.session-date {
  background: var(--primary-blue);
  color: white;
  padding: 15px;
  min-width: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.session-content {
  padding: 20px;
  flex: 1;
}

.session-level {
  display: inline-block;
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.session-location {
  color: var(--gray);
  font-size: 14px;
  margin: 10px 0;
}

.session-location i {
  margin-right: 5px;
  color: var(--primary-blue);
}

.session-cta {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.details-link {
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  align-self: center;
}

.corporate-training {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.corporate-content {
  flex: 1;
}

.corporate-image {
  flex: 1;
}

.corporate-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.corporate-content ul {
  list-style: none;
  margin: 20px 0;
}

.corporate-content li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.corporate-content li::before {
  content: "✓";
  color: var(--primary-blue);
  position: absolute;
  left: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 24px;
  color: var(--primary-blue);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  gap: 15px;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.training-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--light-blue);
  color: var(--primary-blue);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
}

/* Careers Page Styles */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.benefit-icon {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.job-filters {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.job-listings {
  max-width: 1000px;
  margin: 0 auto;
}

.job-posting {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.job-meta {
  display: flex;
  gap: 20px;
  color: var(--gray);
  font-size: 14px;
  margin: 10px 0;
}

.job-meta i {
  margin-right: 5px;
  color: var(--primary-blue);
}

.apply-btn {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.apply-btn:hover {
  background: var(--dark-blue);
}

.culture-carousel {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.culture-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 20px;
}

.culture-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.culture-caption {
  padding: 20px;
}

.internship-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.internship-content {
  flex: 1;
}

.internship-image {
  flex: 1;
}

.internship-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.internship-content ul {
  list-style: none;
  margin: 20px 0;
}

.internship-content li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.internship-content li::before {
  content: "•";
  color: var(--primary-blue);
  position: absolute;
  left: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.process-step::after {
  content: "→";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
  font-size: 20px;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Blog Page Styles */
.blog-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-main {
  flex: 2;
}

.blog-sidebar {
  flex: 1;
}

.featured-post {
  margin-bottom: 50px;
}

.featured-post img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.post-category {
  display: inline-block;
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.post-meta {
  color: var(--gray);
  margin-bottom: 15px;
}

.post-excerpt {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
}

.page-link.active {
  background: var(--primary-blue);
  color: white;
}

.sidebar-widget {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.category-list a:hover {
  color: var(--primary-blue);
}

.popular-post {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.newsletter-widget {
  background: var(--light-blue);
}

.blog-subscribe {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-subscribe input {
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 14px;
}

.blog-subscribe button {
  background: var(--primary-blue);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.blog-subscribe button:hover {
  background: var(--dark-blue);
}

/* Blog Post Page Styles */
.blog-header {
  position: relative;
  margin-bottom: 50px;
}

.blog-header-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
  position: relative;
  z-index: 2;
}

.blog-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 30, 60, 0.6);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.post-meta img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author {
  font-weight: 600;
}

.date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--dark-gray);
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  margin: 30px 0 20px;
  color: var(--dark-gray);
}

.blog-post-content p {
  margin-bottom: 20px;
}

.intro {
  font-size: 20px;
  line-height: 1.6;
  color: var(--dark-gray);
}

.featured-image {
  margin: 30px 0;
}

.caption {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin-top: 10px;
}

.steps {
  margin: 40px 0;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.step-number {
  flex: 0 0 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.conclusion {
  background: var(--light-blue);
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

.post-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--dark-gray);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.tag:hover {
  background: var(--primary-blue);
  color: white;
}

.post-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin: 30px 0;
}

.social-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-share a {
  color: var(--dark-gray);
  font-size: 20px;
  transition: color 0.3s;
}

.social-share a:hover {
  color: var(--primary-blue);
}

.print-btn {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.print-btn:hover {
  color: var(--primary-blue);
}

.print-btn i {
  margin-right: 5px;
}

.author-bio {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--off-white);
  border-radius: 8px;
  margin: 50px 0;
}

.author-bio img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.author-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin: 10px 0;
}

.related-posts {
  margin: 50px 0;
}

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

.related-post {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

.comments-section {
  margin: 50px 0;
}

.comment-form {
  margin-bottom: 40px;
}

.comment-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  min-height: 150px;
  margin-bottom: 15px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
}

.form-row button {
  background: var(--primary-blue);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.form-row button:hover {
  background: var(--dark-blue);
}

.comments-list {
  margin-top: 30px;
}

.comment {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
}

.comment:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.comment img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-date {
  color: var(--gray);
  font-size: 14px;
  font-weight: normal;
  margin-left: 10px;
}

.reply-link {
  color: var(--primary-blue);
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.reply-link:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .featured-insight-container,
  .corporate-training,
  .internship-container {
    flex-direction: column;
  }
  
  .featured-image,
  .corporate-image,
  .internship-image {
    order: -1;
  }
  
  .process-step::after {
    display: none;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .blog-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    flex-direction: column;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .blog-header-content {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .case-filters,
  .job-filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .featured-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .secondary-button {
    text-align: center;
  }
}

/* Add this to your CSS file */
.section-with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  z-index: 1;
}

.section-with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:  linear-gradient(90deg, rgba(43, 78, 140, 0.9) 0%, rgba(58, 107, 176, 0.8) 100%);
  z-index: -1;
}

.section-with-bg .section-title h2,
.section-with-bg .section-title p,
.section-with-bg .capability-content h3,
.section-with-bg .capability-content p,
.section-with-bg .learn-more {
  color: var(--white);
}

.section-with-bg .learn-more {
  color: var(--light-green);
}

.section-with-bg .learn-more:hover {
  color: var(--white);
}

/* Add these styles to your existing CSS */

/* General Enhancements */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
}

/* Hero Section Enhancements */
.industries-hero {
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40');
  background-size: cover;
  background-position: center;
  height: 80vh;
  min-height: 600px;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(43,78,140,0.9) 0%, rgba(58,107,176,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.secondary-button {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: white;
  color: var(--primary-color);
}

/* Industries Grid Enhancements */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.industry-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

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

.industry-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.industry-content {
  padding: 25px;
}

.industry-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.industry-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.industry-stats {
  display: flex;
  gap: 15px;
  margin: 1.5rem 0;
}

.stat {
  background: var(--light-blue);
  padding: 10px 15px;
  border-radius: 6px;
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: var(--dark-blue);
}

.learn-more i {
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(5px);
}

/* Challenges Section Enhancements */
.industry-challenges {
  position: relative;
  overflow: hidden;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.challenge-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.challenge-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.challenge-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.challenge-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.solution-preview {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
}

.solution-preview span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 5px;
}

.solution-preview a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.solution-preview a:hover {
  color: var(--dark-blue);
}

.solution-preview a i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.solution-preview a:hover i {
  transform: translateX(3px);
}

/* Insights Section Enhancements */
.industry-insights {
  background: var(--off-white);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.insight-image {
  height: 200px;
  overflow: hidden;
}

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

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

.insight-content {
  padding: 25px;
}

.insight-category {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.insight-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.insight-meta i {
  margin-right: 5px;
}

.insight-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.insight-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.insight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.read-time {
  font-size: 0.8rem;
  color: var(--gray);
}

.read-time i {
  margin-right: 5px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--dark-blue);
}

.read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

.view-all-insights {
  text-align: center;
  margin-top: 50px;
}

/* Testimonials Section */
.industry-testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.testimonial-content {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: rgba(255,255,255,0.5);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  color: white;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.2);
}

.author-info h5 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info span {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* CTA Section */
.industry-cta {
  background: white;
}

.cta-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-content {
  flex: 1;
  padding: 60px;
  background: var(--primary-color);
  color: white;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-image {
  flex: 1;
}

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .cta-container {
    flex-direction: column;
  }
  
  .cta-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .industries-hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-content {
    padding: 40px 20px;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .industries-hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .challenges-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
  }
}


/* Update the industries showcase section */
.industries-showcase.section-with-bg::before {
  background-color: rgba(43, 78, 140, 0.85); /* Use the primary color with transparency */
}

/* Update the text colors */
.industries-showcase .section-title h2,
.industries-showcase .section-title p,
.industries-showcase .industry-content h3,
.industries-showcase .industry-content p {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* Adds subtle shadow for better readability */
}

/* Update the tab styling */
.industry-tabs {
  margin-bottom: 30px;
}

.industry-tab {
  background: transparent;
  color: var(--white);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.industry-tab.active, 
.industry-tab:hover {
  opacity: 1;
  color: var(--white);
  border-bottom-color: var(--accent-color); /* Orange accent */
}

/* Industry content styling */
.industry-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.industry-content h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 15px;
}

.industry-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

/* Insights Section Styles */
.vector-insights-interactive {
  padding: 80px 20px;
  background-color: var(--off-white);
}

.vector-insights-interactive .section-title h2 {
  color: var(--primary-color);
  font-size: 36px;
  margin-bottom: 15px;
}

.vector-insights-interactive .subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 50px;
}

.insights-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.insights-sidebar {
  flex: 0 0 280px;
  background: var(--primary-color);
  padding: 30px 0;
}

.sidebar-item {
  padding: 18px 25px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-item.active {
  background: white;
}

.sidebar-item.active h3 {
  color: var(--primary-color);
}

.sidebar-item h3 {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  flex: 1;
}

.sidebar-icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.sidebar-item.active .sidebar-icon {
  color: var(--primary-color);
}

.active-indicator {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
}

.sidebar-item.active .active-indicator {
  opacity: 1;
}

.insights-content {
  flex: 1;
  position: relative;
  padding: 40px;
}

.content-slides {
  position: relative;
  min-height: 500px;
}

.content-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.content-slide.active {
  display: block;
}

.slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.content-type {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.slide-meta {
  display: flex;
  gap: 15px;
  color: var(--gray);
  font-size: 14px;
}

.slide-meta i {
  margin-right: 5px;
}

.content-slide h2 {
  font-size: 28px;
  color: var(--dark-gray);
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.subheading {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 500;
}

.slide-image {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
}

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

.slide-content {
  max-width: 700px;
}

.slide-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.results-list {
  list-style: none;
  margin: 20px 0;
}

.results-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  color: var(--dark-gray);
}

.results-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent-color);
}

.result-stats {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: var(--light-blue);
  border-radius: 8px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
}

.highlight-box {
  background: var(--light-blue);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 25px 0;
}

.highlight-box p {
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.author {
  font-size: 14px;
  color: var(--gray);
}

.slide-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--dark-blue);
  gap: 12px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: var(--primary-color);
  color: white;
}

.prev-arrow {
  left: -25px;
}

.next-arrow {
  right: -25px;
}

.view-all-insights {
  text-align: center;
  margin-top: 50px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .insights-container {
    flex-direction: column;
  }
  
  .insights-sidebar {
    flex: 1;
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 0;
  }
  
  .sidebar-item {
    min-width: 200px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .vector-insights-interactive {
    padding: 60px 20px;
  }
  
  .slide-image {
    height: 200px;
  }
  
  .result-stats {
    flex-direction: column;
  }
  
  .slide-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .insights-content {
    padding: 25px;
  }
  
  .content-slide h2 {
    font-size: 24px;
  }
  
  .subheading {
    font-size: 16px;
  }
}


/* Enhanced Hero Styles */
.services-hero {
  height: 100vh;
  min-height: 800px;
  background: linear-gradient(rgba(43, 78, 140, 0.85), rgba(43, 78, 140, 0.85)), 
              url('https://images.unsplash.com/photo-1552664730-d307ca884978') center/cover no-repeat;
}

.hero-content {
  max-width: 900px;
  padding: 0 30px;
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
  40% {transform: translateY(-20px) translateX(-50%);}
  60% {transform: translateY(-10px) translateX(-50%);}
}

/* Add to style.css */

/* Hero Section Enhancements */
.careers-hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(43, 78, 140, 0.85), rgba(43, 78, 140, 0.85)), 
              url('https://images.unsplash.com/photo-1522071820081-009f0129c71c') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.value-card p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}