      /* Modern Timeline Styles - Fixed Layout */
      .modern-timeline {
          position: relative;
          padding: 50px 0;
          overflow: hidden;
      }

      .modern-timeline::before {
          content: "";
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          width: 4px;
          height: calc(100% - 100px);
          background: linear-gradient(to bottom, #f15a24, #3498db);
          border-radius: 2px;
          top: 50px;
      }

      .timeline-item {
          position: relative;
          margin-bottom: 60px;
          width: 100%;
          clear: both;
      }

      .timeline-item:nth-child(odd) .timeline-content {
          float: right;
          width: calc(50% - 60px);
          margin-left: 60px;
          text-align: left;
      }

      .timeline-item:nth-child(even) .timeline-content {
          float: left;
          width: calc(50% - 60px);
          margin-right: 60px;
          text-align: right;
      }

      .timeline-year {
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          background: #f15a24;
          color: white;
          padding: 10px 25px;
          border-radius: 30px;
          font-weight: bold;
          font-size: 18px;
          z-index: 2;
          box-shadow: 0 4px 15px rgba(241, 90, 36, 0.3);
          white-space: nowrap;
      }

      .timeline-content {
          position: relative;
          padding: 30px;
          background: white;
          border-radius: 10px;
          box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease;
      }

      .timeline-content:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }

      .timeline-content h4 {
          color: #f15a24;
          margin-bottom: 10px;
          font-size: 20px;
      }

      .timeline-icon {
          position: absolute;
          left: 50%;
          transform: translateX(-50%) translateY(-50%);
          width: 50px;
          height: 50px;
          background: white;
          border: 4px solid #f15a24;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 2;
          font-size: 20px;
          color: #f15a24;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          top: -10px;
      }

      .timeline-item:nth-child(odd) .timeline-content::before {
          content: "";
          position: absolute;
          left: -20px;
          top: 40px;
          width: 0;
          height: 0;
          border-top: 10px solid transparent;
          border-bottom: 10px solid transparent;
          border-right: 20px solid white;
      }

      .timeline-item:nth-child(even) .timeline-content::before {
          content: "";
          position: absolute;
          right: -20px;
          top: 40px;
          width: 0;
          height: 0;
          border-top: 10px solid transparent;
          border-bottom: 10px solid transparent;
          border-left: 20px solid white;
      }

      /* Clear floats */
      .modern-timeline::after {
          content: "";
          display: table;
          clear: both;
      }

      /* Certifications Gallery */
      .certifications-gallery {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 30px;
          margin-top: 40px;
      }

      .cert-card {
          background: white;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease;
      }

      .cert-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .cert-image {
          height: 200px;
          overflow: hidden;
          background: #f8f9fa;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 20px;
      }

      .cert-image img {
          max-width: 100%;
          max-height: 100%;
          object-fit: contain;
      }

      .cert-info {
          padding: 25px;
          text-align: center;
      }

      .cert-info h4 {
          color: #333;
          margin-bottom: 10px;
          font-size: 18px;
      }

      .cert-info p {
          color: #666;
          font-size: 14px;
          line-height: 1.6;
      }

      /* Responsive Timeline */
      @media (max-width: 992px) {
          .modern-timeline::before {
              left: 30px;
          }

          .timeline-year {
              left: 30px;
              transform: translateX(0);
          }

          .timeline-item:nth-child(odd) .timeline-content,
          .timeline-item:nth-child(even) .timeline-content {
              float: none;
              width: calc(100% - 100px);
              margin-left: 100px;
              margin-right: 0;
              text-align: left;
          }

          .timeline-item:nth-child(odd) .timeline-content::before,
          .timeline-item:nth-child(even) .timeline-content::before {
              left: -20px;
              right: auto;
              border-right: 20px solid white;
              border-left: none;
          }

          .timeline-icon {
              left: 30px;
          }
      }

      /* Stats Animation */
      .counter-box {
          padding: 30px 20px;
          border-radius: 10px;
          background: white;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          transition: transform 0.3s ease;
      }

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

      .counter-number {
          font-size: 48px;
          font-weight: 700;
          color: #f15a24;
          margin: 10px 0;
          font-family: "Arial", sans-serif;
      }

      .counter-box h4 {
          color: #333;
          font-size: 16px;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 1px;
      }


      /* Image Gallery Styles */
      .image-gallery-section {
          padding: 60px 0;
      }

      .gallery-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 25px;
          margin-top: 40px;
      }

      .gallery-item {
          position: relative;
          overflow: hidden;
          border-radius: 10px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          height: 250px;
          transition: transform 0.3s ease;
      }

      .gallery-item:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

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

      .gallery-item:hover img {
          transform: scale(1.1);
      }

      .gallery-caption {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
          color: white;
          padding: 20px 15px 15px;
          transform: translateY(100%);
          transition: transform 0.3s ease;
      }

      .gallery-item:hover .gallery-caption {
          transform: translateY(0);
      }

      .gallery-caption h5 {
          margin: 0;
          font-size: 16px;
          font-weight: 600;
      }

      .gallery-caption p {
          margin: 5px 0 0;
          font-size: 12px;
          opacity: 0.9;
      }

      /* Full Width Image Banner */
      .image-banner {
          position: relative;
          height: 400px;
          background-attachment: fixed;
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover;
          margin: 40px 0;
      }

      .banner-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.5);
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .banner-content {
          text-align: center;
          color: white;
          max-width: 800px;
          padding: 0 20px;
      }

      .banner-content h2 {
          font-size: 42px;
          font-weight: 700;
          margin-bottom: 20px;
          text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
      }

      .banner-content p {
          font-size: 18px;
          line-height: 1.6;
          text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
      }

      /* Team Image Section */
      .team-showcase {
          background: #f8f9fa;
          padding: 60px 0;
      }

      .team-grid {
          /* display: grid; */
          /* grid-template-columns: repeat(3, 1fr); */
          /* gap: 30px; */
          /* margin-top: 40px; */

          margin: 40px auto 0;
          width: 40%;

      }

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

      .team-member-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .member-image {
          height: 300px;
          overflow: hidden;
      }

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

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

      .member-info {
          padding: 20px;
          text-align: center;
      }

      .member-info h4 {
          margin: 0 0 5px;
          color: #333;
          font-size: 20px;
      }

      .member-info .position {
          color: #f15a24;
          font-weight: 600;
          margin-bottom: 10px;
          font-size: 14px;
      }

      .member-info .experience {
          color: #666;
          font-size: 14px;
          margin-bottom: 15px;
      }

      .member-social {
          display: flex;
          justify-content: center;
          gap: 15px;
      }

      .member-social a {
          width: 35px;
          height: 35px;
          background: #f8f9fa;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #f15a24;
          transition: all 0.3s ease;
      }

      .member-social a:hover {
          background: #f15a24;
          color: white;
      }

      /* Image Showcase Grid */
      .showcase-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
          margin: 40px 0;
      }

      .showcase-item {
          position: relative;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      }

      .showcase-item img {
          width: 100%;
          height: 350px;
          object-fit: cover;
          transition: transform 0.5s ease;
      }

      .showcase-item:hover img {
          transform: scale(1.05);
      }

      .showcase-content {
          padding: 20px;
          background: white;
      }

      .showcase-content h4 {
          color: #f15a24;
          margin-bottom: 10px;
      }

      @media (max-width: 992px) {
          .gallery-grid {
              grid-template-columns: repeat(2, 1fr);
          }

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

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

          .banner-content h2 {
              font-size: 32px;
          }
      }

      @media (max-width: 576px) {
          .gallery-grid {
              grid-template-columns: 1fr;
          }

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

      .years-badge {
          background: #f15a24;
          color: white;
          padding: 8px 25px;
          border-radius: 30px;
          display: inline-block;
          font-weight: 700;
          font-size: 18px;
          margin-bottom: 20px;
          letter-spacing: 1px;
      }

      .service-tagline {
          font-size: 20px;
          color: #f15a24;
          font-weight: 600;
          margin-top: 20px;
          border-top: 2px solid #f15a24;
          padding-top: 20px;
          display: inline-block;
      }