:root {
    --primary-blue: #0065ff;
    --dark-blue: #003b8e;
    --light-blue: #e6f0ff;
    --white: #ffffff;
    --off-white: #f9fafc;
    --gray: #6b7785;
    --dark-gray: #2e3742;
    --light-gray: #e0e4e8;
}

* {
    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;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    padding: 15px 0;
    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;
}

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

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

.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-blue);
}

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

.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-blue);
    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: rgba(0, 30, 60, 0.4);
    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;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

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

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-blue);
    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-blue);
}

/* 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 {
    color: var(--gray);
    text-decoration: none;
    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);
}

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

@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;
}

.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 {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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: 1px solid var(--light-gray);
}

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

.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;
}

/* 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: #2e3742;
  color: #ffffff;
  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(--primary-blue);
}

.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(--primary-blue);
  transform: translateY(-3px);
}

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

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

.footer-links a {
  color: #b0b8c5;
  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 */
.achievement-section {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

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

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

.achievement-section .subheading {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.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: var(--dark-gray);
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.impact-header p {
  font-size: 18px;
  color: var(--gray);
  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: var(--primary-blue);
  margin-bottom: 10px;
  line-height: 1;
}

.impact-stat span {
  font-size: 18px;
  color: var(--dark-gray);
  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: white;
  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;
  }
}
