      /* Animated Skills Section */
      .skills-container {
          transition: all 0.5s ease;
      }

      .skill-card {
          transition: all 0.4s ease;
          cursor: pointer;
          position: relative;
          overflow: hidden;
          margin-bottom: 20px;
          border-radius: 8px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          padding: 15px;
          background: #fff;
          transform: translateY(20px);
          opacity: 0;
      }

      .skill-card.animate {
          transform: translateY(0);
          opacity: 1;
      }

      .skill-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
      }

      .skill-name {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 10px;
          font-weight: bold;
      }

      .skill-progress {
          height: 10px;
          background-color: #e9ecef;
          border-radius: 5px;
          overflow: hidden;
          position: relative;
      }

      .skill-bar {
          height: 100%;
          width: 0;
          background: linear-gradient(90deg, #3498db, #2980b9);
          border-radius: 5px;
          transition: width 1.5s cubic-bezier(0.1, 0.5, 0.2, 1);
          position: relative;
      }

      .skill-bar::after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          background: linear-gradient(90deg,
                  rgba(255, 255, 255, 0.1) 0%,
                  rgba(255, 255, 255, 0.3) 50%,
                  rgba(255, 255, 255, 0.1) 100%);
          animation: shimmer 2s infinite;
      }

      @keyframes shimmer {
          0% {
              transform: translateX(-100%);
          }

          100% {
              transform: translateX(100%);
          }
      }

      /* Enhanced Timeline Section */
      .timeline-container {
          position: relative;
      }

      .timeline-container::before {
          content: '';
          position: absolute;
          height: 100%;
          width: 4px;
          background: #3498db;
          left: 50%;
          transform: translateX(-50%);
          top: 0;
      }

      .timeline-item {
          margin: 40px 0;
          position: relative;
          opacity: 0;
          transform: translateX(50px);
          transition: all 0.6s ease;
          transition-delay: calc(var(--index) * 0.2s);
      }

      .timeline-item:nth-child(even) {
          transform: translateX(-50px);
      }

      .timeline-item.animate {
          opacity: 1;
          transform: translateX(0);
      }

      .timeline-item::before {
          content: '';
          position: absolute;
          height: 20px;
          width: 20px;
          background: #3498db;
          border-radius: 50%;
          left: 50%;
          transform: translateX(-50%);
          z-index: 1;
          transition: all 0.3s ease;
      }

      .timeline-item:hover::before {
          background: #2ecc71;
          box-shadow: 0 0 10px #2ecc71;
          transform: translateX(-50%) scale(1.3);
      }

      .timeline-content {
          background: #fff;
          padding: 20px;
          border-radius: 8px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          width: 45%;
          margin-left: auto;
          margin-right: 0;
          position: relative;
          transition: all 0.3s ease-in-out;
      }

      .timeline-item:nth-child(even) .timeline-content {
          margin-left: 0;
          margin-right: auto;
      }

      .timeline-content:hover {
          transform: scale(1.05);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      }

      .timeline-year {
          display: inline-block;
          padding: 5px 15px;
          background: #3498db;
          color: white;
          border-radius: 4px;
          font-weight: bold;
          margin-bottom: 10px;
      }

      .timeline-title {
          margin-bottom: 10px;
          color: #333;
      }

      .timeline-description {
          color: #666;
      }

      /* Enhanced Profile Section */
      .profile-image-container {
          position: relative;
          width: 250px;
          height: 250px;
          margin: 0 auto;
          overflow: hidden;
          border-radius: 50%;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
          transition: all 0.5s ease;
      }

      .profile-image-container:hover {
          transform: scale(1.05);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      }

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

      .profile-image-container:hover .profile-image {
          transform: scale(1.1);
      }

      /* Animated Projects Section */
      .project-card {
          transition: all 0.5s ease;
          opacity: 0;
          transform: translateY(30px);
      }

      .project-card.animate {
          opacity: 1;
          transform: translateY(0);
      }

      .project-card:hover {
          transform: translateY(-10px);
      }

      /* Values section animation */
      .value-item {
          transition: all 0.5s ease;
          opacity: 0;
          transform: translateY(30px);
          transition-delay: calc(var(--index) * 0.15s);
      }

      .value-item.animate {
          opacity: 1;
          transform: translateY(0);
      }

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

      .value-icon {
          transition: all 0.3s ease;
      }

      .value-item:hover .value-icon {
          transform: scale(1.2);
          color: #3498db;
      }

      /* Counter section */
      .counter-section {
          background: linear-gradient(135deg, #3498db, #2c3e50);
          padding: 60px 0;
          color: white;
          margin: 40px 0;
      }

      .counter-container {
          display: flex;
          justify-content: space-around;
          flex-wrap: wrap;
      }

      .counter-item {
          text-align: center;
          margin: 20px;
          flex: 1;
          min-width: 200px;
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.5s ease;
      }

      .counter-item.animate {
          opacity: 1;
          transform: translateY(0);
      }

      .counter-value {
          font-size: 3rem;
          font-weight: bold;
          margin-bottom: 10px;
          position: relative;
          display: inline-block;
      }

      .counter-title {
          font-size: 1.2rem;
          opacity: 0.9;
      }

      .counter-icon {
          font-size: 2.5rem;
          margin-bottom: 15px;
          opacity: 0.9;
      }

      /* About hero animation */
      .about-hero-content h1,
      .about-hero-content .tagline,
      .about-hero-content .title,
      .about-hero-content .one-liner {
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.5s ease;
      }

      .about-hero-content.animate h1 {
          opacity: 1;
          transform: translateY(0);
          transition-delay: 0.2s;
      }

      .about-hero-content.animate .tagline {
          opacity: 1;
          transform: translateY(0);
          transition-delay: 0.4s;
      }

      .about-hero-content.animate .title {
          opacity: 1;
          transform: translateY(0);
          transition-delay: 0.6s;
      }

      .about-hero-content.animate .one-liner {
          opacity: 1;
          transform: translateY(0);
          transition-delay: 0.8s;
      }

      /* Mission Section Styles */
      .mission-section {
          padding: 60px 0;
          background-color: #f9f9f9;
      }

      .about-container {
          display: flex;
          align-items: center;
          gap: 30px;
      }

      .about-container.reverse {
          flex-direction: row-reverse;
      }

      .about-content {
          flex: 1;
          opacity: 0;
          transform: translateX(-50px);
          transition: all 0.8s ease;
      }

      .about-content.animate {
          opacity: 1;
          transform: translateX(0);
      }

      .about-content h2 {
          margin-bottom: 30px;
          color: #333;
          font-size: 2rem;
          position: relative;
          padding-bottom: 15px;
      }

      .about-content h2::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 0;
          height: 3px;
          background: linear-gradient(90deg, #3498db, #2ecc71);
          transition: width 1.2s ease;
      }

      .about-content.animate h2::after {
          width: 80px;
      }

      .mission-card {
          background-color: white;
          padding: 25px;
          margin-bottom: 20px;
          border-radius: 12px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          transition: all 0.4s ease;
          transform: translateY(20px);
          opacity: 0;
          border-left: 4px solid transparent;
      }

      .mission-card:nth-child(2) {
          transition-delay: 0.2s;
      }

      .mission-card:nth-child(3) {
          transition-delay: 0.4s;
      }

      .about-content.animate .mission-card {
          transform: translateY(0);
          opacity: 1;
      }

      .mission-card:hover {
          transform: translateY(-8px) scale(1.02);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
      }

      .mission-card:first-of-type:hover {
          border-left: 4px solid #3498db;
      }

      .mission-card:last-of-type:hover {
          border-left: 4px solid #2ecc71;
      }

      .mission-card h3 {
          display: flex;
          align-items: center;
          margin-bottom: 15px;
          color: #3498db;
          font-size: 1.4rem;
      }

      .mission-card h3 i {
          margin-right: 15px;
          transition: all 0.4s ease;
      }

      .mission-card:hover h3 i {
          transform: scale(1.2) rotate(15deg);
      }

      .mission-card p {
          color: #555;
          line-height: 1.6;
          font-size: 1.05rem;
      }

      .about-image {
          flex: 1;
          text-align: center;
          opacity: 0;
          transform: translateX(50px);
          transition: all 0.8s ease;
          transition-delay: 0.3s;
      }

      .about-image.animate {
          opacity: 1;
          transform: translateX(0);
      }

      .mission-img {
          max-width: 100%;
          border-radius: 12px;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
          transition: all 0.5s ease;
          transform: rotate(-2deg);
      }

      .mission-img:hover {
          transform: scale(1.05) rotate(0deg);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
      }

      /* Values Section Styles */
      .values-section {
          padding: 60px 0;
          background-color: #fff;
      }

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

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

      .value-item {
          background-color: white;
          padding: 25px;
          border-radius: 8px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          text-align: center;
          transition: all 0.5s ease;
      }

      .value-icon {
          font-size: 2.5rem;
          color: #3498db;
          margin-bottom: 15px;
          transition: all 0.3s ease;
      }

      .value-item h3 {
          margin-bottom: 15px;
          color: #333;
      }

      /* Fun Facts Section */
      .fun-section {
          padding: 80px 0;
          background-color: #f8f9fa;
          position: relative;
          overflow: hidden;
      }

      .fun-section::before {
          content: '';
          position: absolute;
          width: 300px;
          height: 300px;
          background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
          top: -100px;
          left: -100px;
          border-radius: 50%;
      }

      .fun-section::after {
          content: '';
          position: absolute;
          width: 300px;
          height: 300px;
          background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
          bottom: -100px;
          right: -100px;
          border-radius: 50%;
      }

      .fun-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
          position: relative;
          z-index: 2;
      }

      .fun-card {
          transition: all 0.5s ease;
          opacity: 0;
          transform: translateY(20px);
          transition-delay: calc(var(--index) * 0.2s);
          border-radius: 10px;
          overflow: hidden;
          background: white;
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          padding: 25px;
          position: relative;
          z-index: 1;
      }

      .fun-card.animate {
          opacity: 1;
          transform: translateY(0);
      }

      .fun-card:hover {
          transform: translateY(-5px) scale(1.05);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }

      .fun-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 5px;
          background: linear-gradient(90deg, #3498db, #2ecc71);
          z-index: -1;
          transition: height 0.3s ease;
      }

      .fun-card:hover::before {
          height: 10px;
      }

      .fun-icon {
          width: 70px;
          height: 70px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 20px;
          font-size: 28px;
          transition: all 0.4s ease;
          position: relative;
          z-index: 2;
      }

      .fun-card:nth-child(1) .fun-icon {
          background-color: rgba(52, 152, 219, 0.15);
          color: #3498db;
      }

      .fun-card:nth-child(2) .fun-icon {
          background-color: rgba(46, 204, 113, 0.15);
          color: #2ecc71;
      }

      .fun-card:nth-child(3) .fun-icon {
          background-color: rgba(155, 89, 182, 0.15);
          color: #9b59b6;
      }

      .fun-card:hover .fun-icon {
          transform: rotate(360deg) scale(1.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .fun-title {
          font-size: 1.3rem;
          font-weight: 600;
          margin-bottom: 15px;
          text-align: center;
          position: relative;
          padding-bottom: 15px;
          color: #333;
      }

      .fun-title::after {
          content: '';
          position: absolute;
          width: 40px;
          height: 3px;
          background: #3498db;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          transition: width 0.3s ease;
      }

      .fun-card:hover .fun-title::after {
          width: 80px;
      }

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

      .fun-list li {
          padding: 8px 0;
          display: flex;
          align-items: center;
          transition: all 0.3s ease;
          border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
      }

      .fun-list li:last-child {
          border-bottom: none;
      }

      .fun-list li:hover {
          transform: translateX(5px);
      }

      .fun-list li i {
          margin-right: 10px;
          font-size: 12px;
          transition: all 0.3s ease;
      }

      .fun-card:hover .fun-list li i {
          transform: scale(1.2);
      }

      /* Projects Section */
      .projects-section {
          padding: 80px 0;
          background-color: #f9f9f9;
      }

      .section-title {
          text-align: center;
          margin-bottom: 50px;
          font-size: 2.5rem;
          color: #333;
          position: relative;
      }

      .section-title::after {
          content: '';
          position: absolute;
          bottom: -15px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 4px;
          background: linear-gradient(90deg, #3498db, #2ecc71);
          border-radius: 2px;
      }

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

      .project-image-container {
          position: relative;
          overflow: hidden;
          height: 220px;
      }

      .project-image {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.8s ease;
      }

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

      .project-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
          display: flex;
          align-items: flex-end;
          opacity: 0;
          transition: opacity 0.4s ease;
      }

      .project-card:hover .project-overlay {
          opacity: 1;
      }

      .project-tags {
          padding: 15px;
          width: 100%;
          display: flex;
          flex-wrap: wrap;
          gap: 8px;
      }

      .project-tag {
          background-color: rgba(52, 152, 219, 0.8);
          color: #fff;
          padding: 4px 10px;
          border-radius: 4px;
          font-size: 0.8rem;
          font-weight: 500;
          transform: translateY(20px);
          opacity: 0;
          transition: all 0.4s ease;
          transition-delay: 0.1s;
      }

      .project-card:hover .project-tag {
          transform: translateY(0);
          opacity: 1;
      }

      .project-card:hover .project-tag:nth-child(2) {
          transition-delay: 0.2s;
      }

      .project-card:hover .project-tag:nth-child(3) {
          transition-delay: 0.3s;
      }

      .project-content {
          padding: 25px;
      }

      .project-title {
          font-size: 1.5rem;
          margin-bottom: 15px;
          color: #333;
          transition: all 0.3s ease;
      }

      .project-card:hover .project-title {
          color: #3498db;
      }

      .project-description {
          color: #666;
          margin-bottom: 20px;
          line-height: 1.6;
      }

      .project-actions {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
      }

      .project-link {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          padding: 8px 18px;
          border-radius: 6px;
          font-weight: 500;
          text-decoration: none;
          transition: all 0.3s ease;
      }

      .primary-btn {
          background-color: #3498db;
          color: white;
      }

      .primary-btn:hover {
          background-color: #2980b9;
          transform: translateY(-3px);
      }

      .secondary-btn {
          background-color: #f1f1f1;
          color: #333;
      }

      .secondary-btn:hover {
          background-color: #e5e5e5;
          transform: translateY(-3px);
      }

      .project-link i {
          transition: transform 0.3s ease;
      }

      .project-link:hover i {
          transform: translateX(5px);
      }

      .secondary-btn:hover i {
          transform: rotate(360deg);
      }

      /* About Section */
      .about-hero {
          background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
          padding: 100px 0;
          text-align: center;
      }

      .about-hero-content h1 {
          font-size: 2rem;
          margin-bottom: 10px;
          color: #2c3e50;
      }

      .about-hero-content h1 span {
          color: #3498db;
      }

      .about-hero-content .tagline {
          font-size: 1.5rem;
          color: #7f8c8d;
          margin-bottom: 15px;
      }

      .about-hero-content .title {
          font-size: 1.2rem;
          color: #34495e;
          margin-bottom: 20px;
      }

      .about-hero-content .one-liner {
          font-size: 1.3rem;
          max-width: 800px;
          margin: 0 auto;
          color: #2c3e50;
      }

      /* Profile section */
      .profile-section {
          padding: 60px 0;
          text-align: center;
      }

      /* About Me section */
      .about-me-section {
          background-color: #f9f9f9;
          padding: 80px 0;
      }

      .about-text {
          max-width: 800px;
          margin: 0 auto;
          font-size: 1.1rem;
          color: #555;
      }

      .about-text p {
          margin-bottom: 15px;
      }

      .about-text strong span {
          color: #3498db;
      }

      /* Make sure animations work for these sections */
      .mission-section,
      .values-section {
          opacity: 1;
          visibility: visible;
      }

      /* Media Queries for Responsiveness */
      @media screen and (max-width: 768px) {

          .about-container,
          .about-container.reverse {
              flex-direction: column;
          }

          .about-content {
              transform: translateY(30px);
              margin-bottom: 40px;
          }

          .about-image {
              transform: translateY(30px);
              margin-top: 0;
          }

          .about-image.animate,
          .about-content.animate {
              transform: translateY(0);
          }

          .timeline-container::before {
              left: 30px;
          }

          .timeline-item::before {
              left: 30px;
          }

          .timeline-content {
              width: calc(100% - 60px);
              margin-left: 60px;
              margin-right: 0;
          }

          .timeline-item:nth-child(even) .timeline-content {
              margin-left: 60px;
              margin-right: 0;
          }

          .timeline-item,
          .timeline-item:nth-child(even) {
              transform: translateX(20px);
          }

          .timeline-item.animate {
              transform: translateX(0);
          }

          .values-container {
              grid-template-columns: 1fr;
          }

          .projects-section {
              padding: 60px 0;
          }

          .projects-container {
              grid-template-columns: 1fr;
          }

          .project-actions {
              flex-direction: column;
          }

          .project-link {
              width: 100%;
              justify-content: center;
          }

          .about-hero-content h1 {
              font-size: 1.5rem;
          }

          .about-hero-content .tagline {
              font-size: 1.2rem;
          }

          .about-hero-content .one-liner {
              font-size: 1.1rem;
          }
      }