    /* Custom styles for the modern about section */
    .about-section {
        /* background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%); */
    }
    
    .text-gradient-primary {
        background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .bg-soft-primary {
        background-color: rgba(59, 130, 246, 0.1);
    }
    
    .bg-soft-info {
        background-color: rgba(99, 102, 241, 0.1);
    }
    
    .img-mask-gradient {
        position: relative;
        overflow: hidden;
    }
    
    .img-mask-gradient::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(99, 102, 241, 0.1) 100%);
        mix-blend-mode: multiply;
    }
    
    .card-hover {
        transition: all 0.3s ease;
        border-radius: 12px;
    }
    
    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    }
    
    .rotate-45 {
        transform: rotate(45deg);
    }
    
    .animate-blob {
        animation: blob-animate 8s ease-in-out infinite;
    }
    
    @keyframes blob-animate {
        0%, 100% {
            transform: translate(0, 0) scale(1);
        }
        25% {
            transform: translate(20px, -20px) scale(1.05);
        }
        50% {
            transform: translate(0, 20px) scale(0.95);
        }
        75% {
            transform: translate(-20px, -10px) scale(1.02);
        }
    }
.hanging-element {
  animation: swing 2s ease-in-out infinite;
  transform-origin: top center; /* Makes it swing from the top */
}

@keyframes swing {
  0%   { transform: rotate(12deg); -webkit-transform: rotate(12deg); -moz-transform: rotate(12deg); -ms-transform: rotate(12deg); -o-transform: rotate(12deg); }
  50%  { transform: rotate(-12deg); -webkit-transform: rotate(-12deg); -moz-transform: rotate(-12deg); -ms-transform: rotate(-12deg); -o-transform: rotate(-12deg); }
  100% { transform: rotate(12deg); -webkit-transform: rotate(12deg); -moz-transform: rotate(12deg); -ms-transform: rotate(12deg); -o-transform: rotate(12deg); }
}
/* About Section */
.about-section {
  padding: 120px 0;
  background-color: #fff;
  width: 100%;
  position: relative;
}

.about-img img {
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}

.about-text h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 80px;
  color: var(--color-primary);
}

.about-text p {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.about-text p span {
  background: var(--color-accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: #fff;
  font-size: 18px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-right: 10px;
}



.about-section h2 span {
  color: #7a5ef8;
}

.about-section ul li {
  font-weight: 500;
  color: #444;
  line-height: 1.6;
}

.about-section img {
  border-radius: 1.5rem;
  max-width: 100%;
}

.badge.bg-primary {
  background-color: #7a5ef8 !important;
}

    .mission-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9f2ff 100%);
    }
    
    .mission-image-wrapper {
        transition: all 0.3s ease;
    }
    
    .mission-image-wrapper:hover {
        transform: translateY(-5px);
    }
    
    .mission-image-wrapper img {
        transition: all 0.3s ease;
        
    }
    
    .mission-image-wrapper:hover img {
        box-shadow: 0 15px 30px rgba(13, 110, 253, 0.1) !important;
    }
    
    .mission-stats div {
        transition: all 0.3s ease;
        
    }
    
    .mission-stats div:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1) !important;
    }