/* Base Styles */
        .graduates-database-section {
          padding: 80px 0;
          /* background-color: #fbf5ea; */
          position: relative;
          overflow: hidden;
        }
        
        .section-header {
          text-align: center;
          margin-bottom: 50px;
          padding: 0 15px;
        }
        
        .section-badge {
          display: inline-block;
          background-color: #002777;
          color: white;
          padding: 6px 20px;
          border-radius: 30px;
          font-size: 0.9rem;
          font-weight: 600;
          letter-spacing: 1px;
          margin-bottom: 15px;
          text-transform: uppercase;
        }
        
        .section-title {
          color: #002777;
          font-size: 2.2rem;
          font-weight: 700;
          margin-bottom: 20px;
          position: relative;
          display: inline-block;
        }
        
        .section-title:after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 3px;
          background: #D3993F;
          border-radius: 3px;
        }
        
        .section-description {
          color: #555;
          font-size: 1.1rem;
          max-width: 100%;
          margin: 0 auto;
          line-height: 1.6;
        }
        
        .highlight-text {
          font-weight: 500;
          color: #002777;
          background: rgba(0, 39, 119, 0.05);
          padding: 15px;
          border-radius: 8px;
          border-left: 4px solid #D3993F;
          margin-top: 20px;
        }
        
        /* Features Grid */
        .database-features {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
          margin-bottom: 50px;
        }
        
        .feature-card {
          background: white;
          border-radius: 12px;
          padding: 30px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
          position: relative;
          overflow: hidden;
          border: 1px solid rgba(0, 39, 119, 0.1);
          text-align: center;
        }
        
        .feature-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 39, 119, 0.1);
        }
        
        .feature-icon {
          width: 70px;
          height: 70px;
          background: rgba(0, 39, 119, 0.05);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 20px;
          color: #002777;
          transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
          background: #002777;
          color: white;
          transform: rotate(5deg) scale(1.1);
        }
        
        .feature-title {
          color: #002777;
          font-size: 1.3rem;
          font-weight: 600;
          margin-bottom: 15px;
        }
        
        .feature-text {
          color: #555;
          line-height: 1.6;
          margin-bottom: 0;
        }
        
        /* Action Buttons */
        .action-buttons {
          display: flex;
          justify-content: center;
          gap: 20px;
          flex-wrap: wrap;
          margin-top: 40px;
        }
        
        .btn {
          padding: 12px 25px;
          border-radius: 8px;
          font-weight: 600;
          display: inline-flex;
          align-items: center;
          transition: all 0.3s ease;
          border: none;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .btn svg {
          margin-left: 8px;
          transition: all 0.3s ease;
        }
        
        .btn-primary {
          background: #002777;
          color: white;
        }
        
        .btn-primary:hover {
          background: #001a5a;
          transform: translateY(-3px);
          box-shadow: 0 8px 20px rgba(0, 39, 119, 0.2);
        }
        
        .btn-primary:hover svg {
          transform: translateY(-3px);
        }
        
        .btn-secondary {
          background: #D3993F;
          color: white;
        }
        
        .btn-secondary:hover {
          background: #c08a36;
          transform: translateY(-3px);
          box-shadow: 0 8px 20px rgba(211, 153, 63, 0.2);
        }
        
        .btn-secondary:hover svg {
          transform: scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
          .database-features {
            grid-template-columns: 1fr;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
          }
        }
        
        @media (max-width: 768px) {
          .section-title {
            font-size: 1.8rem;
          }
          
          .feature-card {
            padding: 25px;
          }
          
          .action-buttons {
            flex-direction: column;
            gap: 15px;
          }
          
          .btn {
            width: 100%;
            justify-content: center;
          }
        }
        
        /* Animation */
        [data-aos] {
          transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        [data-aos="fade-up"] {
          transform: translateY(30px);
          opacity: 0;
        }
        
        [data-aos].aos-animate {
          transform: translateY(0);
          opacity: 1;
        }
         p{
          font-size: 17px  !important;
        }