
    :root {
      --primary-color: #FFD700;
      --primary-dark: #e6c200;
      --dark-bg: #1a1a1a;
      --light-bg: #f7f7f7;
      --text-dark: #333333;
      --text-light: #666666;
      --white: #ffffff;
      --black: #000000;
    }
    /* Global Overrides */
    body {
      font-family: 'Open Sans', sans-serif;
      background: url('assets/img/bg-pattern.jpg') no-repeat left center fixed;
      background-size: auto;
      background-color: var(--white);
    }
    a {
      color: var(--primary-color);
    }
    a:hover {
      color: var(--primary-dark);
    }
    .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      color: var(--black);
    }
    .btn-primary:hover {
      background-color: var(--primary-dark);
      border-color: var(--primary-dark);
      color: var(--black);
    }
    /* Header Styles */
    #header {
      background: var(--white);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .header-top {
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      position: relative;
    }
    .header-top .logo img {
      height: 70px;
      width: auto;
    }
    .topbar {
      display: none;
    }
    .logo-wrap {
      padding: 10px 0;
    }
    .logo img {
      height: 80px;
      width: auto;
    }
    #nav-wrap {
      display: none;
    }
    #main-menu {
      height: auto;
    }
    #main-menu > li {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
    }
    #main-menu > li > a {
      color: var(--text-dark);
      text-decoration: none;
      padding: 0 18px;
      font-weight: 500;
      font-size: 14px;
      text-transform: uppercase;
      height: 100%;
      display: flex;
      align-items: center;
      transition: color 0.3s ease;
    }
    #main-menu > li > a:hover,
    #main-menu > li.current-menu-item > a {
      color: var(--primary-color);
    }
    #main-menu > li .sub-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      min-width: 220px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 1000;
    }
    #main-menu > li:hover > .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    #main-menu .sub-menu li a {
      color: var(--text-dark);
      padding: 12px 20px;
      display: block;
      border-bottom: 1px solid #f0f0f0;
      font-size: 13px;
      text-transform: uppercase;
    }
    #main-menu .sub-menu li a:hover {
      background: var(--primary-color);
      color: var(--black);
    }
    /* Multi-level dropdowns (for Products → Billboards/Airports) */
    #main-menu .sub-menu .sub-menu {
      top: 0;
      left: 100%;
      transform: translateX(10px);
    }
    #main-menu .sub-menu .menu-item-has-children:hover > .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }
    #nav {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      height: 100%;
    }
    #nav > li {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
    }
    #nav > li > a {
      color: var(--text-dark);
      text-decoration: none;
      padding: 0 15px;
      font-weight: 500;
      font-size: 14px;
      text-transform: uppercase;
      height: 100%;
      display: flex;
      align-items: center;
      transition: color 0.3s ease;
    }
    #nav > li > a:hover,
    #nav > li.current > a {
      color: var(--primary-color);
    }
    #nav > li .sub-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      min-width: 220px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 1000;
    }
    #nav > li:hover .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    #nav .sub-menu li a {
      color: var(--text-dark);
      padding: 12px 20px;
      display: block;
      border-bottom: 1px solid #f0f0f0;
      font-size: 13px;
      text-transform: uppercase;
    }
    #nav .sub-menu li a:hover {
      background: var(--primary-color);
      color: var(--black);
    }
    .header-separator {
      border: 0;
      border-top: 1px solid #eee;
      margin: 0;
    }
    .header-menu {
      padding: 0;
    }
    .header-menu ul {
      display: flex;
      justify-content: center;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 35px;
      flex-wrap: wrap;
    }
    .header-menu > ul > li {
      position: relative;
    }
    .header-menu > ul > li > a {
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      text-transform: uppercase;
      padding: 8px 0;
      display: block;
      position: relative;
      transition: color 0.3s;
    }
    .header-menu > ul > li > a:hover,
    .header-menu > ul > li.current-menu-item > a {
      color: var(--primary-color);
    }
    /* Underline effect on hover/active */
    .header-menu > ul > li > a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      transition: width 0.3s ease;
    }
    .header-menu > ul > li > a:hover::after,
    .header-menu > ul > li.current-menu-item > a::after {
      width: 100%;
    }
    /* Dropdowns */
    .header-menu .sub-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      min-width: 220px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 1000;
    }
    .header-menu li:hover > .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .header-menu .sub-menu li a {
      padding: 12px 20px;
      display: block;
      color: var(--text-dark);
      font-size: 13px;
      text-transform: uppercase;
      border-bottom: 1px solid #f0f0f0;
    }
    .header-menu .sub-menu li a:hover {
      background: var(--primary-color);
      color: var(--black);
    }
    /* Multi-level (Products → Billboards/Airports) */
    .header-menu .sub-menu .sub-menu {
      top: 0;
      left: 100%;
    }
    /* Mobile Nav Toggle */
    .mobile-nav-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-dark);
    }
    /* Hero Section - Modified for full width and circular indicators */
    #hero {
      margin-top: 100px;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
    .hero-carousel {
      height: 500px;
      overflow: hidden;
      width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
    }
    .hero-carousel .swiper-slide {
      height: 500px;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }
    .hero-carousel .swiper-slide-active {
      opacity: 1;
      z-index: 2;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }
    .hero-carousel .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      /* Remove or comment out:
      transform: scale(0.85);
      transition: all 0.3s ease;
      filter: blur(1px);
      */
    }
  
 
    /* Swiper Pagination */
    .hero-carousel .swiper-pagination {
      bottom: 10px;
      gap: 15px;
    }
   .hero-carousel .swiper-pagination-bullet {
      width: 16px;
      height: 16px;
      background-color: rgba(255, 255, 255, 0.7);
      border: none;
      transition: all 0.4s ease;
    }
    .hero-carousel .swiper-pagination-bullet:hover {
      background-color: #ffffff;
      transform: scale(1.2);
    }
    .hero-carousel .swiper-pagination-bullet-active {
      width: 28px;
      height: 28px;
      background-color: var(--primary-color);
      border: 4px solid var(--white);
    }
    /* Swiper Navigation */
    .hero-carousel .swiper-button-prev,
    .hero-carousel .swiper-button-next {
      width: 40px;
      height: 40px;
      background-color: rgba(0, 0, 0, 0.3);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      margin: 0 15px;
      transition: all 0.3s ease;
      color: var(--white);
    }
    .hero-carousel .swiper-button-prev:hover,
    .hero-carousel .swiper-button-next:hover {
      background-color: var(--primary-color);
    }
    .hero-carousel .swiper-button-prev {
      left: 15px;
    }
    .hero-carousel .swiper-button-next {
      right: 15px;
    }
    .hero-carousel .swiper-button-prev:after,
    .hero-carousel .swiper-button-next:after {
      font-size: 20px;
    }
    /* Hero content adjustments for full width layout */
    .hero-content {
      position: absolute;
      bottom: 60px;
      left: 0;
      right: 0;
      text-align: center;
      color: var(--white);
      z-index: 2;
      padding: 0 15px;
    }
    .hero-content .container {
      position: relative;
      z-index: 2;
    }
    /* About Section */
    .blox {
      padding: 80px 0;
      position: relative;
    }
    .blox.dark {
      background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
      color: var(--white);
    }
    .blox.light {
      background-color: var(--light-bg);
    }
    .max-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .max-title h2 {
      font-size: 36px;
      font-weight: 300;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .max-title h2 strong {
      font-weight: 700;
      color: var(--primary-color);
    }
    .slog-tx2 {
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-light);
      max-width: 800px;
      margin: 0 auto;
    }
    /* Icon Boxes */
    .icon-box24 {
      text-align: center;
      padding: 30px 20px;
      background: var(--white);
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
    .icon-box24:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .icon-box24 i {
      font-size: 48px;
      color: var(--primary-color);
      margin-bottom: 20px;
      display: block;
    }
    .icon-box24 h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--text-dark);
    }
    .icon-box24 h4 strong {
      color: var(--primary-color);
    }
    .magicmore {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 14px;
    }
    .magicmore:hover {
      color: var(--primary-dark);
    }
    /* Stats Section */
    .f-counter {
      text-align: center;
      color: var(--white);
    }
    .f-counter i {
      font-size: 48px;
      color: var(--primary-color);
      margin-bottom: 20px;
      display: block;
    }
    .max-count {
      font-size: 48px;
      font-weight: 700;
      display: block;
      line-height: 1;
    }
    .f-counter h5 {
      font-size: 16px;
      font-weight: 600;
      margin-top: 15px;
      text-transform: uppercase;
    }
    /* Team Section */
    .our-team1 {
      text-align: center;
      background: var(--white);
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease;
      height: 100%;
    }
    .our-team1:hover {
      transform: translateY(-10px);
    }
    .our-team1 figure {
      margin: 0;
      position: relative;
      overflow: hidden;
    }
    .our-team1 figure img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }
    .our-team1 figcaption {
      padding: 20px;
    }
    .our-team1 figcaption h2 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 5px;
      color: var(--text-dark);
    }
    .our-team1 figcaption h5 {
      font-size: 14px;
      color: var(--primary-color);
      font-weight: 500;
      text-transform: uppercase;
    }
    .social-team {
      padding: 15px;
      border-top: 1px solid #f0f0f0;
    }
    .social-team a {
      color: var(--text-light);
      margin: 0 10px;
      font-size: 16px;
    }
    .social-team a:hover {
      color: var(--primary-color);
    }
    /* Footer Social Bar */
    .footer-social-bar {
      background: var(--dark-bg);
      padding: 30px 0;
    }
    .footer-social-items {
      display: flex;
      justify-content: center;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-social-items li {
      flex: 1;
      text-align: center;
    }
    .footer-social-items a {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-decoration: none;
      padding: 15px;
      transition: all 0.3s ease;
    }
    .footer-social-items a:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    .footer-social-items i {
      font-size: 24px;
      margin-right: 10px;
    }
    .footer-social-items div {
      text-align: left;
    }
    .footer-social-items strong {
      display: block;
      font-size: 14px;
      text-transform: uppercase;
    }
    .footer-social-items span {
      font-size: 12px;
      opacity: 0.8;
    }
    /* Footer */
    #footer {
      background: var(--dark-bg);
      color: var(--white);
      padding: 60px 0 0;
    }
    .footer-in {
      padding-bottom: 40px;
    }
    .widget {
      margin-bottom: 30px;
    }
    .widget h5.subtitle {
      color: var(--primary-color);
      font-size: 18px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .textwidget p {
      color: #eee;
      line-height: 1.8;
      font-size: 14px;
    }
    .socialfollow {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }
    .socialfollow a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    .socialfollow a:hover {
      background: var(--primary-color);
      color: var(--black);
    }
    /* Newsletter Form */
    .widget-subscribe-form {
      margin-top: 20px;
    }
    .widget-subscribe-form p {
      color: #eee;
      margin-bottom: 15px;
      font-size: 14px;
    }
    .widget-subscribe-email {
      width: 100%;
      padding: 10px 15px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--white);
      margin-bottom: 10px;
    }
    .widget-subscribe-submit {
      background: var(--primary-color);
      color: var(--black);
      border: none;
      padding: 10px 20px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .widget-subscribe-submit:hover {
      background: var(--primary-dark);
    }
    /* Footer Bottom */
    .footbot {
      background: #26272b;
      padding: 20px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-navi {
      color: #aaa;
      font-size: 14px;
    }
    .footer-navi a {
      color: var(--primary-color);
      text-decoration: none;
    }
    .footer-navi a:hover {
      color: var(--primary-dark);
    }
    .floatright {
      text-align: right;
    }
    /* Scroll Top */
    #scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
    }
    #scroll-top a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      color: var(--black);
      border-radius: 50%;
      text-decoration: none;
      font-size: 20px;
      transition: all 0.3s ease;
    }
    #scroll-top a:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
    }
    /* Media Partnerships Section */
    .media-partnerships {
      background: var(--dark-bg);
      padding: 80px 0;
    }
    .partnership-category {
      margin-bottom: 50px;
    }
    .partnership-category h3 {
      color: var(--primary-color);
      font-size: 24px;
      text-align: center;
      margin-bottom: 30px;
      text-transform: uppercase;
      border-bottom: 2px solid rgba(255, 215, 0, 0.3);
      padding-bottom: 15px;
    }
    .partner-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 30px;
    }
    .partner-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 25px 20px;
      text-align: center;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 215, 0, 0.1);
    }
    .partner-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary-color);
      background: rgba(255, 215, 0, 0.05);
    }
    .partner-logo {
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
    }
    .partner-logo img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }
    .partner-name {
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--white);
    }
    .partner-desc {
      font-size: 14px;
      opacity: 0.8;
      line-height: 1.4;
      margin-bottom: 5px;
      color: #eee;
    }
    .partner-freq {
      color: var(--primary-color);
      font-weight: 600;
      font-size: 14px;
      margin-top: 5px;
    }
    /* Button Styles */
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 30px;
      background: var(--primary-color);
      color: var(--black);
      border: none;
      font-weight: 600;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 14px;
      border-radius: 4px;
    }
    .button:hover {
      background: var(--primary-dark);
      color: var(--black);
      transform: translateY(-2px);
    }
    .button.white {
      background: var(--white);
      color: var(--black);
    }
    .button.white:hover {
      background: #f0f0f0;
    }
    .button.blue {
      background: var(--primary-color);
      color: var(--black);
    }
    .button.medium {
      padding: 15px 35px;
    }
    .bordered-bot {
      border-bottom: 2px solid transparent;
    }
    .button i {
      margin-right: 10px;
    }
    /* Responsive Styles */
    @media (max-width: 1200px) {
      #nav > li > a {
        padding: 0 12px;
        font-size: 13px;
      }
    }
    @media (max-width: 991px) {
      .mobile-nav-toggle {
        display: block;
      }
      #nav-wrap {
        display: block;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
      }
      #nav .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      #nav .menu-item-has-children > a::after {
        content: '\f078';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 12px;
      }
      #nav li.open > a::after {
        content: '\f077';
      }
      #nav-wrap.active {
        left: 0;
      }
      #nav {
        flex-direction: column;
        width: 100%;
        height: auto;
      }
      #nav > li {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
      }
      #nav > li > a {
        padding: 15px;
        width: 100%;
        height: auto;
        border-bottom: 1px solid #f0f0f0;
      }
      #nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        display: none;
      }
      #nav li.open > .sub-menu {
        display: block;
      }
      .hero-carousel {
        height: 500px;
      }
      .hero-carousel .swiper-slide {
        height: 500px;
      }
      .hero-content {
        bottom: 50px;
      }
      .hero-content h1 {
        font-size: 36px;
      }
      .hero-content p {
        font-size: 16px;
      }
      .footer-social-items {
        flex-direction: column;
      }
      .footer-social-items li {
        margin-bottom: 10px;
      }
      .footer-navi.floatright {
        text-align: left;
        margin-top: 10px;
      }
    }
    @media (max-width: 768px) {
      .hero-carousel {
        height: 300px;
      }
      .hero-carousel .swiper-slide {
        height: 300px;
      }
      .hero-content {
        bottom: 40px;
      }
      .hero-content h1 {
        font-size: 28px;
      }
      .max-title h2 {
        font-size: 28px;
      }
      .blox {
        padding: 60px 0;
      }
      .partner-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
      }
      .footer-in .col-md-3 {
        margin-bottom: 30px;
      }
    }
    @media (max-width: 576px) {
      .logo img {
        height: 70px;
      }
      .hero-carousel {
        height: 200px;
      }
      .hero-carousel .swiper-slide {
        height: 200px;
      }
      .hero-content {
        bottom: 30px;
      }
      .hero-content h1 {
        font-size: 24px;
      }
      .max-title h2 {
        font-size: 24px;
      }
      .button.medium {
        padding: 12px 25px;
        font-size: 13px;
      }
      .partner-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      #scroll-top {
        bottom: 20px;
        right: 20px;
      }
      #scroll-top a {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }
    }

.f-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.f-counter i {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 10px;
}

/* Number + suffix container */
.f-counter .count-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.f-counter .max-count {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: black;
}

.f-counter .suf-counter {
  font-size: 20px;
  font-weight: 600;
}

.f-counter h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: black;
  text-transform: uppercase;
}

.icon-box24 {
  text-align: center;
  padding: 40px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: transparent;
}

/* ICON */
.icon-box24 i {
  font-size: 42px;
  color: #000;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

/* TITLE */
.icon-box24 h4 {
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* LEARN MORE */
.icon-box24 .magicmore {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.icon-box24:hover {
  background: #fff; /* keeps card visible */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

/* Turn everything yellow on hover */
.icon-box24:hover i,
.icon-box24:hover h4,
.icon-box24:hover h4 strong,
.icon-box24:hover .magicmore {
  color: #f4c400; /* yellow */
}
/* Timeline */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.year {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

/* Value Items */
.value-item {
  text-align: center;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 8px;
}
.value-item h4 {
  margin-top: 10px;
  color: var(--text-dark);
}

/* Team Cards */
.team-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.team-card:hover {
  transform: translateY(-5px);
}